diff options
| author | Nils Wallménius <nils@rockbox.org> | 2008-06-02 17:56:37 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2008-06-02 17:56:37 +0000 |
| commit | 999d3e89a8368f9ec86646768f2ac367de54aaa9 (patch) | |
| tree | b7ac6cdc1041e1935b795db11ab9f5408084bc46 /apps/codecs | |
| parent | cad30d334ce4a50fe26c562467b81e184bb3fa40 (diff) | |
| download | rockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.zip rockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.tar.gz rockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.tar.bz2 rockbox-999d3e89a8368f9ec86646768f2ac367de54aaa9.tar.xz | |
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')
| -rw-r--r-- | apps/codecs/libfaad/specrec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libfaad/specrec.c b/apps/codecs/libfaad/specrec.c index 812bdfb..fc1beb7 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 = 0, 4, 8, 12, 16, 20, 24, 28, 36, 44, 52, 60, 72, 88, 108, 128 }; -ALIGN static const uint16_t *swb_offset_1024_window[] ICODE_ATTR = +ALIGN static const uint16_t *const swb_offset_1024_window[] ICONST_ATTR = { swb_offset_1024_96, /* 96000 */ swb_offset_1024_96, /* 88200 */ @@ -266,7 +266,7 @@ ALIGN static const uint16_t *swb_offset_480_window[] = }; #endif -ALIGN static const uint16_t *swb_offset_128_window[] ICODE_ATTR = +ALIGN static const uint16_t *const swb_offset_128_window[] ICONST_ATTR = { swb_offset_128_96, /* 96000 */ swb_offset_128_96, /* 88200 */ |