[FFmpeg-cvslog] tests/checkasm/sw_scale: Avoid declare_func_emms where possible
Andreas Rheinhardt
git at videolan.org
Mon Sep 4 12:19:18 EEST 2023
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Aug 31 23:24:31 2023 +0200| [a39d6e81fa32d674a2d47d637c652564234f7645] | committer: Andreas Rheinhardt
tests/checkasm/sw_scale: Avoid declare_func_emms where possible
This makes the test stricter because it is checked that the
MMX registers are not accidentally clobbered.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a39d6e81fa32d674a2d47d637c652564234f7645
---
tests/checkasm/sw_scale.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/checkasm/sw_scale.c b/tests/checkasm/sw_scale.c
index 3b8dd310ec..1305b38744 100644
--- a/tests/checkasm/sw_scale.c
+++ b/tests/checkasm/sw_scale.c
@@ -110,9 +110,9 @@ static void check_yuv2yuv1(int accurate)
const int OFFSET_SIZES = sizeof(offsets)/sizeof(offsets[0]);
const char *accurate_str = (accurate) ? "accurate" : "approximate";
- declare_func_emms(AV_CPU_FLAG_MMX, void,
- const int16_t *src, uint8_t *dest,
- int dstW, const uint8_t *dither, int offset);
+ declare_func(void,
+ const int16_t *src, uint8_t *dest,
+ int dstW, const uint8_t *dither, int offset);
LOCAL_ALIGNED_16(int16_t, src_pixels, [LARGEST_INPUT_SIZE]);
LOCAL_ALIGNED_16(uint8_t, dst0, [LARGEST_INPUT_SIZE]);
@@ -288,9 +288,9 @@ static void check_hscale(void)
// The dst parameter here is either int16_t or int32_t but we use void* to
// just cover both cases.
- declare_func_emms(AV_CPU_FLAG_MMX, void, void *c, void *dst, int dstW,
- const uint8_t *src, const int16_t *filter,
- const int32_t *filterPos, int filterSize);
+ declare_func(void, void *c, void *dst, int dstW,
+ const uint8_t *src, const int16_t *filter,
+ const int32_t *filterPos, int filterSize);
ctx = sws_alloc_context();
if (sws_init_context(ctx, NULL, NULL) < 0)
More information about the ffmpeg-cvslog
mailing list