1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avfilter/x86/vf_colordetect_init: don't enable ASM functions on targets where it's known they will be slower

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2025-07-21 16:57:20 -03:00
parent fdca209f1f
commit 70fc4e5909

View File

@ -82,7 +82,7 @@ av_cold void ff_color_detect_dsp_init_x86(FFColorDetectDSPContext *dsp, int dept
#if HAVE_X86ASM #if HAVE_X86ASM
int cpu_flags = av_get_cpu_flags(); int cpu_flags = av_get_cpu_flags();
#if HAVE_AVX2_EXTERNAL #if HAVE_AVX2_EXTERNAL
if (EXTERNAL_AVX2(cpu_flags)) { if (EXTERNAL_AVX2_FAST(cpu_flags)) {
dsp->detect_range = depth > 8 ? detect_range16_avx2 : detect_range_avx2; dsp->detect_range = depth > 8 ? detect_range16_avx2 : detect_range_avx2;
if (color_range == AVCOL_RANGE_JPEG) { if (color_range == AVCOL_RANGE_JPEG) {
dsp->detect_alpha = depth > 8 ? detect_alpha16_full_avx2 : detect_alpha_full_avx2; dsp->detect_alpha = depth > 8 ? detect_alpha16_full_avx2 : detect_alpha_full_avx2;