Commit ae8dc203 authored by Paul B Mahol's avatar Paul B Mahol Committed by Michael Niedermayer

pcm: check return value of avcodec_alloc_frame()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f913f378
......@@ -50,6 +50,8 @@ static av_cold int pcm_encode_init(AVCodecContext *avctx)
avctx->block_align = avctx->channels * avctx->bits_per_coded_sample/8;
avctx->coded_frame= avcodec_alloc_frame();
avctx->coded_frame->key_frame= 1;
if (!avctx->coded_frame)
return AVERROR(ENOMEM);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment