summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-07-09 18:49:33 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-07-09 18:49:33 +0000
commitc6898a0d553fab5783a00112078755cc0147aa30 (patch)
tree97ff564b38a07a5771a5fd85bc79e041b2422fc5
parent811af5968ae3015af04804aa774728f90a897c05 (diff)
downloadrockbox-c6898a0d553fab5783a00112078755cc0147aa30.tar.gz
rockbox-c6898a0d553fab5783a00112078755cc0147aa30.zip
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
-rw-r--r--apps/codecs/libfaad/common.c2
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)
251/* precision of values in pow2_tab */ 251/* precision of values in pow2_tab */
252#define POWTBL_BITS (31-(INTERP_BITS)) 252#define POWTBL_BITS (31-(INTERP_BITS))
253#define POWTBL_PRECIS (1U<<(POWTBL_BITS)) 253#define POWTBL_PRECIS (1U<<(POWTBL_BITS))
254static const uint32_t pow2_tab[] ICONST_ATTR = { 254static const uint32_t pow2_tab[] ICONST_ATTR_FAAD_LARGE_IRAM = {
255 UFIX_CONST(1.000000000000000,POWTBL_PRECIS), 255 UFIX_CONST(1.000000000000000,POWTBL_PRECIS),
256 UFIX_CONST(1.010889286051701,POWTBL_PRECIS), 256 UFIX_CONST(1.010889286051701,POWTBL_PRECIS),
257 UFIX_CONST(1.021897148654117,POWTBL_PRECIS), 257 UFIX_CONST(1.021897148654117,POWTBL_PRECIS),