Commit b8227448 authored by James Almer's avatar James Almer Committed by Michael Niedermayer

lavc: define STRIDE_ALIGN as 32 when compiling with AVX support

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
Reviewed-by: 's avatar"Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 833ec917
......@@ -35,7 +35,9 @@
#define FF_SANE_NB_CHANNELS 63U
#if HAVE_NEON || ARCH_PPC || HAVE_MMX
#if HAVE_AVX
# define STRIDE_ALIGN 32
#elif HAVE_NEON || ARCH_PPC || HAVE_MMX
# define STRIDE_ALIGN 16
#else
# define STRIDE_ALIGN 8
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment