diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-20 14:24:04 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-21 09:40:39 +0200 |
commit | e95930eda18e90eaea30fd397ea21b30f7763137 (patch) | |
tree | 38e234eee173781dbf962f3f2fdc160c64b595a4 /libavcodec | |
parent | c18838f5eb7d7001a9dc653f5162868c04c1b2a1 (diff) | |
download | ffmpeg-e95930eda18e90eaea30fd397ea21b30f7763137.tar.gz |
avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 13419c7936..bf79cf1d08 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -160,7 +160,7 @@ void avcodec_set_dimensions(AVCodecContext *s, int width, int height) s->height = height; } -#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX +#if HAVE_NEON || ARCH_PPC || HAVE_MMX # define STRIDE_ALIGN 16 #else # define STRIDE_ALIGN 8 |