diff options
author | James Almer <jamrial@gmail.com> | 2018-07-31 22:03:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-07-31 22:14:42 -0300 |
commit | d5b3077ecffb94887c97cd2f1d34a2de4c991ec4 (patch) | |
tree | c19966d8a3560f6005b658fd20293424a692806b | |
parent | 1ffd63a4457bbd09574de5cb8bc100734a7b8843 (diff) | |
download | ffmpeg-d5b3077ecffb94887c97cd2f1d34a2de4c991ec4.tar.gz |
x86/pixelutils: add missing preprocessor wrapper to the AVX2 functions
Should fix compilation with old yasm/nasm
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavutil/x86/pixelutils.asm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/x86/pixelutils.asm b/libavutil/x86/pixelutils.asm index bbecf0e68e..36c57c5f7f 100644 --- a/libavutil/x86/pixelutils.asm +++ b/libavutil/x86/pixelutils.asm @@ -292,6 +292,7 @@ cglobal pixelutils_sad_%1_32x32, 4,5,3, src1, stride1, src2, stride2 SAD_XMM_32x32 a SAD_XMM_32x32 u +%if HAVE_AVX2_EXTERNAL ;------------------------------------------------------------------------------- ; int ff_pixelutils_sad_32x32_avx2(const uint8_t *src1, ptrdiff_t stride1, ; const uint8_t *src2, ptrdiff_t stride2); @@ -382,3 +383,4 @@ cglobal pixelutils_sad_%1_32x32, 4,7,3, src1, stride1, src2, stride2 SAD_AVX2_32x32 a SAD_AVX2_32x32 u +%endif |