[FFmpeg-cvslog] gifdec: pass avctx to av_log()

Paul B Mahol git at videolan.org
Tue Aug 7 22:59:07 CEST 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Aug  7 03:43:55 2012 +0000| [3662f787e7b1b87bc1fc67c9db60ff341651e343] | committer: Paul B Mahol

gifdec: pass avctx to av_log()

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavcodec/gifdec.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c
index 046ed19..cc8e9ee 100644
--- a/libavcodec/gifdec.c
+++ b/libavcodec/gifdec.c
@@ -56,7 +56,7 @@ typedef struct GifState {
     uint8_t global_palette[256 * 3];
     uint8_t local_palette[256 * 3];
 
-  AVCodecContext* avctx;
+    AVCodecContext *avctx;
 } GifState;
 
 static const uint8_t gif87a_sig[6] = "GIF87a";
@@ -220,7 +220,7 @@ static int gif_read_header1(GifState *s)
     s->screen_height = bytestream_get_le16(&s->bytestream);
     if(   (unsigned)s->screen_width  > 32767
        || (unsigned)s->screen_height > 32767){
-        av_log(NULL, AV_LOG_ERROR, "picture size too large\n");
+        av_log(s->avctx, AV_LOG_ERROR, "picture size too large\n");
         return -1;
     }
 



More information about the ffmpeg-cvslog mailing list