From 9ffd5c1cee8d46128bf6b3faad8befb886763ae3 Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Fri, 15 Aug 2008 08:01:31 +0000 Subject: More OKed AAC decoder hunks Originally committed as revision 14774 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aactab.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavcodec/aactab.c') 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 +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 */ -- cgit v1.2.3