Commit 5537c92f authored by Michael Niedermayer's avatar Michael Niedermayer

mpegvideoenc: check return value of ff_MPV_frame_start()

Fixes CID703622
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2472f3fa
......@@ -1501,7 +1501,8 @@ int ff_MPV_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
s->pict_type = s->new_picture.f.pict_type;
//emms_c();
ff_MPV_frame_start(s, avctx);
if (ff_MPV_frame_start(s, avctx) < 0)
return -1;
vbv_retry:
if (encode_picture(s, s->picture_number) < 0)
return -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