Module: wine Branch: master Commit: 134d8a026a3b7d05f92223009ab95023c73101f2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=134d8a026a3b7d05f92223009a...
Author: Chris Robinson chris.kcat@gmail.com Date: Tue Feb 13 14:37:52 2007 -0800
quartz: Remove 1GB AVI size limitation.
---
dlls/quartz/avisplit.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/dlls/quartz/avisplit.c b/dlls/quartz/avisplit.c index 68a91ff..e90035d 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");