quartz: Call run before pausing in transform filter.

This commit is contained in:
Maarten Lankhorst 2008-07-09 12:57:10 -07:00 committed by Alexandre Julliard
parent 86393897a8
commit e47bc7725e

View file

@ -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;
}