summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-06 12:17:14 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-06 12:17:14 +0000
commit7bade1a24f6fa725148d5c7fb66d267b05b0e333 (patch)
tree33dc1bc925664f90d7dace688a22d6eb99d64c5e /apps/settings.h
parent012c541d80493f04f7b2ce477da8b76ef4b2de11 (diff)
downloadrockbox-7bade1a24f6fa725148d5c7fb66d267b05b0e333.tar.gz
rockbox-7bade1a24f6fa725148d5c7fb66d267b05b0e333.zip
Bass boost removed in favour of some new sound settings: Super bass and five new MDB parameters: strength, harmonics, center, shape and enable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4839 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index baea723e4b..b7b0864b4c 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -71,9 +71,14 @@ struct user_settings
71 int bass; /* bass eq: 0-100 0=off 100=max */ 71 int bass; /* bass eq: 0-100 0=off 100=max */
72 int treble; /* treble eq: 0-100 0=low 100=high */ 72 int treble; /* treble eq: 0-100 0=low 100=high */
73 int loudness; /* loudness eq: 0-100 0=off 100=max */ 73 int loudness; /* loudness eq: 0-100 0=off 100=max */
74 int bass_boost; /* bass boost eq: 0-100 0=off 100=max */
75 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */ 74 int avc; /* auto volume correct: 0=off, 1=20ms, 2=2s 3=4s 4=8s */
76 int channel_config; /* Stereo, Mono, Mono left, Mono right */ 75 int channel_config; /* Stereo, Mono, Mono left, Mono right */
76 int mdb_strength; /* 0-127dB */
77 int mdb_harmonics; /* 0-100% */
78 int mdb_center; /* 20-300Hz */
79 int mdb_shape; /* 50-300Hz */
80 bool mdb_enable; /* true/false */
81 bool superbass; /* true/false */
77 82
78 int rec_quality; /* 0-7 */ 83 int rec_quality; /* 0-7 */
79 int rec_source; /* 0=mic, 1=line, 2=S/PDIF */ 84 int rec_source; /* 0=mic, 1=line, 2=S/PDIF */
@@ -226,6 +231,7 @@ struct opt_items {
226int settings_save(void); 231int settings_save(void);
227void settings_load(int which); 232void settings_load(int which);
228void settings_reset(void); 233void settings_reset(void);
234void sound_settings_apply(void);
229void settings_apply(void); 235void settings_apply(void);
230void settings_apply_pm_range(void); 236void settings_apply_pm_range(void);
231void settings_display(void); 237void settings_display(void);