diff options
author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-07-09 18:49:33 +0000 |
---|---|---|
committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-07-09 18:49:33 +0000 |
commit | c6898a0d553fab5783a00112078755cc0147aa30 (patch) | |
tree | 97ff564b38a07a5771a5fd85bc79e041b2422fc5 /apps | |
parent | 811af5968ae3015af04804aa774728f90a897c05 (diff) |
Fix red. Remove a small array from IRAM that is not critical to performance.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27359 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libfaad/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libfaad/common.c b/apps/codecs/libfaad/common.c index c838c88d33..d3ea2c377a 100644 --- a/apps/codecs/libfaad/common.c +++ b/apps/codecs/libfaad/common.c @@ -251,7 +251,7 @@ uint32_t random_int(void) /* precision of values in pow2_tab */ #define POWTBL_BITS (31-(INTERP_BITS)) #define POWTBL_PRECIS (1U<<(POWTBL_BITS)) -static const uint32_t pow2_tab[] ICONST_ATTR = { +static const uint32_t pow2_tab[] ICONST_ATTR_FAAD_LARGE_IRAM = { UFIX_CONST(1.000000000000000,POWTBL_PRECIS), UFIX_CONST(1.010889286051701,POWTBL_PRECIS), UFIX_CONST(1.021897148654117,POWTBL_PRECIS), |