mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
fate/checkasm: fix use of uninitialized memory on hevc_add_res tests
This commit is contained in:
parent
36eae45510
commit
09ce5519f3
@ -59,7 +59,7 @@ static void check_add_res(HEVCDSPContext h, int bit_depth)
|
||||
randomize_buffers(res0, size);
|
||||
randomize_buffers2(dst0, size);
|
||||
memcpy(res1, res0, sizeof(*res0) * size);
|
||||
memcpy(dst1, dst0, size);
|
||||
memcpy(dst1, dst0, sizeof(int16_t) * size);
|
||||
|
||||
if (check_func(h.add_residual[i - 2], "add_res_%dx%d_%d", block_size, block_size, bit_depth)) {
|
||||
call_ref(dst0, res0, stride);
|
||||
|
Loading…
Reference in New Issue
Block a user