Commit 93db2708 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: Fix null pointer dereference in do_video_out()

Fixes: CID1295087
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0cab0931
......@@ -1031,6 +1031,9 @@ static void do_video_out(AVFormatContext *s,
} else
in_picture = next_picture;
if (!in_picture)
return;
in_picture->pts = ost->sync_opts;
#if 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment