summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/atrac3.c
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2009-08-16 04:05:40 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2009-08-16 04:05:40 +0000
commit3b81dd47497b39952cbcf110acaa59b192fdda1c (patch)
treecd653d180af793c6f5ebab11dd071ecfdab4044b /apps/codecs/libatrac/atrac3.c
parent415546921b9640b7718e9553ce96be6698f0f830 (diff)
downloadrockbox-3b81dd47497b39952cbcf110acaa59b192fdda1c.tar.gz
rockbox-3b81dd47497b39952cbcf110acaa59b192fdda1c.zip
Put QMF coefficients into IRAM. Update test program to still compile with IBSS_ATTR defined.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22340 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libatrac/atrac3.c')
-rw-r--r--apps/codecs/libatrac/atrac3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c
index 2e4af2963d..8109a46276 100644
--- a/apps/codecs/libatrac/atrac3.c
+++ b/apps/codecs/libatrac/atrac3.c
@@ -64,7 +64,7 @@ static inline int16_t av_clip_int16(int a)
64 else return a; 64 else return a;
65} 65}
66 66
67static int32_t qmf_window[48]; 67static int32_t qmf_window[48] IBSS_ATTR;
68static VLC spectral_coeff_tab[7]; 68static VLC spectral_coeff_tab[7];
69static channel_unit channel_units[2]; 69static channel_unit channel_units[2];
70/** 70/**