mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
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:
parent
bc588e9c52
commit
68d3558830
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue