mpegvideoenc: check return value of ff_MPV_frame_start()

Fixes CID703622
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/6/merge
Michael Niedermayer 12 years ago
parent 2472f3facb
commit 5537c92f84
  1. 3
      libavcodec/mpegvideo_enc.c

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

Loading…
Cancel
Save