mirror of https://git.ffmpeg.org/ffmpeg.git
tests/checkasm/vf_colorspace: Use correct function pointer type
Forgotten in 9b26a8077f
.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
e3de22e307
commit
4c57cbda67
|
@ -53,8 +53,8 @@ static const unsigned bpp_mask[] = { 0xffffffff, 0x03ff03ff, 0x0fff0fff };
|
|||
|
||||
static void check_yuv2yuv(void)
|
||||
{
|
||||
declare_func(void, uint8_t *dst[3], ptrdiff_t dst_stride[3],
|
||||
uint8_t *src[3], ptrdiff_t src_stride[3],
|
||||
declare_func(void, uint8_t *dst[3], const ptrdiff_t dst_stride[3],
|
||||
uint8_t *src[3], const ptrdiff_t src_stride[3],
|
||||
int w, int h, const int16_t coeff[3][3][8],
|
||||
const int16_t off[2][8]);
|
||||
ColorSpaceDSPContext dsp;
|
||||
|
@ -122,7 +122,7 @@ static void check_yuv2yuv(void)
|
|||
static void check_yuv2rgb(void)
|
||||
{
|
||||
declare_func(void, int16_t *dst[3], ptrdiff_t dst_stride,
|
||||
uint8_t *src[3], ptrdiff_t src_stride[3],
|
||||
uint8_t *src[3], const ptrdiff_t src_stride[3],
|
||||
int w, int h, const int16_t coeff[3][3][8],
|
||||
const int16_t off[8]);
|
||||
ColorSpaceDSPContext dsp;
|
||||
|
@ -198,7 +198,7 @@ static void check_yuv2rgb(void)
|
|||
|
||||
static void check_rgb2yuv(void)
|
||||
{
|
||||
declare_func(void, uint8_t *dst[3], ptrdiff_t dst_stride[3],
|
||||
declare_func(void, uint8_t *dst[3], const ptrdiff_t dst_stride[3],
|
||||
int16_t *src[3], ptrdiff_t src_stride,
|
||||
int w, int h, const int16_t coeff[3][3][8],
|
||||
const int16_t off[8]);
|
||||
|
|
Loading…
Reference in New Issue