Commit 3662f787 authored by Paul B Mahol's avatar Paul B Mahol

gifdec: pass avctx to av_log()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7a72695c
...@@ -56,7 +56,7 @@ typedef struct GifState { ...@@ -56,7 +56,7 @@ typedef struct GifState {
uint8_t global_palette[256 * 3]; uint8_t global_palette[256 * 3];
uint8_t local_palette[256 * 3]; uint8_t local_palette[256 * 3];
AVCodecContext* avctx; AVCodecContext *avctx;
} GifState; } GifState;
static const uint8_t gif87a_sig[6] = "GIF87a"; static const uint8_t gif87a_sig[6] = "GIF87a";
...@@ -220,7 +220,7 @@ static int gif_read_header1(GifState *s) ...@@ -220,7 +220,7 @@ static int gif_read_header1(GifState *s)
s->screen_height = bytestream_get_le16(&s->bytestream); s->screen_height = bytestream_get_le16(&s->bytestream);
if( (unsigned)s->screen_width > 32767 if( (unsigned)s->screen_width > 32767
|| (unsigned)s->screen_height > 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; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment