diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-12-19 17:34:57 -0500 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2013-05-04 13:43:33 -0400 |
| commit | 78a45b47dede5ddf35dfc53e965b486a79177b18 (patch) | |
| tree | edb3ad7c101e600a7cc3be4b40380430cbeb3e55 /lib/rbcodec/dsp/compressor.c | |
| parent | cdb71c707bb434f44368b72f2db3becc37b7a46c (diff) | |
| download | rockbox-78a45b47dede5ddf35dfc53e965b486a79177b18.zip rockbox-78a45b47dede5ddf35dfc53e965b486a79177b18.tar.gz rockbox-78a45b47dede5ddf35dfc53e965b486a79177b18.tar.bz2 rockbox-78a45b47dede5ddf35dfc53e965b486a79177b18.tar.xz | |
Cleanup and simplify latest DSP code incarnation.
Some things can just be a bit simpler in handling the list of stages
and some things, especially format change handling, can be simplified
for each stage implementation. Format changes are sent through the
configure() callback.
Hide some internal details and variables from processing stages and
let the core deal with it.
Do some miscellaneous cleanup and keep things a bit better factored.
Change-Id: I19dd8ce1d0b792ba914d426013088a49a52ecb7e
Diffstat (limited to 'lib/rbcodec/dsp/compressor.c')
| -rw-r--r-- | lib/rbcodec/dsp/compressor.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/rbcodec/dsp/compressor.c b/lib/rbcodec/dsp/compressor.c index 22a60e4..bdcc37b 100644 --- a/lib/rbcodec/dsp/compressor.c +++ b/lib/rbcodec/dsp/compressor.c @@ -386,14 +386,16 @@ static intptr_t compressor_configure(struct dsp_proc_entry *this, case DSP_PROC_INIT: if (value != 0) break; /* Already enabled */ - this->process[0] = compressor_process; + + this->process = compressor_process; + /* Fall-through */ case DSP_RESET: case DSP_FLUSH: release_gain = UNITY; break; } - return 1; + return 0; (void)dsp; } |