1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Thom Johansen 2005-09-10 10:14:35 +00:00
parent acabd28efc
commit 1996dca15a

View file

@ -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"
};