]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM
authorDiego Biurrun <diego@biurrun.de>
Tue, 20 Aug 2013 12:24:04 +0000 (14:24 +0200)
committerDiego Biurrun <diego@biurrun.de>
Wed, 21 Aug 2013 07:40:39 +0000 (09:40 +0200)
libavcodec/utils.c

index 13419c7936b49875f60a6ae739005368e63bf46f..bf79cf1d080a0fedbaff64524dcf95f1fe573485 100644 (file)
@@ -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