diff options
author | Lynne <dev@lynne.ee> | 2024-10-06 01:09:22 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-10-06 01:32:49 +0200 |
commit | 892f64ad9bce6333dd876038b97ca6324dbe247e (patch) | |
tree | d0480ece8b57bf3dc7815b65c211e47932a8c2d8 /libavutil/x86/tx_float_init.c | |
parent | b17a240c8d7280c78aba041cbb7a77d9493206d9 (diff) | |
download | ffmpeg-892f64ad9bce6333dd876038b97ca6324dbe247e.tar.gz |
x86/tx_float: remove HAVE_AVX2_EXTERNAL checks
It'll always be enabled.
Thanks, nasm.
Diffstat (limited to 'libavutil/x86/tx_float_init.c')
-rw-r--r-- | libavutil/x86/tx_float_init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/x86/tx_float_init.c b/libavutil/x86/tx_float_init.c index 36da9325e5..3e99c21eac 100644 --- a/libavutil/x86/tx_float_init.c +++ b/libavutil/x86/tx_float_init.c @@ -282,7 +282,6 @@ const FFTXCodelet * const ff_tx_codelet_list_float_x86[] = { TX_DEF(fft_sr_ns, FFT, 64, 2097152, 2, 0, 352, b8_i2, fma3, FMA3, AV_TX_INPLACE | FF_TX_PRESHUFFLE, AV_CPU_FLAG_AVXSLOW), -#if HAVE_AVX2_EXTERNAL TX_DEF(fft15, FFT, 15, 15, 15, 0, 320, factor_init, avx2, AVX2, AV_TX_INPLACE, AV_CPU_FLAG_AVXSLOW), TX_DEF(fft15_ns, FFT, 15, 15, 15, 0, 384, factor_init, avx2, AVX2, @@ -305,7 +304,6 @@ const FFTXCodelet * const ff_tx_codelet_list_float_x86[] = { TX_DEF(mdct_inv, MDCT, 16, TX_LEN_UNLIMITED, 2, TX_FACTOR_ANY, 384, m_inv_init, avx2, AVX2, FF_TX_INVERSE_ONLY, AV_CPU_FLAG_AVXSLOW | AV_CPU_FLAG_SLOW_GATHER), #endif -#endif NULL, }; |