Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-20 16:24:04 +0400
committerDiego Biurrun <diego@biurrun.de>2013-08-21 11:40:39 +0400
commite95930eda18e90eaea30fd397ea21b30f7763137 (patch)
tree38e234eee173781dbf962f3f2fdc160c64b595a4 /libavcodec/utils.c
parentc18838f5eb7d7001a9dc653f5162868c04c1b2a1 (diff)
avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
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