23 Feb
2026
23 Feb
'26
9:10 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mf/clock.c:
return hr; }
+static struct clock_timer *presentation_clock_next_timer(struct presentation_clock *clock, LONGLONG time) +{ + struct clock_timer *timer; + + LIST_FOR_EACH_ENTRY(timer, &clock->timers, struct clock_timer, entry) + { + if (timer->time <= time + 50000) + return timer; + }
Why 50000? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10095#note_130248