diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-05-15 16:08:50 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-05-15 16:08:50 +0000 |
| commit | 46507d29b4bc0f4fe491aadae8d3a474be7cec39 (patch) | |
| tree | 7a467903a805e13b32217c119260f75ceb69b0fa /apps/codecs/spc.c | |
| parent | 41723bc14b41498206afc6693c6c8e5b1b0c77de (diff) | |
| download | rockbox-46507d29b4bc0f4fe491aadae8d3a474be7cec39.zip rockbox-46507d29b4bc0f4fe491aadae8d3a474be7cec39.tar.gz rockbox-46507d29b4bc0f4fe491aadae8d3a474be7cec39.tar.bz2 rockbox-46507d29b4bc0f4fe491aadae8d3a474be7cec39.tar.xz | |
FS#12113: Optimize IRAM configuration for SPC. Performance increases by 5-6% on PP5022, PP5024 and S5L870x. No change of performance on Coldfire, PP5002 and PP5020.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29887 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/spc.c')
| -rw-r--r-- | apps/codecs/spc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/spc.c b/apps/codecs/spc.c index 1b49761..80c28ab 100644 --- a/apps/codecs/spc.c +++ b/apps/codecs/spc.c @@ -190,7 +190,7 @@ static int LoadID666(unsigned char *buf) { /**************** Codec ****************/ enum {SAMPLE_RATE = 32000}; -static struct Spc_Emu spc_emu IDATA_ATTR CACHEALIGN_ATTR; +static struct Spc_Emu spc_emu IBSS_ATTR_SPC CACHEALIGN_ATTR; #if SPC_DUAL_CORE /** Implementations for pipelined dual-core operation **/ |