lavc/mjpegenc: check av_frame_alloc() failure.

pull/50/merge
Nicolas George 11 years ago
parent 97af2faaba
commit 19a2d101ac
  1. 2
      libavcodec/mjpegenc.c

@ -548,6 +548,8 @@ static int amv_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
return -1;
pic = av_frame_alloc();
if (!pic)
return AVERROR(ENOMEM);
av_frame_ref(pic, pic_arg);
//picture should be flipped upside-down
for(i=0; i < 3; i++) {

Loading…
Cancel
Save