Commit 62a0bd65 authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

quartz: Reaching a renderer in the filtergraph is not an error.

parent ce3af50d
...@@ -1030,9 +1030,8 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut, ...@@ -1030,9 +1030,8 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut,
if (SUCCEEDED(hr)) { if (SUCCEEDED(hr)) {
unsigned int i; unsigned int i;
if (nb == 0) { if (nb == 0) {
IPin_Disconnect(ppinfilter); TRACE("Reached a renderer\n");
IPin_Disconnect(ppinOut); break;
goto error;
} }
TRACE("pins to consider: %d\n", nb); TRACE("pins to consider: %d\n", nb);
for(i = 0; i < nb; i++) for(i = 0; i < nb; i++)
......
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