Commit 081cc5d8 authored by bcoudurier's avatar bcoudurier

fix decoding position

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6900 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
No related merge requests found
......@@ -111,7 +111,7 @@ static int gif_read_image(GifState *s)
/* read all the image */
linesize = s->picture.linesize[0];
ptr1 = s->picture.data[0] + top * linesize + (left * 3);
ptr1 = s->picture.data[0] + top * linesize + left;
ptr = ptr1;
pass = 0;
y1 = 0;
......
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