mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
xduoox3ii: Add "Super Slow" filter roll-off
I'm not happy with the proliferation of filter-roll-off options but I don't have a less ugly solution. Change-Id: I740fca006fa0c3443a467acfea55b6574d48346b
This commit is contained in:
parent
ec31a2b4ad
commit
cd17decd5a
4 changed files with 26 additions and 2 deletions
|
|
@ -858,6 +858,9 @@ const struct settings_list settings[] = {
|
|||
#elif defined(AUDIOHW_HAVE_SHORT2_ROLL_OFF)
|
||||
"roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_roll_off,
|
||||
4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW)),
|
||||
#elif defined(AUDIOHW_HAVE_SS_ROLL_OFF)
|
||||
"roll_off", "sharp,slow,short sharp,short slow,super slow", sound_set_filter_roll_off,
|
||||
5, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW), ID2P(LANG_FILTER_SUPER_SLOW)),
|
||||
#elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF)
|
||||
"roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off,
|
||||
4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue