mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
quartz: Improve reference traces.
This commit is contained in:
parent
b3fb3a6739
commit
0717c96192
@ -394,7 +394,7 @@ static ULONG WINAPI DSoundRender_Release(IBaseFilter * iface)
|
||||
DSoundRenderImpl *This = (DSoundRenderImpl *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->refCount);
|
||||
|
||||
TRACE("(%p/%p)->() Release from %d\n", This, iface, refCount + 1);
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (!refCount)
|
||||
{
|
||||
|
@ -47,6 +47,8 @@ HRESULT IEnumPinsImpl_Construct(const ENUMPINDETAILS * pDetails, IEnumPins ** pp
|
||||
pEnumPins->uIndex = 0;
|
||||
CopyMemory(&pEnumPins->enumPinDetails, pDetails, sizeof(ENUMPINDETAILS));
|
||||
*ppEnum = (IEnumPins *)(&pEnumPins->lpVtbl);
|
||||
|
||||
TRACE("Created new enumerator (%p)\n", *ppEnum);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -77,7 +79,7 @@ static ULONG WINAPI IEnumPinsImpl_AddRef(IEnumPins * iface)
|
||||
IEnumPinsImpl *This = (IEnumPinsImpl *)iface;
|
||||
ULONG refCount = InterlockedIncrement(&This->refCount);
|
||||
|
||||
TRACE("()\n");
|
||||
TRACE("(%p)->() AddRef from %d\n", This, refCount - 1);
|
||||
|
||||
return refCount;
|
||||
}
|
||||
@ -87,7 +89,7 @@ static ULONG WINAPI IEnumPinsImpl_Release(IEnumPins * iface)
|
||||
IEnumPinsImpl *This = (IEnumPinsImpl *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->refCount);
|
||||
|
||||
TRACE("()\n");
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (!refCount)
|
||||
{
|
||||
|
@ -362,7 +362,7 @@ static ULONG WINAPI AsyncReader_AddRef(IBaseFilter * iface)
|
||||
AsyncReader *This = (AsyncReader *)iface;
|
||||
ULONG refCount = InterlockedIncrement(&This->refCount);
|
||||
|
||||
TRACE("(%p/%p)->() AddRef from %d\n", This, iface, refCount - 1);
|
||||
TRACE("(%p)->() AddRef from %d\n", This, refCount - 1);
|
||||
|
||||
return refCount;
|
||||
}
|
||||
@ -372,7 +372,7 @@ static ULONG WINAPI AsyncReader_Release(IBaseFilter * iface)
|
||||
AsyncReader *This = (AsyncReader *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->refCount);
|
||||
|
||||
TRACE("(%p/%p)->() Release from %d\n", This, iface, refCount + 1);
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (!refCount)
|
||||
{
|
||||
@ -751,7 +751,7 @@ static ULONG WINAPI FileAsyncReaderPin_Release(IPin * iface)
|
||||
FileAsyncReader *This = (FileAsyncReader *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->pin.pin.refCount);
|
||||
|
||||
TRACE("()\n");
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (!refCount)
|
||||
{
|
||||
|
@ -228,7 +228,7 @@ static ULONG WINAPI FilterMapper2_AddRef(IFilterMapper2 * iface)
|
||||
FilterMapper2Impl *This = (FilterMapper2Impl *)iface;
|
||||
ULONG refCount = InterlockedIncrement(&This->refCount);
|
||||
|
||||
TRACE("(%p)->()\n", iface);
|
||||
TRACE("(%p)->() AddRef from %d\n", This, refCount - 1);
|
||||
|
||||
return refCount;
|
||||
}
|
||||
@ -238,7 +238,7 @@ static ULONG WINAPI FilterMapper2_Release(IFilterMapper2 * iface)
|
||||
FilterMapper2Impl *This = (FilterMapper2Impl *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->refCount);
|
||||
|
||||
TRACE("(%p)->()\n", iface);
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (refCount == 0)
|
||||
{
|
||||
|
@ -179,7 +179,7 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
|
||||
ParserImpl *This = (ParserImpl *)iface;
|
||||
ULONG refCount = InterlockedDecrement(&This->refCount);
|
||||
|
||||
TRACE("(%p/%p)->() Release from %d\n", This, iface, refCount + 1);
|
||||
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
||||
|
||||
if (!refCount)
|
||||
{
|
||||
@ -195,7 +195,7 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface)
|
||||
HeapFree(GetProcessHeap(), 0, This->ppPins);
|
||||
This->lpVtbl = NULL;
|
||||
|
||||
TRACE("Destroying AVI splitter\n");
|
||||
TRACE("Destroying parser\n");
|
||||
CoTaskMemFree(This);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user