diff options
| -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 8d3b920..b16e197 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] = { +mad_fixed_t const sf_table[64] IDATA_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] = { +} const qc_table[17] IDATA_ATTR = { # include "qc_table.dat" }; |