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))
|
||||
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);
|
||||
|
||||
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
||||
if (FAILED(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);
|
||||
}
|
||||
|
||||
|
@ -919,14 +919,14 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut,
|
|||
if (FAILED(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);
|
||||
|
||||
hr = IPin_QueryPinInfo(ppinOut, &PinInfo);
|
||||
if (FAILED(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);
|
||||
}
|
||||
|
||||
|
@ -947,6 +947,8 @@ static HRESULT WINAPI FilterGraph2_Connect(IFilterGraph2 *iface, IPin *ppinOut,
|
|||
{
|
||||
IPin *temp;
|
||||
|
||||
TRACE("Directions seem backwards, swapping pins\n");
|
||||
|
||||
temp = ppinIn;
|
||||
ppinIn = ppinOut;
|
||||
ppinOut = temp;
|
||||
|
|
Loading…
Reference in New Issue