diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c index 855e4667526..9df01f2e7f0 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; }