1
0
Fork 0

x86/hevcdsp_init.c: fix preprocessor check

HAVE_AVX2_EXTERNAL has a value, so check for it.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-02-01 10:47:53 -03:00
parent 0042cf8980
commit 2dc8221e66
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ FW_QPEL_FUNCS(8, 10, sse4);
FW_QPEL_FUNCS(4, 12, sse4);
FW_QPEL_FUNCS(8, 12, sse4);
#ifdef HAVE_AVX2_EXTERNAL
#if HAVE_AVX2_EXTERNAL
FW_PEL(32, 8, avx2);
FW_PUT(pel, pel_pixels16, pixels16, 10, avx2);