summaryrefslogtreecommitdiff
path: root/apps/codecs/libmusepack/mpcdec.h
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-07 21:38:42 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-03-07 21:38:42 +0000
commit4ad89fdf6d8b8f2063541ff6753565982330110b (patch)
treef8e89d765cd0487c7e88a414b70ebb2594855463 /apps/codecs/libmusepack/mpcdec.h
parent0376208a484437cd3690aa3661bb84955c4013b0 (diff)
downloadrockbox-4ad89fdf6d8b8f2063541ff6753565982330110b.tar.gz
rockbox-4ad89fdf6d8b8f2063541ff6753565982330110b.zip
Use more IRAM for musepack on S5L870X CPUs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25064 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmusepack/mpcdec.h')
-rwxr-xr-xapps/codecs/libmusepack/mpcdec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmusepack/mpcdec.h b/apps/codecs/libmusepack/mpcdec.h
index a359951745..97c0f39acb 100755
--- a/apps/codecs/libmusepack/mpcdec.h
+++ b/apps/codecs/libmusepack/mpcdec.h
@@ -48,7 +48,7 @@ extern "C" {
48#endif 48#endif
49 49
50#ifndef IBSS_ATTR_MPC_LARGE_IRAM 50#ifndef IBSS_ATTR_MPC_LARGE_IRAM
51#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || (CONFIG_CPU == MCF5250) 51#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || (CONFIG_CPU == MCF5250) || defined(CPU_S5L870X)
52/* PP5022/24 and MCF5250 have 128KB of IRAM */ 52/* PP5022/24 and MCF5250 have 128KB of IRAM */
53#define IBSS_ATTR_MPC_LARGE_IRAM IBSS_ATTR 53#define IBSS_ATTR_MPC_LARGE_IRAM IBSS_ATTR
54#else 54#else
@@ -68,7 +68,7 @@ extern "C" {
68#endif 68#endif
69 69
70#ifndef ICONST_ATTR_MPC_LARGE_IRAM 70#ifndef ICONST_ATTR_MPC_LARGE_IRAM
71#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || (CONFIG_CPU == MCF5250) 71#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || (CONFIG_CPU == MCF5250) || defined(CPU_S5L870X)
72/* PP5022/24 and MCF5250 have 128KB of IRAM */ 72/* PP5022/24 and MCF5250 have 128KB of IRAM */
73#define ICONST_ATTR_MPC_LARGE_IRAM ICONST_ATTR 73#define ICONST_ATTR_MPC_LARGE_IRAM ICONST_ATTR
74#else 74#else