mirror of https://git.ffmpeg.org/ffmpeg.git
tests/checkasm/huffyuvdsp: Use correct function pointer type
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
895dd370a2
commit
631636e582
|
@ -42,7 +42,7 @@ static void check_add_int16(HuffYUVDSPContext *c, unsigned mask, int width, cons
|
|||
uint16_t *dst0 = av_mallocz(width * sizeof(uint16_t));
|
||||
uint16_t *dst1 = av_mallocz(width * sizeof(uint16_t));
|
||||
|
||||
declare_func(void, uint16_t *dst, uint16_t *src, unsigned mask, int w);
|
||||
declare_func(void, uint16_t *dst, const uint16_t *src, unsigned mask, int w);
|
||||
|
||||
if (!src0 || !src1 || !dst0 || !dst1)
|
||||
fail();
|
||||
|
|
Loading…
Reference in New Issue