[FFmpeg-devel] [PATCH] ac3enc: check return value of avcodec_alloc_frame()

Paul B Mahol onemda at gmail.com
Sat Jan 28 20:04:35 CET 2012


Signed-off-by: Paul B Mahol <onemda at gmail.com>
---
 libavcodec/ac3enc.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 93a0882..2f1e7c8 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -2466,6 +2466,8 @@ av_cold int ff_ac3_encode_init(AVCodecContext *avctx)
         goto init_fail;
 
     avctx->coded_frame= avcodec_alloc_frame();
+    if (!avctx->coded_frame)
+        goto init_fail;
 
     dsputil_init(&s->dsp, avctx);
     ff_ac3dsp_init(&s->ac3dsp, avctx->flags & CODEC_FLAG_BITEXACT);
-- 
1.7.7



More information about the ffmpeg-devel mailing list