mirror of https://git.ffmpeg.org/ffmpeg.git
libtheora: Check frame allocation
This commit is contained in:
parent
a72d93daa0
commit
17c45d4d05
|
@ -260,6 +260,8 @@ static av_cold int encode_init(AVCodecContext* avc_context)
|
|||
|
||||
/* Set up the output AVFrame */
|
||||
avc_context->coded_frame = av_frame_alloc();
|
||||
if (!avc_context->coded_frame)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue