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/settings.h | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'apps/settings.h') diff --git a/apps/settings.h b/apps/settings.h index b312c1e..4d94ca8 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -32,6 +32,7 @@ #include "button.h" #if CONFIG_CODEC == SWCODEC #include "audio.h" +#include "dsp.h" #endif #include "rbpaths.h" @@ -339,13 +340,7 @@ struct user_settings /* EQ */ bool eq_enabled; /* Enable equalizer */ unsigned int eq_precut; /* dB */ - - struct eq_band_setting - { - int cutoff; /* Hz */ - int q; - int gain; /* +/- dB */ - } eq_band_settings[5]; + struct eq_band_setting eq_band_settings[EQ_NUM_BANDS]; /* for each band */ /* Misc. swcodec */ int beep; /* system beep volume when changing tracks etc. */ @@ -772,14 +767,7 @@ struct user_settings #endif #if CONFIG_CODEC == SWCODEC - struct compressor_settings - { - int threshold; - int makeup_gain; - int ratio; - int knee; - int release_time; - } compressor_settings; + struct compressor_settings compressor_settings; #endif int sleeptimer_duration; /* In minutes; 0=off */ -- cgit v1.1