Skip to content
Snippets Groups Projects
Commit 65892516 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/h264dec: use picture parameters in ff_print_debug_info2()

Fixes: out of array read
Fixes: 36341/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_fuzzer-6737583085322240

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg


Signed-off-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent c59b5e3d
No related branches found
No related tags found
No related merge requests found
......@@ -914,7 +914,7 @@ static int finalize_frame(H264Context *h, AVFrame *dst, H264Picture *out, int *g
out->qscale_table,
out->motion_val,
NULL,
h->mb_width, h->mb_height, h->mb_stride, 1);
out->mb_width, out->mb_height, out->mb_stride, 1);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment