diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-08-29 19:27:11 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-08-29 19:27:11 +0000 |
| commit | 7def0f5cbdef2e5b878979da37e3c1fbb8afd292 (patch) | |
| tree | 7fd82507cb52ff16e509ad61129e0966e994229b /apps/codecs/libfaad/common.c | |
| parent | cdca5efce9bfccf0d3f5a7dda85fad45562edf0d (diff) | |
| download | rockbox-7def0f5cbdef2e5b878979da37e3c1fbb8afd292.zip rockbox-7def0f5cbdef2e5b878979da37e3c1fbb8afd292.tar.gz rockbox-7def0f5cbdef2e5b878979da37e3c1fbb8afd292.tar.bz2 rockbox-7def0f5cbdef2e5b878979da37e3c1fbb8afd292.tar.xz | |
Restore libfaad's IRAM configuration.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27942 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libfaad/common.c')
| -rw-r--r-- | apps/codecs/libfaad/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libfaad/common.c b/apps/codecs/libfaad/common.c index 0e49896..a8b32d7 100644 --- a/apps/codecs/libfaad/common.c +++ b/apps/codecs/libfaad/common.c @@ -249,7 +249,7 @@ uint32_t random_int(void) /* just take the maximum number of bits for interpolation */ #define INTERP_BITS (REAL_BITS-TABLE_BITS) -static const real_t pow2_tab[] = { +static const real_t pow2_tab[] ICONST_ATTR = { REAL_CONST(1.000000000000000), REAL_CONST(1.010889286051701), REAL_CONST(1.021897148654117), REAL_CONST(1.033024879021228), REAL_CONST(1.044273782427414), REAL_CONST(1.055645178360557), REAL_CONST(1.067140400676824), REAL_CONST(1.078760797757120), REAL_CONST(1.090507732665258), @@ -274,7 +274,7 @@ static const real_t pow2_tab[] = { REAL_CONST(1.978456026387951), REAL_CONST(2.000000000000000) }; -static const real_t log2_tab[] = { +static const real_t log2_tab[] ICONST_ATTR_FAAD_LARGE_IRAM = { REAL_CONST(0.000000000000000), REAL_CONST(0.022367813028455), REAL_CONST(0.044394119358453), REAL_CONST(0.066089190457772), REAL_CONST(0.087462841250339), REAL_CONST(0.108524456778169), REAL_CONST(0.129283016944966), REAL_CONST(0.149747119504682), REAL_CONST(0.169925001442312), |