summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-06-28 19:21:38 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-06-28 19:21:38 +0000
commitb50b38ae589c6549ef2925dd9eac6fe1702e7440 (patch)
treeafc90197ec6b7b90abbe69ebce2bddd9f12ffd2f
parenta06f651c3e5f52820e5c7233fa06ef21f793c812 (diff)
downloadrockbox-b50b38ae589c6549ef2925dd9eac6fe1702e7440.tar.gz
rockbox-b50b38ae589c6549ef2925dd9eac6fe1702e7440.zip
Forgot that the X5/M5 use a 64/64KB IRAM split, so they can't use the previous optimization.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17854 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/wmadec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwma/wmadec.h b/apps/codecs/libwma/wmadec.h
index 30ba35b533..c65dd75acf 100644
--- a/apps/codecs/libwma/wmadec.h
+++ b/apps/codecs/libwma/wmadec.h
@@ -56,8 +56,8 @@
56 56
57/*define IRAM for targets with 48k/80k IRAM split*/ 57/*define IRAM for targets with 48k/80k IRAM split*/
58#ifndef IBSS_ATTR_WMA_LARGE_IRAM 58#ifndef IBSS_ATTR_WMA_LARGE_IRAM
59#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || (CONFIG_CPU == MCF5250) 59#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024)
60/* PP5022/24 and MCF5250 have 128KB of IRAM, with 80KB allocated for codecs */ 60/* PP5022/24 and MCF5250 have 128KB of IRAM, but only PP5022+ have 80KB allocated for codecs */
61#define IBSS_ATTR_WMA_LARGE_IRAM IBSS_ATTR 61#define IBSS_ATTR_WMA_LARGE_IRAM IBSS_ATTR
62#else 62#else
63/* other PP's and MCF5249 have 96KB of IRAM */ 63/* other PP's and MCF5249 have 96KB of IRAM */