From b82274487b239ac0e55f33ac13be397cb92e778b Mon Sep 17 00:00:00 2001 From: James Almer Date: Sun, 18 May 2014 21:59:57 -0300 Subject: lavc: define STRIDE_ALIGN as 32 when compiling with AVX support Signed-off-by: James Almer Reviewed-by: "Ronald S. Bultje" Signed-off-by: Michael Niedermayer --- libavcodec/internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libavcodec/internal.h') diff --git a/libavcodec/internal.h b/libavcodec/internal.h index 603ffcf8f6..948d0064bc 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -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 -- cgit v1.2.3