summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h45
1 files changed, 23 insertions, 22 deletions
diff --git a/apps/settings.h b/apps/settings.h
index fb8e11ffde..3616434642 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -432,34 +432,35 @@ struct user_settings
432 432
433#if CONFIG_CODEC == SWCODEC 433#if CONFIG_CODEC == SWCODEC
434 bool eq_enabled; /* Enable equalizer */ 434 bool eq_enabled; /* Enable equalizer */
435 435 unsigned int eq_precut; /* dB */
436
436 /* Order is important here, must be cutoff, q, then gain for each band. 437 /* Order is important here, must be cutoff, q, then gain for each band.
437 See dsp_eq_update_data in dsp.c for why. */ 438 See dsp_eq_update_data in dsp.c for why. */
438 439
439 /* Band 0 settings */ 440 /* Band 0 settings */
440 int eq_band0_cutoff; /* Hz */ 441 int eq_band0_cutoff; /* Hz */
441 int eq_band0_q; 442 int eq_band0_q;
442 int eq_band0_gain; /* +/- dB */ 443 int eq_band0_gain; /* +/- dB */
443 444
444 /* Band 1 settings */ 445 /* Band 1 settings */
445 int eq_band1_cutoff; /* Hz */ 446 int eq_band1_cutoff; /* Hz */
446 int eq_band1_q; 447 int eq_band1_q;
447 int eq_band1_gain; /* +/- dB */ 448 int eq_band1_gain; /* +/- dB */
448 449
449 /* Band 2 settings */ 450 /* Band 2 settings */
450 int eq_band2_cutoff; /* Hz */ 451 int eq_band2_cutoff; /* Hz */
451 int eq_band2_q; 452 int eq_band2_q;
452 int eq_band2_gain; /* +/- dB */ 453 int eq_band2_gain; /* +/- dB */
453 454
454 /* Band 3 settings */ 455 /* Band 3 settings */
455 int eq_band3_cutoff; /* Hz */ 456 int eq_band3_cutoff; /* Hz */
456 int eq_band3_q; 457 int eq_band3_q;
457 int eq_band3_gain; /* +/- dB */ 458 int eq_band3_gain; /* +/- dB */
458 459
459 /* Band 4 settings */ 460 /* Band 4 settings */
460 int eq_band4_cutoff; /* Hz */ 461 int eq_band4_cutoff; /* Hz */
461 int eq_band4_q; 462 int eq_band4_q;
462 int eq_band4_gain; /* +/- dB */ 463 int eq_band4_gain; /* +/- dB */
463#endif 464#endif
464 465
465#ifdef HAVE_LCD_COLOR 466#ifdef HAVE_LCD_COLOR
@@ -472,7 +473,7 @@ struct user_settings
472 int bg_color; /* background color native format */ 473 int bg_color; /* background color native format */
473 int fg_color; /* foreground color native format */ 474 int fg_color; /* foreground color native format */
474#endif 475#endif
475 bool party_mode; /* party mode - unstoppable music */ 476 bool party_mode; /* party mode - unstoppable music */
476 477
477#ifdef CONFIG_BACKLIGHT 478#ifdef CONFIG_BACKLIGHT
478 bool bl_filter_first_keypress; /* filter first keypress when dark? */ 479 bool bl_filter_first_keypress; /* filter first keypress when dark? */