summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-05-03 16:11:39 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-05-03 16:11:39 +0000
commit8a04f6203144b46909020d4ec5f91d680a2b88fd (patch)
tree142f2648810f5c2d9ac41620c8afeb0a177d3e98
parent8f0a1b3e6cd466b8016e79ee49fc342986a787ad (diff)
downloadrockbox-8a04f6203144b46909020d4ec5f91d680a2b88fd.tar.gz
rockbox-8a04f6203144b46909020d4ec5f91d680a2b88fd.zip
SPC Codec: I'm pretty sure Gigabeat S can do realtime BRR decode and echo. :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17330 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/spc/spc_codec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/spc/spc_codec.h b/apps/codecs/spc/spc_codec.h
index f9127ef778..39d8ef5913 100644
--- a/apps/codecs/spc/spc_codec.h
+++ b/apps/codecs/spc/spc_codec.h
@@ -42,7 +42,8 @@
42 42
43/* TGB is the only target fast enough for gaussian and realtime BRR decode */ 43/* TGB is the only target fast enough for gaussian and realtime BRR decode */
44/* echo is almost fast enough but not quite */ 44/* echo is almost fast enough but not quite */
45#if defined(TOSHIBA_GIGABEAT_F) || defined(SIMULATOR) 45#if defined(TOSHIBA_GIGABEAT_F) || defined(TOSHIBA_GIGABEAT_S) ||\
46 defined(SIMULATOR)
46 /* Don't cache BRR waves */ 47 /* Don't cache BRR waves */
47 #define SPC_BRRCACHE 0 48 #define SPC_BRRCACHE 0
48 49