quartz: Clarify debug strings.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a1b0d92587
commit
4fefafe5cd
|
@ -690,14 +690,14 @@ static HRESULT WINAPI FilterGraph2_ConnectDirect(IFilterGraph2 *iface, IPin *ppi
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return hr;
|
return hr;
|
||||||
|
|
||||||
TRACE("Filter owning first pin => %p\n", PinInfo.pFilter);
|
TRACE("Filter owning ppinIn(%p) => %p\n", ppinIn, PinInfo.pFilter);
|
||||||
IBaseFilter_Release(PinInfo.pFilter);
|
IBaseFilter_Release(PinInfo.pFilter);
|
||||||
|
|
||||||
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return hr;
|
return hr;
|
||||||
|
|
||||||
TRACE("Filter owning second pin => %p\n", PinInfo.pFilter);
|
TRACE("Filter owning ppinOut(%p) => %p\n", ppinOut, PinInfo.pFilter);
|
||||||
IBaseFilter_Release(PinInfo.pFilter);
|
IBaseFilter_Release(PinInfo.pFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -919,14 +919,14 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut,
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return hr;
|
return hr;
|
||||||
|
|
||||||
TRACE("Filter owning first pin => %p\n", PinInfo.pFilter);
|
TRACE("Filter owning ppinIn(%p) => %p\n", ppinIn, PinInfo.pFilter);
|
||||||
IBaseFilter_Release(PinInfo.pFilter);
|
IBaseFilter_Release(PinInfo.pFilter);
|
||||||
|
|
||||||
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return hr;
|
return hr;
|
||||||
|
|
||||||
TRACE("Filter owning second pin => %p\n", PinInfo.pFilter);
|
TRACE("Filter owning ppinOut(%p) => %p\n", ppinOut, PinInfo.pFilter);
|
||||||
IBaseFilter_Release(PinInfo.pFilter);
|
IBaseFilter_Release(PinInfo.pFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -947,6 +947,8 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut,
|
||||||
{
|
{
|
||||||
IPin *temp;
|
IPin *temp;
|
||||||
|
|
||||||
|
TRACE("Directions seem backwards, swapping pins\n");
|
||||||
|
|
||||||
temp = ppinIn;
|
temp = ppinIn;
|
||||||
ppinIn = ppinOut;
|
ppinIn = ppinOut;
|
||||||
ppinOut = temp;
|
ppinOut = temp;
|
||||||
|
|
Loading…
Reference in New Issue