diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-04-25 04:10:50 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-04-25 04:10:50 +0000 |
| commit | 738824ccdd327da7d9d13fe9d2a48e74c40ad62f (patch) | |
| tree | 37b93479fba8413ad5d9fc9a815eb5dfcaa98759 /apps/codecs | |
| parent | f5884fdeb6252c77973d0f08ee952bb981f6678c (diff) | |
| download | rockbox-738824ccdd327da7d9d13fe9d2a48e74c40ad62f.zip rockbox-738824ccdd327da7d9d13fe9d2a48e74c40ad62f.tar.gz rockbox-738824ccdd327da7d9d13fe9d2a48e74c40ad62f.tar.bz2 rockbox-738824ccdd327da7d9d13fe9d2a48e74c40ad62f.tar.xz | |
Might as well enable SPC so that all codecs build on the Clip. Not yet real time.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20782 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/SOURCES | 3 | ||||
| -rw-r--r-- | apps/codecs/libspc/spc_codec.h | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/apps/codecs/SOURCES b/apps/codecs/SOURCES index 5dc7f31..4e4f994 100644 --- a/apps/codecs/SOURCES +++ b/apps/codecs/SOURCES @@ -16,10 +16,7 @@ ape.c nsf.c asap.c aac.c - -#if MEMORYSIZE > 2 spc.c -#endif mod.c shorten.c aiff.c diff --git a/apps/codecs/libspc/spc_codec.h b/apps/codecs/libspc/spc_codec.h index a6dcd0a..923645b 100644 --- a/apps/codecs/libspc/spc_codec.h +++ b/apps/codecs/libspc/spc_codec.h @@ -47,7 +47,7 @@ /* TGB is the only target fast enough for gaussian and realtime BRR decode */ /* echo is almost fast enough but not quite */ #if defined(TOSHIBA_GIGABEAT_F) || defined(TOSHIBA_GIGABEAT_S) ||\ - defined(SIMULATOR) + defined(SIMULATOR) || MEMORYSIZE <= 2 /* Don't cache BRR waves */ #define SPC_BRRCACHE 0 |