avcodec/x86/h264_qpel: Don't instantiate unused functions

The v_lowpass wrappers (which are instantiated by this macro)
are only used in the put (and not the avg) form for SSSE3
(the avg form is only used for mc02, which doesn't exist
for SSSE3). Clang warns about the unused functions.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-10-10 16:21:25 +02:00
parent 6f1ab828d3
commit d96f8d32ad

View File

@@ -293,7 +293,6 @@ QPEL_H264_HV_XMM(avg_, sse2)
QPEL_H264_H_XMM(put_, ssse3)
QPEL_H264_H_XMM(avg_, ssse3)
QPEL_H264_V_XMM(put_, ssse3, sse2)
QPEL_H264_V_XMM(avg_, ssse3, sse2)
QPEL_H264_HV_XMM(put_, ssse3)
QPEL_H264_HV_XMM(avg_, ssse3)