Commit 4fefafe5 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

quartz: Clarify debug strings.

parent a1b0d925
...@@ -690,14 +690,14 @@ static HRESULT WINAPI FilterGraph2_ConnectDirect(IFilterGraph2 *iface, IPin *ppi ...@@ -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, ...@@ -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, ...@@ -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;
......
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