Browse Source

Fix decoding of interlaced gif, e.g. http://samples.mplayerhq.hu/GIF/7up.gif

Originally committed as revision 12297 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Reimar Döffinger 18 years ago
parent
commit
e7a5e2f626
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      libavformat/gifdec.c

+ 2
- 5
libavformat/gifdec.c View File

@@ -364,11 +364,8 @@ static int gif_read_image(GifState *s)
y1 += 8;
ptr += linesize * 8;
if (y1 >= height) {
y1 = 4;
if (pass == 0)
ptr = ptr1 + linesize * 4;
else
ptr = ptr1 + linesize * 2;
y1 = pass == 0 ? 4 : 2;
ptr = ptr1 + linesize * y1;
pass++;
}
break;


Loading…
Cancel
Save