summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-01-19 10:05:01 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-01-19 10:05:01 +0000
commitd1ff23779821dc18f11256d51c397995496aa51c (patch)
treefde6913e53472d2d7d3989cc055b517560a3f84f
parentc04f1a23c79a4d09b4c04c149f0c5b7da9939254 (diff)
downloadrockbox-d1ff23779821dc18f11256d51c397995496aa51c.tar.gz
rockbox-d1ff23779821dc18f11256d51c397995496aa51c.zip
SPC Codec: AS3525 targets should be fast enough for realtime BRR decode and echo.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29089 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libspc/spc_codec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libspc/spc_codec.h b/apps/codecs/libspc/spc_codec.h
index b3a445c596..f4f69dd758 100644
--- a/apps/codecs/libspc/spc_codec.h
+++ b/apps/codecs/libspc/spc_codec.h
@@ -48,9 +48,9 @@
48#define SPC_DUAL_CORE 0 48#define SPC_DUAL_CORE 0
49#endif 49#endif
50 50
51/* TGB is the only target fast enough for gaussian and realtime BRR decode */ 51/* Only some targets are fast enough for gaussian and realtime BRR decode */
52/* echo is almost fast enough but not quite */ 52#if CONFIG_CPU == S3C2440 || CONFIG_CPU == IMX31L || \
53#if defined(TOSHIBA_GIGABEAT_F) || defined(TOSHIBA_GIGABEAT_S) ||\ 53 CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 || \
54 (CONFIG_PLATFORM & PLATFORM_HOSTED) || MEMORYSIZE <= 2 54 (CONFIG_PLATFORM & PLATFORM_HOSTED) || MEMORYSIZE <= 2
55 /* Don't cache BRR waves */ 55 /* Don't cache BRR waves */
56 #define SPC_BRRCACHE 0 56 #define SPC_BRRCACHE 0