diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-22 22:32:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-22 22:32:40 +0200 |
commit | 1df2f7b6a88ed871231a3a78319e997523d837a5 (patch) | |
tree | 9245df75e4e9b9954c08bc26965691b21e00fabb /libavcodec | |
parent | 013172ae9f1ab35b70732dcab6385743c5fed876 (diff) | |
parent | eba2233b58c2c4b468c58287d6537b2f1188a8cd (diff) | |
download | ffmpeg-1df2f7b6a88ed871231a3a78319e997523d837a5.tar.gz |
Merge commit 'eba2233b58c2c4b468c58287d6537b2f1188a8cd'
* commit 'eba2233b58c2c4b468c58287d6537b2f1188a8cd':
build: Add define for SIMD extensions requiring 16-byte aligned buffers
Conflicts:
configure
libavcodec/utils.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h index e00aad9431..dcb2113f6f 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -37,7 +37,7 @@ #if HAVE_AVX # define STRIDE_ALIGN 32 -#elif HAVE_NEON || ARCH_PPC || HAVE_MMX +#elif HAVE_SIMD_ALIGN_16 # define STRIDE_ALIGN 16 #else # define STRIDE_ALIGN 8 |