From 2fffa01ddb777871cd53ef6c92f5c19cae8afe16 Mon Sep 17 00:00:00 2001 From: James Almer Date: Fri, 29 Aug 2025 14:02:13 -0300 Subject: [PATCH] avcodec/x86/vp9dsp_init: remove preprocessor checks for some prototypes Fixes compilation with --disable-avx512icl Signed-off-by: James Almer --- libavcodec/x86/vp9dsp_init.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/x86/vp9dsp_init.c b/libavcodec/x86/vp9dsp_init.c index 15862f43bf..9836b3321c 100644 --- a/libavcodec/x86/vp9dsp_init.c +++ b/libavcodec/x86/vp9dsp_init.c @@ -50,14 +50,12 @@ decl_mc_funcs(8, ssse3, int8_t, 32, 8); #if ARCH_X86_64 decl_mc_funcs(16, ssse3, int8_t, 32, 8); decl_mc_funcs(32, avx2, int8_t, 32, 8); -#if HAVE_AVX512ICL_EXTERNAL decl_subpel_asm( 4, 8, avx512icl); decl_subpel_asm( 8, 8, avx512icl); decl_subpel_asm(16, 8, avx512icl); decl_subpel_asm(32, 8, avx512icl); decl_subpel_asm(64, 8, avx512icl); #endif -#endif mc_rep_funcs(16, 8, 8, sse2, int16_t, 8, 8) #if ARCH_X86_32