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/ituh263dec.c | |
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/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index edb68861ac..fc95a532ce 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -574,7 +574,7 @@ not_coded: static int h263_skip_b_part(MpegEncContext *s, int cbp) { - LOCAL_ALIGNED_16(int16_t, dblock, [64]); + LOCAL_ALIGNED_32(int16_t, dblock, [64]); int i, mbi; int bli[6]; |