mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-08 05:28:40 +00:00
libopencore-amr: check return value of avcodec_alloc_frame()
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a136c2cf3e
commit
766e160e87
@ -196,6 +196,8 @@ static av_cold int amr_nb_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
avctx->frame_size = 160;
|
avctx->frame_size = 160;
|
||||||
avctx->coded_frame = avcodec_alloc_frame();
|
avctx->coded_frame = avcodec_alloc_frame();
|
||||||
|
if (!avctx->coded_frame)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
s->enc_state = Encoder_Interface_init(s->enc_dtx);
|
s->enc_state = Encoder_Interface_init(s->enc_dtx);
|
||||||
if (!s->enc_state) {
|
if (!s->enc_state) {
|
||||||
|
Loading…
Reference in New Issue
Block a user