summaryrefslogtreecommitdiff
path: root/lib/rbcodec/SOURCES
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2012-03-27 19:52:15 -0400
committerMichael Sevakis <jethead71@rockbox.org>2012-04-29 10:00:56 +0200
commitc9bcbe202d010234f76d1046880a790fe2c3a067 (patch)
tree2f15438664ad1b196d6ed8b78065cd050d351956 /lib/rbcodec/SOURCES
parentc9c13497736d8be077663f4458948f7bd526841b (diff)
downloadrockbox-c9bcbe202d010234f76d1046880a790fe2c3a067.tar.gz
rockbox-c9bcbe202d010234f76d1046880a790fe2c3a067.zip
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 <jethead71@rockbox.org> Tested-by: Michael Sevakis <jethead71@rockbox.org>
Diffstat (limited to 'lib/rbcodec/SOURCES')
-rw-r--r--lib/rbcodec/SOURCES21
1 files changed, 15 insertions, 6 deletions
diff --git a/lib/rbcodec/SOURCES b/lib/rbcodec/SOURCES
index 3ac2660a38..c293f3c028 100644
--- a/lib/rbcodec/SOURCES
+++ b/lib/rbcodec/SOURCES
@@ -3,22 +3,31 @@ metadata/id3tags.c
3metadata/mp3.c 3metadata/mp3.c
4metadata/mp3data.c 4metadata/mp3data.c
5#if CONFIG_CODEC == SWCODEC 5#if CONFIG_CODEC == SWCODEC
6dsp/channel_mode.c
6dsp/compressor.c 7dsp/compressor.c
7dsp/dsp.c 8dsp/crossfeed.c
9dsp/dsp_core.c
10dsp/dsp_filter.c
11dsp/dsp_misc.c
12dsp/dsp_sample_input.c
13dsp/dsp_sample_output.c
8dsp/eq.c 14dsp/eq.c
15dsp/lin_resample.c
16dsp/pga.c
17# ifdef HAVE_PITCHSCREEN
18dsp/tdspeed.c
19# endif
20# ifdef HAVE_SW_TONE_CONTROLS
21dsp/tone_controls.c
22# endif
9# if defined(CPU_COLDFIRE) 23# if defined(CPU_COLDFIRE)
10dsp/dsp_cf.S 24dsp/dsp_cf.S
11dsp/eq_cf.S
12# elif defined(CPU_ARM) 25# elif defined(CPU_ARM)
13dsp/dsp_arm.S 26dsp/dsp_arm.S
14dsp/eq_arm.S
15# if ARM_ARCH >= 6 27# if ARM_ARCH >= 6
16dsp/dsp_arm_v6.S 28dsp/dsp_arm_v6.S
17# endif 29# endif
18# endif 30# endif
19# ifdef HAVE_PITCHSCREEN
20dsp/tdspeed.c
21# endif
22metadata/replaygain.c 31metadata/replaygain.c
23metadata/metadata_common.c 32metadata/metadata_common.c
24metadata/a52.c 33metadata/a52.c