quartz: Avoid autoplugging renderers in IGraphBuilder::Connect().

I don't know of an application that this helps, but it seems like an
optimization worth performing.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2020-11-24 00:18:01 -06:00 committed by Alexandre Julliard
parent bc588e9c52
commit 68d3558830

View file

@ -1397,7 +1397,7 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *source, I
EnterCriticalSection(&graph->cs);
hr = autoplug(graph, source, sink, FALSE, 0);
hr = autoplug(graph, source, sink, TRUE, 0);
LeaveCriticalSection(&graph->cs);