You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
fix decoding position
Originally committed as revision 6900 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user