diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2006-10-01 15:39:23 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2006-10-01 15:39:23 +0000 |
| commit | db3b70c748f3b3943d328711eb3bee032009c0ef (patch) | |
| tree | 135f503cf61e0b3d2c09813e5f43d83c71a4393e /apps/codecs | |
| parent | cb5129d07466d10e6d78190fc2bf2e478e782f13 (diff) | |
| download | rockbox-db3b70c748f3b3943d328711eb3bee032009c0ef.zip rockbox-db3b70c748f3b3943d328711eb3bee032009c0ef.tar.gz rockbox-db3b70c748f3b3943d328711eb3bee032009c0ef.tar.bz2 rockbox-db3b70c748f3b3943d328711eb3bee032009c0ef.tar.xz | |
AAC codec: Reduce IRAM usage slightly, to fix the profile builds (on Coldfire).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11102 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libfaad/specrec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/libfaad/specrec.c b/apps/codecs/libfaad/specrec.c index b457f04..812bdfb 100644 --- a/apps/codecs/libfaad/specrec.c +++ b/apps/codecs/libfaad/specrec.c @@ -86,19 +86,19 @@ ALIGN static const uint8_t num_swb_128_window[] ICONST_ATTR = 12, 12, 12, 14, 14, 14, 15, 15, 15, 15, 15, 15 }; -ALIGN static const uint16_t swb_offset_1024_96[] ICONST_ATTR = +ALIGN static const uint16_t swb_offset_1024_96[] = { 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 64, 72, 80, 88, 96, 108, 120, 132, 144, 156, 172, 188, 212, 240, 276, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024 }; -ALIGN static const uint16_t swb_offset_128_96[] ICONST_ATTR = +ALIGN static const uint16_t swb_offset_128_96[] = { 0, 4, 8, 12, 16, 20, 24, 32, 40, 48, 64, 92, 128 }; -ALIGN static const uint16_t swb_offset_1024_64[] ICONST_ATTR = +ALIGN static const uint16_t swb_offset_1024_64[] = { 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 64, 72, 80, 88, 100, 112, 124, 140, 156, 172, 192, 216, 240, 268, @@ -106,7 +106,7 @@ ALIGN static const uint16_t swb_offset_1024_64[] ICONST_ATTR = 864, 904, 944, 984, 1024 }; -ALIGN static const uint16_t swb_offset_128_64[] ICONST_ATTR = +ALIGN static const uint16_t swb_offset_128_64[] = { 0, 4, 8, 12, 16, 20, 24, 32, 40, 48, 64, 92, 128 }; |