diff options
| author | Thom Johansen <thomj@rockbox.org> | 2005-09-10 10:14:35 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2005-09-10 10:14:35 +0000 |
| commit | 1996dca15a495c09986cefc02086e03a53244f3a (patch) | |
| tree | e66309fa8bfa0969af9050aac5041eafecec085a | |
| parent | acabd28efc37d6af3e695129d4d1719a7a3f6eb6 (diff) | |
| download | rockbox-1996dca15a495c09986cefc02086e03a53244f3a.zip rockbox-1996dca15a495c09986cefc02086e03a53244f3a.tar.gz rockbox-1996dca15a495c09986cefc02086e03a53244f3a.tar.bz2 rockbox-1996dca15a495c09986cefc02086e03a53244f3a.tar.xz | |
Put a couple of important layer 1/2 arrays in IRAM.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7504 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs/libmad/layer12.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/layer12.c b/apps/codecs/libmad/layer12.c index 8d3b920..b16e197 100644 --- a/apps/codecs/libmad/layer12.c +++ b/apps/codecs/libmad/layer12.c @@ -42,7 +42,7 @@ * used in both Layer I and Layer II decoding */ static -mad_fixed_t const sf_table[64] = { +mad_fixed_t const sf_table[64] IDATA_ATTR = { # include "sf_table.dat" }; @@ -269,7 +269,7 @@ struct quantclass { unsigned char bits; mad_fixed_t C; mad_fixed_t D; -} const qc_table[17] = { +} const qc_table[17] IDATA_ATTR = { # include "qc_table.dat" }; |