summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-13 21:19:52 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-13 21:19:52 +0200
commitf70a651b3f774166af545692fb83b5c27d98d169 (patch)
tree2886b5dbcde2cee8199ad9933bbf5dbde0fe5223 /libswscale
parent3689ec3d28d76b7a67a5d3838870dfd25cd2daad (diff)
sws-test: raise limigts a bit.
these cases arent used but theres no point in failing on them Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale-test.c b/libswscale/swscale-test.c
index dde94739f0..3484c9b771 100644
--- a/libswscale/swscale-test.c
+++ b/libswscale/swscale-test.c
@@ -317,7 +317,7 @@ static int fileTest(uint8_t *ref[4], int refStride[4], int w, int h, FILE *fp,
dstFormat = av_get_pix_fmt(dstStr);
if (srcFormat == AV_PIX_FMT_NONE || dstFormat == AV_PIX_FMT_NONE ||
- srcW > 1024U || srcH > 1024U || dstW > 1024U || dstH > 1024U) {
+ srcW > 8192U || srcH > 8192U || dstW > 8192U || dstH > 8192U) {
fprintf(stderr, "malformed input file\n");
return -1;
}