checkasm/sw_scale: properly initialize src_pixer and filter_coeff buffers

Fixes valgrind uninitialised value warnings.

Signed-off-by: James Almer <jamrial@gmail.com>
pull/371/head
Alan Kelly 4 years ago committed by James Almer
parent 14dc28e969
commit ee18edb13a
  1. 4
      tests/checkasm/sw_scale.c

@ -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();

Loading…
Cancel
Save