Browse Source

lavc/libopenjpegenc: check av_frame_alloc() failure.

tags/n2.2-rc1
Nicolas George 12 years ago
parent
commit
97af2faaba
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/libopenjpegenc.c

+ 2
- 0
libavcodec/libopenjpegenc.c View File

@@ -502,6 +502,8 @@ static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
case AV_PIX_FMT_GBRP14:
case AV_PIX_FMT_GBRP16:
gbrframe = av_frame_alloc();
if (!gbrframe)
return AVERROR(ENOMEM);
av_frame_ref(gbrframe, frame);
gbrframe->data[0] = frame->data[2]; // swap to be rgb
gbrframe->data[1] = frame->data[0];


Loading…
Cancel
Save