x86/h26x/h2656dsp: add missing preprocessor wrappers

Fixes compilation on x86_32 targets.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-02-01 15:58:25 -03:00
parent 6b6eb7d74e
commit b181868aba
1 changed files with 3 additions and 0 deletions

View File

@ -67,6 +67,8 @@ void ff_h2656_put_uni_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dststr
mc_rep_funcs(fname, 12, 8, 32, sse4) \
mc_rep_funcs(fname, 12, 8, 16, sse4) \
#if ARCH_X86_64 && HAVE_SSE4_EXTERNAL
MC_REP_FUNCS_SSE4(pixels)
MC_REP_FUNCS_SSE4(4tap_h)
MC_REP_FUNCS_SSE4(4tap_v)
@ -96,3 +98,4 @@ MC_REP_FUNCS_AVX2(4tap_h)
MC_REP_FUNCS_AVX2(4tap_v)
MC_REP_FUNCS_AVX2(4tap_hv)
#endif
#endif