summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-10-10 15:54:36 +0000
committerThom Johansen <thomj@rockbox.org>2005-10-10 15:54:36 +0000
commit6dfe98e196d8f81c19fc6999354b4f07de3aea8e (patch)
tree326f48ddca481d3ce597129aaa9d11a6c890c04f /apps
parentc42246f13fd465c3a4950d74f039c252c3975f8e (diff)
downloadrockbox-6dfe98e196d8f81c19fc6999354b4f07de3aea8e.zip
rockbox-6dfe98e196d8f81c19fc6999354b4f07de3aea8e.tar.gz
rockbox-6dfe98e196d8f81c19fc6999354b4f07de3aea8e.tar.bz2
rockbox-6dfe98e196d8f81c19fc6999354b4f07de3aea8e.tar.xz
Fixed an #if that would never trigger. Added inclusion of dsp.h and playback.h, since lots of codecs include these when they really shouldn't have to.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7605 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/codecs.h b/apps/codecs.h
index d7242a8..6b0365e 100644
--- a/apps/codecs.h
+++ b/apps/codecs.h
@@ -43,8 +43,10 @@
#include "mpeg.h"
#include "audio.h"
#include "mp3_playback.h"
-#if (HWCODEC == SWCODEC)
+#if (CONFIG_CODEC == SWCODEC)
+#include "dsp.h"
#include "pcm_playback.h"
+#include "playback.h"
#endif
#include "settings.h"
#include "thread.h"