From 27a3a08018581aab3e53b92f0ce09e680c969373 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Tue, 24 Jul 2012 17:42:56 +0300 Subject: [PATCH] speex: speex resampler is broken, drop priority to zero The library introduces noise in unclear circumstances. There does not seem to be any problem on VLC side though. I do not have time and expertise to troubleshoot this. --- modules/audio_filter/resampler/speex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/audio_filter/resampler/speex.c b/modules/audio_filter/resampler/speex.c index 3948afb03b..7638878fe0 100644 --- a/modules/audio_filter/resampler/speex.c +++ b/modules/audio_filter/resampler/speex.c @@ -44,11 +44,11 @@ vlc_module_begin () add_integer ("speex-resampler-quality", 4, QUALITY_TEXT, QUALITY_LONGTEXT, true) change_integer_range (0, 10) - set_capability ("audio filter", 60) + set_capability ("audio filter", 0) set_callbacks (Open, Close) add_submodule () - set_capability ("audio resampler", 60) + set_capability ("audio resampler", 0) set_callbacks (Open, Close) vlc_module_end () -- 2.39.5