diff options
author | James Almer <jamrial@gmail.com> | 2017-03-15 22:16:53 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-15 22:16:53 -0300 |
commit | 6c4665deb4d20e3e305e54b4fb4431e57497d374 (patch) | |
tree | 6d7c0e14e08c6bf7b24a967930e8847d7ca587b6 /libavcodec | |
parent | b5122b040fe9441871b3d275d7f5e9eb352d4f28 (diff) | |
parent | 89aebc5bcc6e23a0a79c3f51c3a55c3571692ba0 (diff) | |
download | ffmpeg-6c4665deb4d20e3e305e54b4fb4431e57497d374.tar.gz |
Merge commit '89aebc5bcc6e23a0a79c3f51c3a55c3571692ba0'
* commit '89aebc5bcc6e23a0a79c3f51c3a55c3571692ba0':
lavc: align the linesize to 32 when AVX is enabled
Merged-by: James Almer <jamrial@gmail.com>
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 e3286d2a58..d6e620a983 100644 --- a/libavcodec/internal.h +++ b/libavcodec/internal.h @@ -74,7 +74,7 @@ #define FF_SIGNBIT(x) ((x) >> CHAR_BIT * sizeof(x) - 1) -#if HAVE_AVX +#if HAVE_SIMD_ALIGN_32 # define STRIDE_ALIGN 32 #elif HAVE_SIMD_ALIGN_16 # define STRIDE_ALIGN 16 |