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 /apps/plugin.h | |
| 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 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 3820c7e..588a012 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -75,7 +75,8 @@ void* plugin_get_buffer(size_t *buffer_size); #if (CONFIG_CODEC == SWCODEC) #include "pcm_mixer.h" #include "dsp-util.h" -#include "dsp.h" +#include "dsp_core.h" +#include "dsp_proc_settings.h" #include "codecs.h" #include "playback.h" #include "codec_thread.h" |