mpegvideoenc: check return value of ff_MPV_frame_start()

Fixes CID703622
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-18 21:42:31 +02:00
parent 2472f3facb
commit 5537c92f84
1 changed files with 2 additions and 1 deletions

View File

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