diff options
author | James Almer <jamrial@gmail.com> | 2025-08-29 14:02:13 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2025-08-29 14:02:49 -0300 |
commit | 2fffa01ddb777871cd53ef6c92f5c19cae8afe16 (patch) | |
tree | 7f6e0a3983ec388a47f074f7722f1efdb208cdcd | |
parent | 7252f6c0bfe7b983232c99b1a5f5924a58654d6b (diff) | |
download | ffmpeg-2fffa01ddb777871cd53ef6c92f5c19cae8afe16.tar.gz |
avcodec/x86/vp9dsp_init: remove preprocessor checks for some prototypes
Fixes compilation with --disable-avx512icl
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/x86/vp9dsp_init.c | 2 |
1 files changed, 0 insertions, 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 |