diff options
author | Robert Swain <robert.swain@gmail.com> | 2008-08-15 08:01:31 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-08-15 08:01:31 +0000 |
commit | 9ffd5c1cee8d46128bf6b3faad8befb886763ae3 (patch) | |
tree | 8801ba1d882069c38b0cf0c3ce59986f879b0e23 /libavcodec/aactab.c | |
parent | aa6ed60895e3dcd2425ae1ad9552a04cd6c7983a (diff) | |
download | ffmpeg-9ffd5c1cee8d46128bf6b3faad8befb886763ae3.tar.gz |
More OKed AAC decoder hunks
Originally committed as revision 14774 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aactab.c')
-rw-r--r-- | libavcodec/aactab.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/aactab.c b/libavcodec/aactab.c index 2c30eeb51a..25f8d111b6 100644 --- a/libavcodec/aactab.c +++ b/libavcodec/aactab.c @@ -32,6 +32,9 @@ #include <stdint.h> +DECLARE_ALIGNED(16, float, ff_aac_kbd_long_1024[1024]); +DECLARE_ALIGNED(16, float, ff_aac_kbd_short_128[128]); + const uint8_t ff_aac_num_swb_1024[] = { 41, 41, 47, 49, 49, 51, 47, 47, 43, 43, 43, 40 }; @@ -983,4 +986,8 @@ const float ff_aac_pow2sf_tab[316] = { 2.68435456e+08, 3.19225354e+08, 3.79625062e+08, 4.51452825e+08, }; +#else + +float ff_aac_pow2sf_tab[316]; + #endif /* CONFIG_HARDCODED_TABLES */ |