Maarten Lankhorst : quartz: Don't pass reference time when running.

Alexandre Julliard julliard at winehq.org
Thu Mar 20 09:48:19 CDT 2008


Module: wine
Branch: master
Commit: 366eca51df96b9fa5c1f63cd93c4162b46151ce2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=366eca51df96b9fa5c1f63cd93c4162b46151ce2

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Wed Mar 19 17:46:15 2008 -0700

quartz: Don't pass reference time when running.

---

 dlls/quartz/parser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/quartz/parser.c b/dlls/quartz/parser.c
index da664ac..1531431 100644
--- a/dlls/quartz/parser.c
+++ b/dlls/quartz/parser.c
@@ -332,7 +332,7 @@ static HRESULT WINAPI Parser_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
 
         This->rtStreamStart = tStart;
 
-        hr = PullPin_Seek(This->pInputPin, tStart, ((LONGLONG)0x7fffffff << 32) | 0xffffffff);
+        hr = PullPin_Seek(This->pInputPin, 0, ((LONGLONG)0x7fffffff << 32) | 0xffffffff);
 
         if (SUCCEEDED(hr) && (This->state == State_Stopped))
         {




More information about the wine-cvs mailing list