Commit b0c32a70 authored by Kostya Shishkov's avatar Kostya Shishkov

10l predictor should not skip first line

Originally committed as revision 6794 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b59cb456
......@@ -335,7 +335,7 @@ static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t
return -1;
}
if(value == 2){
src = pic->data[0] + pic->linesize[0];
src = pic->data[0];
stride = pic->linesize[0];
soff = s->bpp >> 3;
ssize = s->width * soff;
......
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