summaryrefslogtreecommitdiff
path: root/apps/codecs/libfaad/specrec.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2008-06-02 17:56:37 +0000
committerNils Wallménius <nils@rockbox.org>2008-06-02 17:56:37 +0000
commit999d3e89a8368f9ec86646768f2ac367de54aaa9 (patch)
treeb7ac6cdc1041e1935b795db11ab9f5408084bc46 /apps/codecs/libfaad/specrec.c
parentcad30d334ce4a50fe26c562467b81e184bb3fa40 (diff)
downloadrockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.tar.gz
rockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.zip
Put pointer arrays in the correct iram section, tiny const police to make it possible too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17677 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libfaad/specrec.c')
-rw-r--r--apps/codecs/libfaad/specrec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libfaad/specrec.c b/apps/codecs/libfaad/specrec.c
index 812bdfb7d0..fc1beb7e04 100644
--- a/apps/codecs/libfaad/specrec.c
+++ b/apps/codecs/libfaad/specrec.c
@@ -216,7 +216,7 @@ ALIGN static const uint16_t swb_offset_128_8[] ICONST_ATTR =
216 0, 4, 8, 12, 16, 20, 24, 28, 36, 44, 52, 60, 72, 88, 108, 128 216 0, 4, 8, 12, 16, 20, 24, 28, 36, 44, 52, 60, 72, 88, 108, 128
217}; 217};
218 218
219ALIGN static const uint16_t *swb_offset_1024_window[] ICODE_ATTR = 219ALIGN static const uint16_t *const swb_offset_1024_window[] ICONST_ATTR =
220{ 220{
221 swb_offset_1024_96, /* 96000 */ 221 swb_offset_1024_96, /* 96000 */
222 swb_offset_1024_96, /* 88200 */ 222 swb_offset_1024_96, /* 88200 */
@@ -266,7 +266,7 @@ ALIGN static const uint16_t *swb_offset_480_window[] =
266}; 266};
267#endif 267#endif
268 268
269ALIGN static const uint16_t *swb_offset_128_window[] ICODE_ATTR = 269ALIGN static const uint16_t *const swb_offset_128_window[] ICONST_ATTR =
270{ 270{
271 swb_offset_128_96, /* 96000 */ 271 swb_offset_128_96, /* 96000 */
272 swb_offset_128_96, /* 88200 */ 272 swb_offset_128_96, /* 88200 */