Anton Baskanov : winegstreamer: Wake all streaming threads after seeking.
Module: wine Branch: master Commit: 54aef5993141e415aa8858865a797543fc09dfdd URL: https://gitlab.winehq.org/wine/wine/-/commit/54aef5993141e415aa8858865a79754... Author: Anton Baskanov <baskanov(a)gmail.com> Date: Sun Nov 26 18:53:25 2023 +0700 winegstreamer: Wake all streaming threads after seeking. --- dlls/winegstreamer/quartz_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winegstreamer/quartz_parser.c b/dlls/winegstreamer/quartz_parser.c index 596f7a5011a..e402e1aab52 100644 --- a/dlls/winegstreamer/quartz_parser.c +++ b/dlls/winegstreamer/quartz_parser.c @@ -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; }
participants (1)
-
Alexandre Julliard