[Ffmpeg-cvslog] r7004 - trunk/libavcodec/tiff.c
kostya
subversion
Mon Nov 13 06:30:51 CET 2006
Author: kostya
Date: Mon Nov 13 06:30:50 2006
New Revision: 7004
Modified:
trunk/libavcodec/tiff.c
Log:
Rows per strip may be >= height
Modified: trunk/libavcodec/tiff.c
==============================================================================
--- trunk/libavcodec/tiff.c (original)
+++ trunk/libavcodec/tiff.c Mon Nov 13 06:30:50 2006
@@ -292,7 +292,7 @@
}
break;
case TIFF_ROWSPERSTRIP:
- if(value < 1 || value > s->height){
+ if(value < 1){
av_log(s->avctx, AV_LOG_ERROR, "Incorrect value of rows per strip\n");
return -1;
}
More information about the ffmpeg-cvslog
mailing list