[Ffmpeg-cvslog] r6794 - trunk/libavcodec/tiff.c

kostya subversion
Thu Oct 26 06:06:09 CEST 2006


Author: kostya
Date: Thu Oct 26 06:06:08 2006
New Revision: 6794

Modified:
   trunk/libavcodec/tiff.c

Log:
10l predictor should not skip first line

Modified: trunk/libavcodec/tiff.c
==============================================================================
--- trunk/libavcodec/tiff.c	(original)
+++ trunk/libavcodec/tiff.c	Thu Oct 26 06:06:08 2006
@@ -335,7 +335,7 @@
             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;




More information about the ffmpeg-cvslog mailing list