checkasm/sw_scale: properly initialize src_pixer and filter_coeff buffers

Fixes valgrind uninitialised value warnings.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Alan Kelly 2021-02-19 14:55:39 +01:00 committed by James Almer
parent 14dc28e969
commit ee18edb13a
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ static void check_yuv2yuvX(void)
uint16_t coeff[8];
} *vFilterData;
uint8_t d_val = rnd();
randomize_buffers(filter_coeff, LARGEST_FILTER);
randomize_buffers(src_pixels, LARGEST_FILTER * LARGEST_INPUT_SIZE);
randomize_buffers((uint8_t*)src_pixels, LARGEST_FILTER * LARGEST_INPUT_SIZE * sizeof(int16_t));
randomize_buffers((uint8_t*)filter_coeff, LARGEST_FILTER * sizeof(int16_t));
ctx = sws_alloc_context();
if (sws_init_context(ctx, NULL, NULL) < 0)
fail();