Maarten Lankhorst : quartz: Call run before pausing in transform filter.

Alexandre Julliard julliard at winehq.org
Thu Jul 10 08:58:53 CDT 2008


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

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Wed Jul  9 12:57:10 2008 -0700

quartz: Call run before pausing in transform filter.

---

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

diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c
index 855e466..9df01f2 100644
--- a/dlls/quartz/transform.c
+++ b/dlls/quartz/transform.c
@@ -337,7 +337,7 @@ static HRESULT WINAPI TransformFilter_Pause(IBaseFilter * iface)
     EnterCriticalSection(&This->csFilter);
     {
         if (This->state == State_Stopped)
-            ((InputPin *)This->ppPins[0])->end_of_stream = 0;
+            IBaseFilter_Run(iface, -1);
 
         This->state = State_Paused;
     }




More information about the wine-cvs mailing list