avcodec/x86/h264_chromamc: Avoid mmx in chroma_mc8_ssse3 functions

No impact on performance here.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2026-04-02 23:58:08 +02:00
parent 0c4c9c66bd
commit 7fd2be97b9
2 changed files with 24 additions and 16 deletions

View File

@@ -37,8 +37,8 @@ static void check_chroma_mc(void)
LOCAL_ALIGNED_32(uint8_t, dst0, [16 * 18 * 2]);
LOCAL_ALIGNED_32(uint8_t, dst1, [16 * 18 * 2]);
declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, const uint8_t *src,
ptrdiff_t stride, int h, int x, int y);
declare_func(void, uint8_t *dst, const uint8_t *src,
ptrdiff_t stride, int h, int x, int y);
ff_rv40dsp_init(&h);
randomize_buffers();