summaryrefslogtreecommitdiff
path: root/libavcodec/gifdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/gifdec.c')
-rw-r--r--libavcodec/gifdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c
index e5e84aea12..b0254decd1 100644
--- a/libavcodec/gifdec.c
+++ b/libavcodec/gifdec.c
@@ -410,10 +410,11 @@ static int gif_read_header1(GifState *s)
static int gif_parse_next_image(GifState *s, int *got_picture)
{
- int ret;
+
*got_picture = 1;
while (bytestream2_get_bytes_left(&s->gb)) {
int code = bytestream2_get_byte(&s->gb);
+ int ret;
av_dlog(s->avctx, "code=%02x '%c'\n", code, code);