Commit 68d35588 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

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: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent bc588e9c
......@@ -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);
......
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