mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-06 21:25:03 -05:00
Eros Q Native: Add Stereo SW behavior setting
Hopefully this should cover our bases so we can change the behavior of the stereo switch to keep line out working when they change the hardware on us! Change-Id: Ic36bcb3778d5681a5f3f158c689df9c1420c1d7e
This commit is contained in:
parent
d0758c5330
commit
5f377c2613
6 changed files with 94 additions and 1 deletions
|
|
@ -135,6 +135,10 @@ MENUITEM_SETTING(depth_3d, &global_settings.depth_3d, NULL);
|
|||
MENUITEM_SETTING(roll_off, &global_settings.roll_off, NULL);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_EROS_QN_CODEC
|
||||
MENUITEM_SETTING(stereosw_mode, &global_settings.stereosw_mode,NULL);
|
||||
#endif
|
||||
|
||||
#ifdef AUDIOHW_HAVE_POWER_MODE
|
||||
MENUITEM_SETTING(power_mode, &global_settings.power_mode, NULL);
|
||||
#endif
|
||||
|
|
@ -253,6 +257,9 @@ MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio,
|
|||
#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF
|
||||
,&roll_off
|
||||
#endif
|
||||
#ifdef HAVE_EROS_QN_CODEC
|
||||
,&stereosw_mode
|
||||
#endif
|
||||
#ifdef AUDIOHW_HAVE_POWER_MODE
|
||||
,&power_mode
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue