diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-07 21:02:55 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-07 21:02:55 +0000 |
| commit | fb70ec6ff927684843944c46a0e7869e799367e9 (patch) | |
| tree | a5b429799e96c9193710c64eda0ad36aaecb8b14 /apps/codecs | |
| parent | 40c266532bcd6ebba12c577a1e80c218936f4555 (diff) | |
| download | rockbox-fb70ec6ff927684843944c46a0e7869e799367e9.zip rockbox-fb70ec6ff927684843944c46a0e7869e799367e9.tar.gz rockbox-fb70ec6ff927684843944c46a0e7869e799367e9.tar.bz2 rockbox-fb70ec6ff927684843944c46a0e7869e799367e9.tar.xz | |
Use larger IRAM for M5/X5 in vorbis.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25061 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libtremor/config-tremor.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/apps/codecs/libtremor/config-tremor.h b/apps/codecs/libtremor/config-tremor.h index eb9429e..8a68ce3 100644 --- a/apps/codecs/libtremor/config-tremor.h +++ b/apps/codecs/libtremor/config-tremor.h @@ -33,15 +33,8 @@ #define ICODE_ATTR_TREMOR_NOT_MDCT ICODE_ATTR #endif -/* Define CPU of large IRAM (MCF5250) */ -#if (CONFIG_CPU == MCF5250) -/* PCM_BUFFER : 32768 Byte (4096*2*4) * - * WINDOW_LOOKUP : 4608 Byte (128*4 + 1024*4) * - * TOTAL : 37376 */ -#define IRAM_IBSS_SIZE 37376 - -/* Define CPU of large IRAM (PP5022/5024) */ -#elif (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || defined(CPU_S5L870X) +/* Define CPU of large IRAM (PP5022/5024, MCF5250) */ +#if (CONFIG_CPU == PP5022) || (CONFIG_CPU == PP5024) || defined(CPU_S5L870X) || (CONFIG_CPU == MCF5250) /* PCM_BUFFER : 32768 byte (4096*2*4 or 2048*4*4) * * WINDOW_LOOKUP : 9216 Byte (256*4 + 2048*4) * * TOTAL : 41984 */ |