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/libalac | |
| 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/libalac')
| -rw-r--r-- | apps/codecs/libalac/alac.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/libalac/alac.c b/apps/codecs/libalac/alac.c index bdfb714..f3bfada 100644 --- a/apps/codecs/libalac/alac.c +++ b/apps/codecs/libalac/alac.c @@ -48,13 +48,13 @@ v = (((v) & 0x00FF) << 0x08) | \ (((v) & 0xFF00) >> 0x08); } while (0) -int16_t predictor_coef_table[32] IDATA_ATTR; -int16_t predictor_coef_table_a[32] IDATA_ATTR; -int16_t predictor_coef_table_b[32] IDATA_ATTR; +int16_t predictor_coef_table[32] IBSS_ATTR; +int16_t predictor_coef_table_a[32] IBSS_ATTR; +int16_t predictor_coef_table_b[32] IBSS_ATTR; int32_t predicterror_buffer_a[4096]; int32_t predicterror_buffer_b[4096]; -int32_t outputsamples_buffer_a[4096] IDATA_ATTR; -int32_t outputsamples_buffer_b[4096] IDATA_ATTR; +int32_t outputsamples_buffer_a[4096] IBSS_ATTR; +int32_t outputsamples_buffer_b[4096] IBSS_ATTR; void alac_set_info(alac_file *alac, char *inputbuffer) { |