Module: libav Branch: master Commit: e95930eda18e90eaea30fd397ea21b30f7763137
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Tue Aug 20 14:24:04 2013 +0200 avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM --- libavcodec/utils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 13419c7..bf79cf1 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 _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
