[vlc-commits] Disable bandlimited resampler for the time being

Rémi Denis-Courmont git at videolan.org
Sat Mar 5 09:21:30 CET 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Mar  5 10:13:59 2011 +0200| [9c74061333bd152a1467e49ed33b889c94410da9] | committer: Rémi Denis-Courmont

Disable bandlimited resampler for the time being

It is known to crash due to invalid buffer handling. On Linux, I get
memory accesses before the start of the audio buffer. It also crashes
on Windows. Until someone cares to fix it, and I think it really never
worked correctly, lets use the "ugly" resampler, which is not too ugly.

This should fix #3631, #4366, #4491 and possibly others.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9c74061333bd152a1467e49ed33b889c94410da9
---

 modules/audio_filter/Modules.am |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/modules/audio_filter/Modules.am b/modules/audio_filter/Modules.am
index 1239681..4dc2602 100644
--- a/modules/audio_filter/Modules.am
+++ b/modules/audio_filter/Modules.am
@@ -58,5 +58,6 @@ SOURCES_bandlimited_resampler = \
 SOURCES_ugly_resampler = resampler/ugly.c
 
 libvlc_LTLIBRARIES += \
-	libbandlimited_resampler_plugin.la \
 	libugly_resampler_plugin.la
+EXTRA_LTLIBRARIES += \
+	libbandlimited_resampler_plugin.la



More information about the vlc-commits mailing list