From c9bcbe202d010234f76d1046880a790fe2c3a067 Mon Sep 17 00:00:00 2001 From: Michael Sevakis Date: Tue, 27 Mar 2012 19:52:15 -0400 Subject: Fundamentally rewrite much of the audio DSP. Creates a standard buffer passing, local data passing and messaging system for processing stages. Stages can be moved to their own source files to reduce clutter and ease assimilation of new ones. dsp.c becomes dsp_core.c which supports an engine and framework for effects. Formats and change notifications are passed along with the buffer so that they arrive at the correct time at each stage in the chain regardless of the internal delays of a particular one. Removes restrictions on the number of samples that can be processed at a time and it pays attention to destination buffer size restrictions without having to limit input count, which also allows pcmbuf to remain fuller and safely set its own buffer limits as it sees fit. There is no longer a need to query input/output counts given a certain number of input samples; just give it the sizes of the source and destination buffers. Works in harmony with stages that are not deterministic in terms of sample input/output ratio (like both resamplers but most notably the timestretch). As a result it fixes quirks with timestretch hanging up with certain settings and it now operates properly throughout its full settings range. Change-Id: Ib206ec78f6f6c79259c5af9009fe021d68be9734 Reviewed-on: http://gerrit.rockbox.org/200 Reviewed-by: Michael Sevakis Tested-by: Michael Sevakis --- apps/menus/eq_menu.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'apps/menus/eq_menu.c') diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c index 2cfb80f76a..60b2687050 100644 --- a/apps/menus/eq_menu.c +++ b/apps/menus/eq_menu.c @@ -70,13 +70,11 @@ const char* eq_precut_format(char* buffer, size_t buffer_size, int value, const */ static void eq_apply(void) { - dsp_set_eq(global_settings.eq_enabled); + dsp_eq_enable(global_settings.eq_enabled); dsp_set_eq_precut(global_settings.eq_precut); /* Update all bands */ - for(int i = 0; i < 5; 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); + for(int i = 0; i < EQ_NUM_BANDS; i++) { + dsp_set_eq_coefs(i, &global_settings.eq_band_settings[i]); } } @@ -580,9 +578,7 @@ bool eq_menu_graphical(void) /* Update the filter if the user changed something */ if (has_changed) { dsp_set_eq_coefs(current_band, - global_settings.eq_band_settings[current_band].cutoff, - global_settings.eq_band_settings[current_band].q, - global_settings.eq_band_settings[current_band].gain); + &global_settings.eq_band_settings[current_band]); has_changed = false; } } -- cgit v1.2.3