diff options
author | Michael Sparmann <theseven@rockbox.org> | 2009-11-09 20:01:07 +0000 |
---|---|---|
committer | Michael Sparmann <theseven@rockbox.org> | 2009-11-09 20:01:07 +0000 |
commit | 099df2fb7144bbee4ec97c133acafe8ce8c19524 (patch) | |
tree | 8b746b888751d2a5272e5b39e1aa3203feff4683 /apps/plugins/mpegplayer | |
parent | cc4d92c27058fca4e8f9817e1d06d8c75574d6f4 (diff) |
Make the codecs use more IRAM on S5L870x, as we have plenty of it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23594 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer')
-rw-r--r-- | apps/plugins/mpegplayer/audio_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/audio_thread.c b/apps/plugins/mpegplayer/audio_thread.c index a901b721d8..c9252f5890 100644 --- a/apps/plugins/mpegplayer/audio_thread.c +++ b/apps/plugins/mpegplayer/audio_thread.c @@ -58,7 +58,7 @@ static unsigned char mad_main_data[MAD_BUFFER_MDLEN]; is for Coldfire. */ /* 4608 bytes */ -#ifdef CPU_COLDFIRE +#if defined(CPU_COLDFIRE) || defined(CPU_S5L870X) static mad_fixed_t mad_frame_overlap[2][32][18] IBSS_ATTR; #else static mad_fixed_t mad_frame_overlap[2][32][18]; |