[FFmpeg-cvslog] mdutils: print error message on error get_buffer related errors

Michael Niedermayer git at videolan.org
Wed Jul 4 01:12:24 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Jul  4 00:45:37 2012 +0200| [f91b7d803019b6fa856216d6e2ac2215d5e99073] | committer: Michael Niedermayer

mdutils: print error message on error get_buffer related errors

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f91b7d803019b6fa856216d6e2ac2215d5e99073
---

 cmdutils.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cmdutils.c b/cmdutils.c
index 36f82c9..8b2bcd7 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1254,6 +1254,7 @@ static int alloc_buffer(FrameBuffer **pool, AVCodecContext *s, FrameBuffer **pbu
     if ((ret = av_image_alloc(buf->base, buf->linesize, w, h,
                               s->pix_fmt, 32)) < 0) {
         av_freep(&buf);
+        av_log(s, AV_LOG_ERROR, "alloc_buffer: av_image_alloc() failed\n");
         return ret;
     }
     /* XXX this shouldn't be needed, but some tests break without this line
@@ -1289,8 +1290,10 @@ int codec_get_buffer(AVCodecContext *s, AVFrame *frame)
     FrameBuffer *buf;
     int ret, i;
 
-    if(av_image_check_size(s->width, s->height, 0, s) || s->pix_fmt<0)
+    if(av_image_check_size(s->width, s->height, 0, s) || s->pix_fmt<0) {
+        av_log(s, AV_LOG_ERROR, "codec_get_buffer: image parameters invalid\n");
         return -1;
+    }
 
     if (!*pool && (ret = alloc_buffer(pool, s, pool)) < 0)
         return ret;



More information about the ffmpeg-cvslog mailing list