Commit 11e2b1ab authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Make sure transform filter commits allocator.

parent 6e4288ee
...@@ -349,7 +349,7 @@ static HRESULT WINAPI TransformFilter_Pause(IBaseFilter * iface) ...@@ -349,7 +349,7 @@ static HRESULT WINAPI TransformFilter_Pause(IBaseFilter * iface)
EnterCriticalSection(&This->csFilter); EnterCriticalSection(&This->csFilter);
{ {
if (This->state == State_Stopped) if (This->state == State_Stopped)
((InputPin *)This->ppPins[0])->end_of_stream = 0; IBaseFilter_Run(iface, -1);
This->state = State_Paused; This->state = State_Paused;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment