diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2017-10-02 01:29:32 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-03 19:47:37 -0300 |
commit | cbbec68847ed3485900e83ec231871f71bb97d0d (patch) | |
tree | e720235468b4ae41c4e7dd1c2011d28a40a99b99 /libavcodec/wmv2.h | |
parent | 4590d073ccdc7c3ce0384d5b1fba56b3f6673535 (diff) | |
download | ffmpeg-cbbec68847ed3485900e83ec231871f71bb97d0d.tar.gz |
libavcodec/blockdsp : add AVX version
Also modify the required alignment, to 32 instead of 16
for several codecs
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/wmv2.h')
-rw-r--r-- | libavcodec/wmv2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2.h b/libavcodec/wmv2.h index 31593b8c38..0f459ae5ae 100644 --- a/libavcodec/wmv2.h +++ b/libavcodec/wmv2.h @@ -51,7 +51,7 @@ typedef struct Wmv2Context { int hshift; ScanTable abt_scantable[2]; - DECLARE_ALIGNED(16, int16_t, abt_block2)[6][64]; + DECLARE_ALIGNED(32, int16_t, abt_block2)[6][64]; } Wmv2Context; void ff_wmv2_common_init(Wmv2Context *w); |