diff options
| author | Thom Johansen <thomj@rockbox.org> | 2005-10-27 11:39:01 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2005-10-27 11:39:01 +0000 |
| commit | 292e4e90d7e272f3bf6f5f8912c25114a7157aea (patch) | |
| tree | 451ad19e9b27542b12afe1b4cf7a98c8439acf41 /apps/codecs/libmad/layer12.c | |
| parent | e6021381efa735fb583e0a1a8afd7957f70eff79 (diff) | |
| download | rockbox-292e4e90d7e272f3bf6f5f8912c25114a7157aea.zip rockbox-292e4e90d7e272f3bf6f5f8912c25114a7157aea.tar.gz rockbox-292e4e90d7e272f3bf6f5f8912c25114a7157aea.tar.bz2 rockbox-292e4e90d7e272f3bf6f5f8912c25114a7157aea.tar.xz | |
Introduced usage of IBSS_ATTR and ICONST_ATTR in codec libraries.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7660 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmad/layer12.c')
| -rw-r--r-- | apps/codecs/libmad/layer12.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/layer12.c b/apps/codecs/libmad/layer12.c index b16e197..fb71fb0 100644 --- a/apps/codecs/libmad/layer12.c +++ b/apps/codecs/libmad/layer12.c @@ -42,7 +42,7 @@ * used in both Layer I and Layer II decoding */ static -mad_fixed_t const sf_table[64] IDATA_ATTR = { +mad_fixed_t const sf_table[64] ICONST_ATTR = { # include "sf_table.dat" }; @@ -269,7 +269,7 @@ struct quantclass { unsigned char bits; mad_fixed_t C; mad_fixed_t D; -} const qc_table[17] IDATA_ATTR = { +} const qc_table[17] ICONST_ATTR = { # include "qc_table.dat" }; |