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
This commit is contained in:
Thom Johansen 2005-10-10 15:54:36 +00:00
parent c42246f13f
commit 6dfe98e196

View file

@ -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"