winegstreamer: Wake all streaming threads after seeking.

This commit is contained in:
Anton Baskanov 2023-11-26 18:53:25 +07:00 committed by Alexandre Julliard
parent 5d19955007
commit 54aef59931

View file

@ -1895,7 +1895,7 @@ static HRESULT WINAPI GST_Seeking_SetPositions(IMediaSeeking *iface,
EnterCriticalSection(&filter->streaming_cs);
filter->flushing = false;
LeaveCriticalSection(&filter->streaming_cs);
WakeConditionVariable(&filter->flushing_cv);
WakeAllConditionVariable(&filter->flushing_cv);
return S_OK;
}