dsound: Fix refcounting for the secondary buffer object.
This fixes a regression introduced in 6b64e0090c
.
This commit is contained in:
parent
cb9fa1eb7a
commit
6d7c38256f
|
@ -374,6 +374,10 @@ static ULONG WINAPI IDirectSoundBufferImpl_AddRef(IDirectSoundBuffer8 *iface)
|
||||||
ULONG ref = InterlockedIncrement(&This->ref);
|
ULONG ref = InterlockedIncrement(&This->ref);
|
||||||
|
|
||||||
TRACE("(%p) ref was %d\n", This, ref - 1);
|
TRACE("(%p) ref was %d\n", This, ref - 1);
|
||||||
|
|
||||||
|
if(ref == 1)
|
||||||
|
InterlockedIncrement(&This->numIfaces);
|
||||||
|
|
||||||
return ref;
|
return ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -384,28 +388,9 @@ static ULONG WINAPI IDirectSoundBufferImpl_Release(IDirectSoundBuffer8 *iface)
|
||||||
|
|
||||||
TRACE("(%p) ref was %d\n", This, ref + 1);
|
TRACE("(%p) ref was %d\n", This, ref + 1);
|
||||||
|
|
||||||
if (!ref) {
|
if (!ref && !InterlockedDecrement(&This->numIfaces))
|
||||||
DirectSoundDevice_RemoveBuffer(This->device, This);
|
secondarybuffer_destroy(This);
|
||||||
RtlDeleteResource(&This->lock);
|
|
||||||
|
|
||||||
if (This->hwbuf)
|
|
||||||
IDsDriverBuffer_Release(This->hwbuf);
|
|
||||||
if (!This->hwbuf || (This->device->drvdesc.dwFlags & DSDDESC_USESYSTEMMEMORY)) {
|
|
||||||
This->buffer->ref--;
|
|
||||||
list_remove(&This->entry);
|
|
||||||
if (This->buffer->ref==0) {
|
|
||||||
HeapFree(GetProcessHeap(),0,This->buffer->memory);
|
|
||||||
HeapFree(GetProcessHeap(),0,This->buffer);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
HeapFree(GetProcessHeap(), 0, This->tmp_buffer);
|
|
||||||
HeapFree(GetProcessHeap(), 0, This->notifies);
|
|
||||||
HeapFree(GetProcessHeap(), 0, This->pwfx);
|
|
||||||
HeapFree(GetProcessHeap(), 0, This);
|
|
||||||
|
|
||||||
TRACE("(%p) released\n", This);
|
|
||||||
}
|
|
||||||
return ref;
|
return ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -971,6 +956,7 @@ HRESULT IDirectSoundBufferImpl_Create(
|
||||||
TRACE("Created buffer at %p\n", dsb);
|
TRACE("Created buffer at %p\n", dsb);
|
||||||
|
|
||||||
dsb->ref = 1;
|
dsb->ref = 1;
|
||||||
|
dsb->numIfaces = 1;
|
||||||
dsb->device = device;
|
dsb->device = device;
|
||||||
dsb->IDirectSoundBuffer8_iface.lpVtbl = &dsbvt;
|
dsb->IDirectSoundBuffer8_iface.lpVtbl = &dsbvt;
|
||||||
dsb->iks = NULL;
|
dsb->iks = NULL;
|
||||||
|
@ -1123,6 +1109,30 @@ HRESULT IDirectSoundBufferImpl_Create(
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void secondarybuffer_destroy(IDirectSoundBufferImpl *This)
|
||||||
|
{
|
||||||
|
DirectSoundDevice_RemoveBuffer(This->device, This);
|
||||||
|
RtlDeleteResource(&This->lock);
|
||||||
|
|
||||||
|
if (This->hwbuf)
|
||||||
|
IDsDriverBuffer_Release(This->hwbuf);
|
||||||
|
if (!This->hwbuf || (This->device->drvdesc.dwFlags & DSDDESC_USESYSTEMMEMORY)) {
|
||||||
|
This->buffer->ref--;
|
||||||
|
list_remove(&This->entry);
|
||||||
|
if (This->buffer->ref == 0) {
|
||||||
|
HeapFree(GetProcessHeap(), 0, This->buffer->memory);
|
||||||
|
HeapFree(GetProcessHeap(), 0, This->buffer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
HeapFree(GetProcessHeap(), 0, This->tmp_buffer);
|
||||||
|
HeapFree(GetProcessHeap(), 0, This->notifies);
|
||||||
|
HeapFree(GetProcessHeap(), 0, This->pwfx);
|
||||||
|
HeapFree(GetProcessHeap(), 0, This);
|
||||||
|
|
||||||
|
TRACE("(%p) released\n", This);
|
||||||
|
}
|
||||||
|
|
||||||
HRESULT IDirectSoundBufferImpl_Destroy(
|
HRESULT IDirectSoundBufferImpl_Destroy(
|
||||||
IDirectSoundBufferImpl *pdsb)
|
IDirectSoundBufferImpl *pdsb)
|
||||||
{
|
{
|
||||||
|
@ -1130,7 +1140,7 @@ HRESULT IDirectSoundBufferImpl_Destroy(
|
||||||
|
|
||||||
/* This keeps the *_Destroy functions from possibly deleting
|
/* This keeps the *_Destroy functions from possibly deleting
|
||||||
* this object until it is ready to be deleted */
|
* this object until it is ready to be deleted */
|
||||||
IDirectSoundBufferImpl_AddRef(&pdsb->IDirectSoundBuffer8_iface);
|
InterlockedIncrement(&pdsb->numIfaces);
|
||||||
|
|
||||||
if (pdsb->iks) {
|
if (pdsb->iks) {
|
||||||
WARN("iks not NULL\n");
|
WARN("iks not NULL\n");
|
||||||
|
@ -1150,7 +1160,7 @@ HRESULT IDirectSoundBufferImpl_Destroy(
|
||||||
pdsb->notify = NULL;
|
pdsb->notify = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (IDirectSoundBuffer8_Release(&pdsb->IDirectSoundBuffer8_iface) > 0);
|
secondarybuffer_destroy(pdsb);
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
@ -1196,6 +1206,7 @@ HRESULT IDirectSoundBufferImpl_Duplicate(
|
||||||
dsb->buffer->ref++;
|
dsb->buffer->ref++;
|
||||||
list_add_head(&dsb->buffer->buffers, &dsb->entry);
|
list_add_head(&dsb->buffer->buffers, &dsb->entry);
|
||||||
dsb->ref = 1;
|
dsb->ref = 1;
|
||||||
|
dsb->numIfaces = 1;
|
||||||
dsb->state = STATE_STOPPED;
|
dsb->state = STATE_STOPPED;
|
||||||
dsb->buf_mixpos = dsb->sec_mixpos = 0;
|
dsb->buf_mixpos = dsb->sec_mixpos = 0;
|
||||||
dsb->notify = NULL;
|
dsb->notify = NULL;
|
||||||
|
|
|
@ -159,6 +159,7 @@ HRESULT DirectSoundDevice_VerifyCertification(DirectSoundDevice * device,
|
||||||
struct IDirectSoundBufferImpl
|
struct IDirectSoundBufferImpl
|
||||||
{
|
{
|
||||||
IDirectSoundBuffer8 IDirectSoundBuffer8_iface;
|
IDirectSoundBuffer8 IDirectSoundBuffer8_iface;
|
||||||
|
LONG numIfaces; /* "in use interfaces" refcount */
|
||||||
LONG ref;
|
LONG ref;
|
||||||
/* IDirectSoundBufferImpl fields */
|
/* IDirectSoundBufferImpl fields */
|
||||||
DirectSoundDevice* device;
|
DirectSoundDevice* device;
|
||||||
|
@ -206,6 +207,7 @@ HRESULT IDirectSoundBufferImpl_Duplicate(
|
||||||
DirectSoundDevice *device,
|
DirectSoundDevice *device,
|
||||||
IDirectSoundBufferImpl **ppdsb,
|
IDirectSoundBufferImpl **ppdsb,
|
||||||
IDirectSoundBufferImpl *pdsb) DECLSPEC_HIDDEN;
|
IDirectSoundBufferImpl *pdsb) DECLSPEC_HIDDEN;
|
||||||
|
void secondarybuffer_destroy(IDirectSoundBufferImpl *This) DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* PrimaryBuffer implementation structure
|
* PrimaryBuffer implementation structure
|
||||||
|
|
|
@ -335,7 +335,12 @@ static ULONG WINAPI IDirectSound3DBufferImpl_AddRef(LPDIRECTSOUND3DBUFFER iface)
|
||||||
{
|
{
|
||||||
IDirectSound3DBufferImpl *This = (IDirectSound3DBufferImpl *)iface;
|
IDirectSound3DBufferImpl *This = (IDirectSound3DBufferImpl *)iface;
|
||||||
ULONG ref = InterlockedIncrement(&(This->ref));
|
ULONG ref = InterlockedIncrement(&(This->ref));
|
||||||
|
|
||||||
TRACE("(%p) ref was %d\n", This, ref - 1);
|
TRACE("(%p) ref was %d\n", This, ref - 1);
|
||||||
|
|
||||||
|
if(ref == 1)
|
||||||
|
InterlockedIncrement(&This->dsb->numIfaces);
|
||||||
|
|
||||||
return ref;
|
return ref;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -347,7 +352,8 @@ static ULONG WINAPI IDirectSound3DBufferImpl_Release(LPDIRECTSOUND3DBUFFER iface
|
||||||
|
|
||||||
if (!ref) {
|
if (!ref) {
|
||||||
This->dsb->ds3db = NULL;
|
This->dsb->ds3db = NULL;
|
||||||
IDirectSoundBuffer_Release((LPDIRECTSOUNDBUFFER8)This->dsb);
|
if (!InterlockedDecrement(&This->dsb->numIfaces))
|
||||||
|
secondarybuffer_destroy(This->dsb);
|
||||||
HeapFree(GetProcessHeap(), 0, This);
|
HeapFree(GetProcessHeap(), 0, This);
|
||||||
TRACE("(%p) released\n", This);
|
TRACE("(%p) released\n", This);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue