This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 515a1a4eb082f7fd5ff8e054158470e5b504fc3d Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Aug 15 09:48:51 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Tue Aug 18 11:51:33 2026 +0200 tests/checkasm/vp8dsp: Don't use declare_func_emms unnecessarily Possible since b9161b93b5c88bd2f6f110bb527336af9a4c0cae. Signed-off-by: Andreas Rheinhardt <[email protected]> --- tests/checkasm/vp8dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/vp8dsp.c b/tests/checkasm/vp8dsp.c index 3081820c59..4a7f71e856 100644 --- a/tests/checkasm/vp8dsp.c +++ b/tests/checkasm/vp8dsp.c @@ -163,7 +163,7 @@ static void check_idct_dc4(VP8DSPContext *d, bool is_vp7) LOCAL_ALIGNED_16(int16_t, subcoef0, [4], [4 * 4]); LOCAL_ALIGNED_16(int16_t, subcoef1, [4], [4 * 4]); int i, chroma; - declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t block[4][16], ptrdiff_t stride); + declare_func(void, uint8_t *dst, int16_t block[4][16], ptrdiff_t stride); for (chroma = 0; chroma <= 1; chroma++) { void (*idct4dc)(uint8_t *, int16_t[4][16], ptrdiff_t) = chroma ? d->vp8_idct_dc_add4uv : d->vp8_idct_dc_add4y; -- To stop receiving notification emails like this one, please contact [email protected]. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
