Commit 735c8272 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

quartz: Increase the initial streaming delay to 200 ms.

This matches native, and gstreamer can be slow enough to start up that a bit of extra time would be useful. Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent df8eabc0
......@@ -4903,7 +4903,7 @@ static HRESULT WINAPI MediaFilter_Run(IMediaFilter *iface, REFERENCE_TIME start)
IReferenceClock_GetTime(graph->refClock, &graph->stream_start);
stream_start = graph->stream_start - graph->stream_elapsed;
if (graph->state == State_Stopped)
stream_start += 500000;
stream_start += 200 * 10000;
}
LIST_FOR_EACH_ENTRY(filter, &graph->filters, struct filter, entry)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment