Commit c07d0c4c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

SRC: default to fastest SinC

It is good enough for normal people with only half the CPU usage of
medium quality SinC.
parent 4f292d82
...@@ -50,7 +50,7 @@ vlc_module_begin () ...@@ -50,7 +50,7 @@ vlc_module_begin ()
set_description (N_("Secret Rabbit Code (libsamplerate) resampler") ) set_description (N_("Secret Rabbit Code (libsamplerate) resampler") )
set_category (CAT_AUDIO) set_category (CAT_AUDIO)
set_subcategory (SUBCAT_AUDIO_MISC) set_subcategory (SUBCAT_AUDIO_MISC)
add_integer ("src-converter-type", SRC_SINC_MEDIUM_QUALITY, add_integer ("src-converter-type", SRC_SINC_FASTEST,
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", 50)
......
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