summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-09-10 10:14:35 +0000
committerThom Johansen <thomj@rockbox.org>2005-09-10 10:14:35 +0000
commit1996dca15a495c09986cefc02086e03a53244f3a (patch)
treee66309fa8bfa0969af9050aac5041eafecec085a
parentacabd28efc37d6af3e695129d4d1719a7a3f6eb6 (diff)
downloadrockbox-1996dca15a495c09986cefc02086e03a53244f3a.tar.gz
rockbox-1996dca15a495c09986cefc02086e03a53244f3a.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/layer12.c b/apps/codecs/libmad/layer12.c
index 8d3b920ea6..b16e197e6c 100644
--- a/apps/codecs/libmad/layer12.c
+++ b/apps/codecs/libmad/layer12.c
@@ -42,7 +42,7 @@
42 * used in both Layer I and Layer II decoding 42 * used in both Layer I and Layer II decoding
43 */ 43 */
44static 44static
45mad_fixed_t const sf_table[64] = { 45mad_fixed_t const sf_table[64] IDATA_ATTR = {
46# include "sf_table.dat" 46# include "sf_table.dat"
47}; 47};
48 48
@@ -269,7 +269,7 @@ struct quantclass {
269 unsigned char bits; 269 unsigned char bits;
270 mad_fixed_t C; 270 mad_fixed_t C;
271 mad_fixed_t D; 271 mad_fixed_t D;
272} const qc_table[17] = { 272} const qc_table[17] IDATA_ATTR = {
273# include "qc_table.dat" 273# include "qc_table.dat"
274}; 274};
275 275