1
0
Fork 0
forked from len0rd/rockbox

rbcodec refactoring: dsp_set_eq_coefs

dsp_set_eq_coefs now has parameters for the band settings, so it doesn't
need to access global_settings.

Change-Id: I29ac19fc353b15a79cb25f0e45132aef0881e4c9
Reviewed-on: http://gerrit.rockbox.org/138
Reviewed-by: Nils Wallménius <nils@rockbox.org>
This commit is contained in:
Sean Bartell 2011-08-21 17:18:09 -04:00 committed by Nils Wallménius
parent 79a667d3e2
commit a6dea9e13d
4 changed files with 15 additions and 13 deletions

View file

@ -988,8 +988,11 @@ void settings_apply(bool read_disk)
/* Configure software equalizer, hardware eq is handled in audio_init() */
dsp_set_eq(global_settings.eq_enabled);
dsp_set_eq_precut(global_settings.eq_precut);
for(int i = 0; i < 5; i++) {
dsp_set_eq_coefs(i);
dsp_set_eq_coefs(i, global_settings.eq_band_settings[i].cutoff,
global_settings.eq_band_settings[i].q,
global_settings.eq_band_settings[i].gain);
}
dsp_dither_enable(global_settings.dithering_enabled);