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:
parent
cdf5429ead
commit
e4040d930f
2 changed files with 3 additions and 3 deletions
|
@ -30,9 +30,9 @@
|
||||||
#define EQ_CUTOFF_FAST_STEP 100
|
#define EQ_CUTOFF_FAST_STEP 100
|
||||||
#define EQ_GAIN_MIN (-240)
|
#define EQ_GAIN_MIN (-240)
|
||||||
#define EQ_GAIN_MAX 240
|
#define EQ_GAIN_MAX 240
|
||||||
#define EQ_GAIN_STEP 5
|
#define EQ_GAIN_STEP 1
|
||||||
#define EQ_GAIN_FAST_STEP 10
|
#define EQ_GAIN_FAST_STEP 10
|
||||||
#define EQ_Q_MIN 5
|
#define EQ_Q_MIN 1
|
||||||
#define EQ_Q_MAX 64
|
#define EQ_Q_MAX 64
|
||||||
#define EQ_Q_STEP 1
|
#define EQ_Q_STEP 1
|
||||||
#define EQ_Q_FAST_STEP 10
|
#define EQ_Q_FAST_STEP 10
|
||||||
|
|
|
@ -1497,7 +1497,7 @@ const struct settings_list settings[] = {
|
||||||
"eq enabled", NULL),
|
"eq enabled", NULL),
|
||||||
|
|
||||||
INT_SETTING_NOWRAP(F_EQSETTING, eq_precut, LANG_EQUALIZER_PRECUT, 0,
|
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),
|
get_precut_talkid, dsp_set_eq_precut),
|
||||||
|
|
||||||
/* 0..32768 Hz */
|
/* 0..32768 Hz */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue