diff options
author | Kieran Kunhya <kierank@ob-encoder.com> | 2012-04-20 14:49:30 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-21 17:13:05 -0400 |
commit | 5ff01259a8b558ba84066125b41832121f2f5864 (patch) | |
tree | 49d4e5844c59485037d26f59d3465f4f4c00c068 /libavcodec/aactab.h | |
parent | afeb3590fc5ff01d43b1a1be9df8fac64431ff9e (diff) | |
download | ffmpeg-5ff01259a8b558ba84066125b41832121f2f5864.tar.gz |
Convert vector_fmul range of functions to YASM and add AVX versions
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavcodec/aactab.h')
-rw-r--r-- | libavcodec/aactab.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aactab.h b/libavcodec/aactab.h index c76d65db95..56e5796be9 100644 --- a/libavcodec/aactab.h +++ b/libavcodec/aactab.h @@ -44,8 +44,8 @@ /* @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]; +DECLARE_ALIGNED(32, extern float, ff_aac_kbd_long_1024)[1024]; +DECLARE_ALIGNED(32, extern float, ff_aac_kbd_short_128)[128]; // @} /* @name number of scalefactor window bands for long and short transform windows respectively |