[FFmpeg-devel] [PATCH] adxenc: check return value of avcodec_alloc_frame()
Paul B Mahol
onemda at gmail.com
Sat Jan 28 20:06:44 CET 2012
Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
libavcodec/adxenc.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/libavcodec/adxenc.c b/libavcodec/adxenc.c
index b029e2e..c6e4656 100644
--- a/libavcodec/adxenc.c
+++ b/libavcodec/adxenc.c
@@ -120,6 +120,8 @@ static av_cold int adx_encode_init(AVCodecContext *avctx)
avctx->frame_size = BLOCK_SAMPLES;
avctx->coded_frame = avcodec_alloc_frame();
+ if (!avctx->coded_frame)
+ return AVERROR(ENOMEM);
/* the cutoff can be adjusted, but this seems to work pretty well */
c->cutoff = 500;
--
1.7.7
More information about the ffmpeg-devel
mailing list