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.h | |
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.h')
-rw-r--r-- | libavcodec/aactab.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index 8dcf94db3e..1a3a8dfe2f 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -40,6 +40,13 @@ * encoder. */ +/* @name window coefficients + * @{ + */ +DECLARE_ALIGNED(16, extern float, ff_aac_kbd_long_1024[1024]); +DECLARE_ALIGNED(16, extern float, ff_aac_kbd_short_128[128]); +// @} + /* @name number of scalefactor window bands for long and short transform windows respectively * @{ */ @@ -58,6 +65,8 @@ extern const float *ff_aac_codebook_vectors[]; #ifdef CONFIG_HARDCODED_TABLES extern const float ff_aac_pow2sf_tab[316]; +#else +extern float ff_aac_pow2sf_tab[316]; #endif /* CONFIG_HARDCODED_TABLES */ #endif /* FFMPEG_AACTAB_H */ |