From 134d8a026a3b7d05f92223009ab95023c73101f2 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 13 Feb 2007 14:37:52 -0800 Subject: [PATCH] quartz: Remove 1GB AVI size limitation. --- dlls/quartz/avisplit.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dlls/quartz/avisplit.c b/dlls/quartz/avisplit.c index 68a91ff6d16..e90035d5fca 100644 --- a/dlls/quartz/avisplit.c +++ b/dlls/quartz/avisplit.c @@ -482,11 +482,6 @@ static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin) ERR("Input stream not a RIFF file\n"); return E_FAIL; } - if (list.cb > 1 * 1024 * 1024 * 1024) /* cannot be more than 1Gb in size */ - { - ERR("Input stream violates RIFF spec\n"); - return E_FAIL; - } if (list.fccListType != ckidAVI) { ERR("Input stream not an AVI RIFF file\n");