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

This commit is contained in:
Lei Zhang 2008-11-13 17:52:51 -08:00 committed by Alexandre Julliard
parent ce3af50d10
commit 62a0bd65d2
1 changed files with 2 additions and 3 deletions

View File

@ -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++)