summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2011-10-26 18:18:34 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2011-10-26 18:18:34 +0000
commit5c4bd11d9172717be3ebb37390e6e55cfa369ed9 (patch)
tree0924921fe3e621365401901276590aad8c0ecfe5 /apps/settings_list.c
parent4ef4830f0bfff810be2962bf3de115981c51d6a2 (diff)
downloadrockbox-5c4bd11d9172717be3ebb37390e6e55cfa369ed9.tar.gz
rockbox-5c4bd11d9172717be3ebb37390e6e55cfa369ed9.zip
Add option to exchange the left and right stereo channels. Patch by Dave Chapman and Martin Sägmüller. Also add manual entry (by Michael Giacomelli). Note that this setting will confuse non-software effect options like channel balance. This should be addressed in a future commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30837 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 521d565f3b..6602ec206a 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -678,11 +678,12 @@ const struct settings_list settings[] = {
678 678
679 CHOICE_SETTING(F_SOUNDSETTING, channel_config, LANG_CHANNEL_CONFIGURATION, 679 CHOICE_SETTING(F_SOUNDSETTING, channel_config, LANG_CHANNEL_CONFIGURATION,
680 0,"channels", 680 0,"channels",
681 "stereo,mono,custom,mono left,mono right,karaoke", 681 "stereo,mono,custom,mono left,mono right,karaoke,swap",
682 sound_set_channels, 6, 682 sound_set_channels, 7,
683 ID2P(LANG_CHANNEL_STEREO), ID2P(LANG_CHANNEL_MONO), 683 ID2P(LANG_CHANNEL_STEREO), ID2P(LANG_CHANNEL_MONO),
684 ID2P(LANG_CHANNEL_CUSTOM), ID2P(LANG_CHANNEL_LEFT), 684 ID2P(LANG_CHANNEL_CUSTOM), ID2P(LANG_CHANNEL_LEFT),
685 ID2P(LANG_CHANNEL_RIGHT), ID2P(LANG_CHANNEL_KARAOKE)), 685 ID2P(LANG_CHANNEL_RIGHT), ID2P(LANG_CHANNEL_KARAOKE),
686 ID2P(LANG_CHANNEL_SWAP)),
686 SOUND_SETTING(F_SOUNDSETTING, stereo_width, LANG_STEREO_WIDTH, 687 SOUND_SETTING(F_SOUNDSETTING, stereo_width, LANG_STEREO_WIDTH,
687 "stereo_width", SOUND_STEREO_WIDTH), 688 "stereo_width", SOUND_STEREO_WIDTH),
688#ifdef AUDIOHW_HAVE_DEPTH_3D 689#ifdef AUDIOHW_HAVE_DEPTH_3D