summaryrefslogtreecommitdiffstats
path: root/apps/codecs/lib
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-20 23:28:09 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-20 23:28:09 +0000
commit609c526d563a499ae5aec9c1ed6ce8642cb99772 (patch)
tree832f1885aba826dcacb6885064a6696315eedba5 /apps/codecs/lib
parent99494140daebe8ac854eedf6173ec363765193d8 (diff)
downloadrockbox-609c526d563a499ae5aec9c1ed6ce8642cb99772.tar.gz
rockbox-609c526d563a499ae5aec9c1ed6ce8642cb99772.zip
Use more IRAM on S5L870x to speed up wmapro by ~2%.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29906 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib')
-rw-r--r--apps/codecs/lib/ffmpeg_get_bits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/lib/ffmpeg_get_bits.h b/apps/codecs/lib/ffmpeg_get_bits.h
index 139d7ae556..04eda021a7 100644
--- a/apps/codecs/lib/ffmpeg_get_bits.h
+++ b/apps/codecs/lib/ffmpeg_get_bits.h
@@ -571,9 +571,9 @@ int init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
#define INIT_VLC_USE_NEW_STATIC 4
void free_vlc(VLC *vlc);
-#define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size)\
+#define INIT_VLC_STATIC(vlc, bits, a,b,c,d,e,f,g, static_size, attr)\
{\
- static VLC_TYPE table[static_size][2];\
+ static VLC_TYPE table[static_size][2] attr;\
(vlc)->table= table;\
(vlc)->table_allocated= static_size;\
init_vlc(vlc, bits, a,b,c,d,e,f,g, INIT_VLC_USE_NEW_STATIC);\