mirror of
https://github.com/librempeg/librempeg
synced 2024-11-21 16:44:05 +00:00
tests/checkasm/vp8dsp: Use correct function pointer type
Forgotten in a54e53a1c4
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
81d93892f0
commit
a32f8af5f2
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user