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/sinewin.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/sinewin.h')
-rw-r--r-- | libavcodec/sinewin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sinewin.h b/libavcodec/sinewin.h index 8054191867..478036d3c6 100644 --- a/libavcodec/sinewin.h +++ b/libavcodec/sinewin.h @@ -31,7 +31,7 @@ #endif #define SINETABLE(size) \ - SINETABLE_CONST DECLARE_ALIGNED(16, float, ff_sine_##size)[size] + SINETABLE_CONST DECLARE_ALIGNED(32, float, ff_sine_##size)[size] /** * Generate a sine window. |