diff mbox series

[FFmpeg-devel,05/10] tests/checkasm/vp8dsp: Use correct function pointer type

Message ID GV1P250MB073731BE8A989D2486C7B6608FE22@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit 6c0994864ef645b2a5a9baee9cbb2ae5c0354ce6
Headers show
Series [FFmpeg-devel,01/10] tests/checkasm/hevc_*: Fix funtion pointer types | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt May 13, 2024, 9:30 a.m. UTC
Forgotten in a54e53a1c428299b19c7b4e2b66d01c0482c41dd.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 tests/checkasm/vp8dsp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tests/checkasm/vp8dsp.c b/tests/checkasm/vp8dsp.c
index 4cd0f8ac4f..6e989819ef 100644
--- a/tests/checkasm/vp8dsp.c
+++ b/tests/checkasm/vp8dsp.c
@@ -269,7 +269,8 @@  static void check_mc(void)
     LOCAL_ALIGNED_16(uint8_t, dst1, [16 * 16]);
     VP8DSPContext d;
     int type, k, dx, dy;
-    declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *, ptrdiff_t, uint8_t *, ptrdiff_t, int, int, int);
+    declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *, ptrdiff_t,
+                      const uint8_t *, ptrdiff_t, int, int, int);
 
     ff_vp78dsp_init(&d);