mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
tests/checkasm/vvc_mc: Use correct function pointer type
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
6c0994864e
commit
e3de22e307
@ -121,7 +121,8 @@ static void check_put_vvc_luma_uni(void)
|
||||
|
||||
VVCDSPContext c;
|
||||
declare_func(void, uint8_t *dst, ptrdiff_t dststride,
|
||||
uint8_t *src, ptrdiff_t srcstride, int height, const int8_t *hf, const int8_t *vf, int width);
|
||||
const uint8_t *src, ptrdiff_t srcstride, int height,
|
||||
const int8_t *hf, const int8_t *vf, int width);
|
||||
|
||||
for (int bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
|
||||
ff_vvc_dsp_init(&c, bit_depth);
|
||||
@ -219,7 +220,8 @@ static void check_put_vvc_chroma_uni(void)
|
||||
|
||||
VVCDSPContext c;
|
||||
declare_func(void, uint8_t *dst, ptrdiff_t dststride,
|
||||
uint8_t *src, ptrdiff_t srcstride, int height, const int8_t *hf, const int8_t *vf, int width);
|
||||
const uint8_t *src, ptrdiff_t srcstride, int height,
|
||||
const int8_t *hf, const int8_t *vf, int width);
|
||||
|
||||
for (int bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
|
||||
ff_vvc_dsp_init(&c, bit_depth);
|
||||
|
Loading…
Reference in New Issue
Block a user