diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2012-04-29 17:31:30 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2012-04-29 17:31:30 -0400 |
| commit | 56f17c4164bf4e8a7b6996b0a5c2670d0917de25 (patch) | |
| tree | 51b7312cab17300ef580b74953825a5ff2d22e8e /lib/rbcodec/dsp/crossfeed.c | |
| parent | 23b5f3e5e1ce19d6d872afe737e8924488d7d58b (diff) | |
| download | rockbox-56f17c4164bf4e8a7b6996b0a5c2670d0917de25.zip rockbox-56f17c4164bf4e8a7b6996b0a5c2670d0917de25.tar.gz rockbox-56f17c4164bf4e8a7b6996b0a5c2670d0917de25.tar.bz2 rockbox-56f17c4164bf4e8a7b6996b0a5c2670d0917de25.tar.xz | |
Make rbcodec/dsp includes more specific.
Change-Id: Idb6af40df26f5b8499a40e8b98602261ef227044
Diffstat (limited to 'lib/rbcodec/dsp/crossfeed.c')
| -rw-r--r-- | lib/rbcodec/dsp/crossfeed.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/rbcodec/dsp/crossfeed.c b/lib/rbcodec/dsp/crossfeed.c index ecb5564..344adda 100644 --- a/lib/rbcodec/dsp/crossfeed.c +++ b/lib/rbcodec/dsp/crossfeed.c @@ -20,14 +20,15 @@ * ****************************************************************************/ #include "config.h" -#include "system.h" -#include "dsp.h" -#include "dsp_filter.h" +#include <stdbool.h> +#include <sys/types.h> #include "fixedpoint.h" #include "fracmul.h" #include "replaygain.h" -#include <string.h> #include "dsp_proc_entry.h" +#include "dsp_filter.h" +#include "crossfeed.h" +#include <string.h> /* Implemented here or in target assembly code */ void crossfeed_process(struct dsp_proc_entry *this, struct dsp_buffer **buf_p); |