Commit e95930ed authored by Diego Biurrun's avatar Diego Biurrun

avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM

parent c18838f5
...@@ -160,7 +160,7 @@ void avcodec_set_dimensions(AVCodecContext *s, int width, int height) ...@@ -160,7 +160,7 @@ void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
s->height = height; s->height = height;
} }
#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX #if HAVE_NEON || ARCH_PPC || HAVE_MMX
# define STRIDE_ALIGN 16 # define STRIDE_ALIGN 16
#else #else
# define STRIDE_ALIGN 8 # 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