# HG changeset patch # User kostya # Date 1163395850 0 # Node ID 7120f779d313062039b2af0c5ed49c20b98d86d4 # Parent cfaa5d84641e11b8a1c8afc12553e66a987df827 Rows per strip may be >= height diff -r cfaa5d84641e -r 7120f779d313 tiff.c --- a/tiff.c Mon Nov 13 05:29:45 2006 +0000 +++ b/tiff.c Mon Nov 13 05:30:50 2006 +0000 @@ -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; }