mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavc/libopenjpegenc: check av_frame_alloc() failure.
This commit is contained in:
parent
a91394f4de
commit
97af2faaba
@ -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…
Reference in New Issue
Block a user