diff options
author | James Almer <jamrial@gmail.com> | 2022-09-23 15:15:20 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-09-23 15:15:20 -0300 |
commit | 750f378becf15c0552c45a66a66aca7cc506d490 (patch) | |
tree | 9698417841a254f13e5e873e64b9fca4a04dc7ae | |
parent | c504fb869264fbd8fba6e81c186b2f2848b62e26 (diff) | |
download | ffmpeg-750f378becf15c0552c45a66a66aca7cc506d490.tar.gz |
x86/tx_float: add missing preprocessor wrapper for AVX2 functions
Fixes compilation with old assemblers.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavutil/x86/tx_float.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/x86/tx_float.asm b/libavutil/x86/tx_float.asm index c3b1375bc4..fd934e9eac 100644 --- a/libavutil/x86/tx_float.asm +++ b/libavutil/x86/tx_float.asm @@ -1843,7 +1843,7 @@ cglobal fft_pfa_15xM_ns_float, 4, 14, 16, 320, ctx, out, in, stride, len, lut, b %endif %endmacro -%if ARCH_X86_64 +%if ARCH_X86_64 && HAVE_AVX2_EXTERNAL PFA_15_FN avx2, 0 PFA_15_FN avx2, 1 %endif |