Commit 5c261b04 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Invert speex_dsp and src score capabilities

This is probably temporary, since SRC is more computationly intensive than speex_dsp
But this close #5781
parent 8d9fe141
...@@ -44,7 +44,7 @@ vlc_module_begin () ...@@ -44,7 +44,7 @@ vlc_module_begin ()
add_integer ("speex-resampler-quality", 4, add_integer ("speex-resampler-quality", 4,
QUALITY_TEXT, QUALITY_LONGTEXT, true) QUALITY_TEXT, QUALITY_LONGTEXT, true)
change_integer_range (0, 10) change_integer_range (0, 10)
set_capability ("audio filter", 60) set_capability ("audio filter", 50)
set_callbacks (Open, Close) set_callbacks (Open, Close)
vlc_module_end () vlc_module_end ()
......
...@@ -53,7 +53,7 @@ vlc_module_begin () ...@@ -53,7 +53,7 @@ vlc_module_begin ()
add_integer ("src-converter-type", SRC_SINC_MEDIUM_QUALITY, add_integer ("src-converter-type", SRC_SINC_MEDIUM_QUALITY,
SRC_CONV_TYPE_TEXT, SRC_CONV_TYPE_LONGTEXT, true) SRC_CONV_TYPE_TEXT, SRC_CONV_TYPE_LONGTEXT, true)
change_integer_list (conv_type_values, conv_type_texts) change_integer_list (conv_type_values, conv_type_texts)
set_capability ("audio filter", 50) set_capability ("audio filter", 60)
set_callbacks (Open, Close) set_callbacks (Open, Close)
vlc_module_end () vlc_module_end ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment