diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-26 04:06:08 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-26 04:06:08 +0000 |
commit | b0c32a70b4ef12a5317841f83128a0597320577f (patch) | |
tree | a1c4daa97602d545db1a82e7ae6e001179ec1b76 | |
parent | b59cb45632165d6dba401341d4c45de044c72b16 (diff) | |
download | ffmpeg-b0c32a70b4ef12a5317841f83128a0597320577f.tar.gz |
10l predictor should not skip first line
Originally committed as revision 6794 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 4fa54bb7b1..41182d0091 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -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; |