1
0
Fork 0
forked from len0rd/rockbox

EQ: - Fine grained EQ configuration

- Reduce the minimum step for EQ 'Gain' and EQ 'Q' values to .1dB
 - Reduce the minimum step for EQ 'Precut' value to .1dB

Change-Id: I20712b3c769f9da4d6ed53c62d6a2a8352b6b269
Reviewed-on: http://gerrit.rockbox.org/414
Reviewed-by: Jonathan Gordon <rockbox@jdgordon.info>
This commit is contained in:
Hayden Pearce 2013-03-05 12:15:27 +13:00 committed by Jonathan Gordon
parent cdf5429ead
commit e4040d930f
2 changed files with 3 additions and 3 deletions

View file

@ -30,9 +30,9 @@
#define EQ_CUTOFF_FAST_STEP 100
#define EQ_GAIN_MIN (-240)
#define EQ_GAIN_MAX 240
#define EQ_GAIN_STEP 5
#define EQ_GAIN_STEP 1
#define EQ_GAIN_FAST_STEP 10
#define EQ_Q_MIN 5
#define EQ_Q_MIN 1
#define EQ_Q_MAX 64
#define EQ_Q_STEP 1
#define EQ_Q_FAST_STEP 10

View file

@ -1497,7 +1497,7 @@ const struct settings_list settings[] = {
"eq enabled", NULL),
INT_SETTING_NOWRAP(F_EQSETTING, eq_precut, LANG_EQUALIZER_PRECUT, 0,
"eq precut", UNIT_DB, 0, 240, 5, eq_precut_format,
"eq precut", UNIT_DB, 0, 240, 1, eq_precut_format,
get_precut_talkid, dsp_set_eq_precut),
/* 0..32768 Hz */