Browse Source

pcm: check return value of avcodec_alloc_frame()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Paul B Mahol Michael Niedermayer 13 years ago
parent
commit
ae8dc203b2
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/pcm.c

+ 2
- 0
libavcodec/pcm.c View File

@@ -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;
}


Loading…
Cancel
Save