summaryrefslogtreecommitdiff
path: root/libavcodec/gifdec.c
diff options
context:
space:
mode:
authorNi Hui <shuizhuyuanluo@126.com>2015-11-10 22:03:36 +0800
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-10 23:21:27 +0100
commit3ea60c505f3f6d489d31170d1fb40b4083c5074d (patch)
treedac66622239f369ef8fa21aba0c702ea855329c0 /libavcodec/gifdec.c
parentc75640e9c9e1d4fb6f043ec5f8fc16bc06a885df (diff)
avcodec/gifdec: skip the data lzw consumed
this fixes the return code of avcodec_decode_video2 for gif decoding and the gif frame data buffer is skipped properly Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/gifdec.c')
-rw-r--r--libavcodec/gifdec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c
index 9f2e6eb3b7..20ae903a33 100644
--- a/libavcodec/gifdec.c
+++ b/libavcodec/gifdec.c
@@ -130,7 +130,7 @@ static void gif_copy_img_rect(const uint32_t *src, uint32_t *dst,
static int gif_read_image(GifState *s, AVFrame *frame)
{
int left, top, width, height, bits_per_pixel, code_size, flags, pw;
- int is_interleaved, has_local_palette, y, pass, y1, linesize, pal_size;
+ int is_interleaved, has_local_palette, y, pass, y1, linesize, pal_size, lzwed_len;
uint32_t *ptr, *pal, *px, *pr, *ptr1;
int ret;
uint8_t *idx;
@@ -293,7 +293,8 @@ static int gif_read_image(GifState *s, AVFrame *frame)
decode_tail:
/* read the garbage data until end marker is found */
- ff_lzw_decode_tail(s->lzw);
+ lzwed_len = ff_lzw_decode_tail(s->lzw);
+ bytestream2_skipu(&s->gb, lzwed_len);
/* Graphic Control Extension's scope is single frame.
* Remove its influence. */