winegstreamer: Wake thread when async reader user clock is modified.

This commit is contained in:
Rémi Bernon 2022-08-22 14:00:09 +02:00 committed by Alexandre Julliard
parent af0fa4b8a8
commit 4a1e95c814

View file

@ -560,6 +560,7 @@ static HRESULT WINAPI WMReaderAdvanced_SetUserProvidedClock(IWMReaderAdvanced6 *
EnterCriticalSection(&reader->callback_cs);
reader->user_clock = !!user_clock;
LeaveCriticalSection(&reader->callback_cs);
WakeConditionVariable(&reader->callback_cv);
return S_OK;
}