mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
541 lines
18 KiB
C
541 lines
18 KiB
C
/*
|
|
* IDirectMusicInstrument Implementation
|
|
*
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "dmusic_private.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
|
|
|
|
static const GUID IID_IDirectMusicInstrumentPRIVATE = { 0xbcb20080, 0xa40c, 0x11d1, { 0x86, 0xbc, 0x00, 0xc0, 0x4f, 0xbf, 0x8f, 0xef } };
|
|
|
|
struct articulation
|
|
{
|
|
struct list entry;
|
|
CONNECTIONLIST list;
|
|
CONNECTION connections[];
|
|
};
|
|
|
|
C_ASSERT(sizeof(struct articulation) == offsetof(struct articulation, connections[0]));
|
|
|
|
struct region
|
|
{
|
|
struct list entry;
|
|
RGNHEADER header;
|
|
WAVELINK wave_link;
|
|
WSMPL wave_sample;
|
|
WLOOP wave_loop;
|
|
BOOL loop_present;
|
|
};
|
|
|
|
struct instrument
|
|
{
|
|
IDirectMusicInstrument IDirectMusicInstrument_iface;
|
|
IDirectMusicDownloadedInstrument IDirectMusicDownloadedInstrument_iface;
|
|
LONG ref;
|
|
|
|
INSTHEADER header;
|
|
IDirectMusicDownload *download;
|
|
struct list articulations;
|
|
struct list regions;
|
|
};
|
|
|
|
static inline struct instrument *impl_from_IDirectMusicInstrument(IDirectMusicInstrument *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct instrument, IDirectMusicInstrument_iface);
|
|
}
|
|
|
|
static HRESULT WINAPI instrument_QueryInterface(LPDIRECTMUSICINSTRUMENT iface, REFIID riid, LPVOID *ret_iface)
|
|
{
|
|
TRACE("(%p)->(%s, %p)\n", iface, debugstr_dmguid(riid), ret_iface);
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) ||
|
|
IsEqualIID(riid, &IID_IDirectMusicInstrument))
|
|
{
|
|
*ret_iface = iface;
|
|
IDirectMusicInstrument_AddRef(iface);
|
|
return S_OK;
|
|
}
|
|
else if (IsEqualIID(riid, &IID_IDirectMusicInstrumentPRIVATE))
|
|
{
|
|
/* it seems to me that this interface is only basic IUnknown, without any
|
|
* other inherited functions... *sigh* this is the worst scenario, since it means
|
|
* that whoever calls it knows the layout of original implementation table and therefore
|
|
* tries to get data by direct access... expect crashes
|
|
*/
|
|
FIXME("*sigh*... requested private/unspecified interface\n");
|
|
|
|
*ret_iface = iface;
|
|
IDirectMusicInstrument_AddRef(iface);
|
|
return S_OK;
|
|
}
|
|
|
|
WARN("(%p)->(%s, %p): not found\n", iface, debugstr_dmguid(riid), ret_iface);
|
|
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG WINAPI instrument_AddRef(LPDIRECTMUSICINSTRUMENT iface)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicInstrument(iface);
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("(%p): new ref = %lu\n", iface, ref);
|
|
|
|
return ref;
|
|
}
|
|
|
|
static ULONG WINAPI instrument_Release(LPDIRECTMUSICINSTRUMENT iface)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicInstrument(iface);
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
TRACE("(%p): new ref = %lu\n", iface, ref);
|
|
|
|
if (!ref)
|
|
{
|
|
struct articulation *articulation, *next_articulation;
|
|
struct region *region, *next_region;
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(articulation, next_articulation, &This->articulations, struct articulation, entry)
|
|
{
|
|
list_remove(&articulation->entry);
|
|
free(articulation);
|
|
}
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE(region, next_region, &This->regions, struct region, entry)
|
|
{
|
|
list_remove(®ion->entry);
|
|
free(region);
|
|
}
|
|
|
|
free(This);
|
|
}
|
|
|
|
return ref;
|
|
}
|
|
|
|
static HRESULT WINAPI instrument_GetPatch(LPDIRECTMUSICINSTRUMENT iface, DWORD* pdwPatch)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicInstrument(iface);
|
|
|
|
TRACE("(%p)->(%p)\n", This, pdwPatch);
|
|
|
|
*pdwPatch = MIDILOCALE2Patch(&This->header.Locale);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT WINAPI instrument_SetPatch(LPDIRECTMUSICINSTRUMENT iface, DWORD dwPatch)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicInstrument(iface);
|
|
|
|
TRACE("(%p, %ld): stub\n", This, dwPatch);
|
|
|
|
Patch2MIDILOCALE(dwPatch, &This->header.Locale);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
static const IDirectMusicInstrumentVtbl instrument_vtbl =
|
|
{
|
|
instrument_QueryInterface,
|
|
instrument_AddRef,
|
|
instrument_Release,
|
|
instrument_GetPatch,
|
|
instrument_SetPatch,
|
|
};
|
|
|
|
static inline struct instrument* impl_from_IDirectMusicDownloadedInstrument(IDirectMusicDownloadedInstrument *iface)
|
|
{
|
|
return CONTAINING_RECORD(iface, struct instrument, IDirectMusicDownloadedInstrument_iface);
|
|
}
|
|
|
|
static HRESULT WINAPI downloaded_instrument_QueryInterface(IDirectMusicDownloadedInstrument *iface, REFIID riid, VOID **ret_iface)
|
|
{
|
|
TRACE("(%p, %s, %p)\n", iface, debugstr_dmguid(riid), ret_iface);
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IDirectMusicDownloadedInstrument))
|
|
{
|
|
IDirectMusicDownloadedInstrument_AddRef(iface);
|
|
*ret_iface = iface;
|
|
return S_OK;
|
|
}
|
|
|
|
WARN("(%p, %s, %p): not found\n", iface, debugstr_dmguid(riid), ret_iface);
|
|
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG WINAPI downloaded_instrument_AddRef(IDirectMusicDownloadedInstrument *iface)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicDownloadedInstrument(iface);
|
|
return IDirectMusicInstrument_AddRef(&This->IDirectMusicInstrument_iface);
|
|
}
|
|
|
|
static ULONG WINAPI downloaded_instrument_Release(IDirectMusicDownloadedInstrument *iface)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicDownloadedInstrument(iface);
|
|
return IDirectMusicInstrument_Release(&This->IDirectMusicInstrument_iface);
|
|
}
|
|
|
|
static const IDirectMusicDownloadedInstrumentVtbl downloaded_instrument_vtbl =
|
|
{
|
|
downloaded_instrument_QueryInterface,
|
|
downloaded_instrument_AddRef,
|
|
downloaded_instrument_Release,
|
|
};
|
|
|
|
static HRESULT instrument_create(IDirectMusicInstrument **ret_iface)
|
|
{
|
|
struct instrument *instrument;
|
|
|
|
*ret_iface = NULL;
|
|
if (!(instrument = calloc(1, sizeof(*instrument)))) return E_OUTOFMEMORY;
|
|
instrument->IDirectMusicInstrument_iface.lpVtbl = &instrument_vtbl;
|
|
instrument->IDirectMusicDownloadedInstrument_iface.lpVtbl = &downloaded_instrument_vtbl;
|
|
instrument->ref = 1;
|
|
list_init(&instrument->articulations);
|
|
list_init(&instrument->regions);
|
|
|
|
TRACE("Created DirectMusicInstrument %p\n", instrument);
|
|
*ret_iface = &instrument->IDirectMusicInstrument_iface;
|
|
return S_OK;
|
|
}
|
|
|
|
static HRESULT parse_art1_chunk(struct instrument *This, IStream *stream, struct chunk_entry *chunk)
|
|
{
|
|
struct articulation *articulation;
|
|
CONNECTIONLIST list;
|
|
HRESULT hr;
|
|
UINT size;
|
|
|
|
if (chunk->size < sizeof(list)) return E_INVALIDARG;
|
|
if (FAILED(hr = stream_read(stream, &list, sizeof(list)))) return hr;
|
|
if (chunk->size != list.cbSize + sizeof(CONNECTION) * list.cConnections) return E_INVALIDARG;
|
|
if (list.cbSize != sizeof(list)) return E_INVALIDARG;
|
|
|
|
size = offsetof(struct articulation, connections[list.cConnections]);
|
|
if (!(articulation = malloc(size))) return E_OUTOFMEMORY;
|
|
articulation->list = list;
|
|
|
|
size = sizeof(CONNECTION) * list.cConnections;
|
|
if (FAILED(hr = stream_read(stream, articulation->connections, size))) free(articulation);
|
|
else list_add_tail(&This->articulations, &articulation->entry);
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT parse_lart_list(struct instrument *This, IStream *stream, struct chunk_entry *parent)
|
|
{
|
|
struct chunk_entry chunk = {.parent = parent};
|
|
HRESULT hr;
|
|
|
|
while ((hr = stream_next_chunk(stream, &chunk)) == S_OK)
|
|
{
|
|
switch (MAKE_IDTYPE(chunk.id, chunk.type))
|
|
{
|
|
case FOURCC_ART1:
|
|
hr = parse_art1_chunk(This, stream, &chunk);
|
|
break;
|
|
|
|
default:
|
|
FIXME("Ignoring chunk %s %s\n", debugstr_fourcc(chunk.id), debugstr_fourcc(chunk.type));
|
|
break;
|
|
}
|
|
|
|
if (FAILED(hr)) break;
|
|
}
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT parse_rgn_chunk(struct instrument *This, IStream *stream, struct chunk_entry *parent)
|
|
{
|
|
struct chunk_entry chunk = {.parent = parent};
|
|
struct region *region;
|
|
HRESULT hr;
|
|
|
|
if (!(region = malloc(sizeof(*region)))) return E_OUTOFMEMORY;
|
|
|
|
while ((hr = stream_next_chunk(stream, &chunk)) == S_OK)
|
|
{
|
|
switch (MAKE_IDTYPE(chunk.id, chunk.type))
|
|
{
|
|
case FOURCC_RGNH:
|
|
hr = stream_chunk_get_data(stream, &chunk, ®ion->header, sizeof(region->header));
|
|
break;
|
|
|
|
case FOURCC_WSMP:
|
|
if (chunk.size < sizeof(region->wave_sample)) hr = E_INVALIDARG;
|
|
else hr = stream_read(stream, ®ion->wave_sample, sizeof(region->wave_sample));
|
|
if (SUCCEEDED(hr) && region->wave_sample.cSampleLoops)
|
|
{
|
|
if (region->wave_sample.cSampleLoops > 1) FIXME("More than one wave loop is not implemented\n");
|
|
if (chunk.size != sizeof(WSMPL) + region->wave_sample.cSampleLoops * sizeof(WLOOP)) hr = E_INVALIDARG;
|
|
else hr = stream_read(stream, ®ion->wave_loop, sizeof(region->wave_loop));
|
|
}
|
|
break;
|
|
|
|
case FOURCC_WLNK:
|
|
hr = stream_chunk_get_data(stream, &chunk, ®ion->wave_link, sizeof(region->wave_link));
|
|
break;
|
|
|
|
default:
|
|
FIXME("Ignoring chunk %s %s\n", debugstr_fourcc(chunk.id), debugstr_fourcc(chunk.type));
|
|
break;
|
|
}
|
|
|
|
if (FAILED(hr)) break;
|
|
}
|
|
|
|
if (FAILED(hr)) free(region);
|
|
else list_add_tail(&This->regions, ®ion->entry);
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT parse_lrgn_list(struct instrument *This, IStream *stream, struct chunk_entry *parent)
|
|
{
|
|
struct chunk_entry chunk = {.parent = parent};
|
|
HRESULT hr;
|
|
|
|
while ((hr = stream_next_chunk(stream, &chunk)) == S_OK)
|
|
{
|
|
switch (MAKE_IDTYPE(chunk.id, chunk.type))
|
|
{
|
|
case MAKE_IDTYPE(FOURCC_LIST, FOURCC_RGN):
|
|
hr = parse_rgn_chunk(This, stream, &chunk);
|
|
break;
|
|
|
|
default:
|
|
FIXME("Ignoring chunk %s %s\n", debugstr_fourcc(chunk.id), debugstr_fourcc(chunk.type));
|
|
break;
|
|
}
|
|
|
|
if (FAILED(hr)) break;
|
|
}
|
|
|
|
return hr;
|
|
}
|
|
|
|
static HRESULT parse_ins_chunk(struct instrument *This, IStream *stream, struct chunk_entry *parent,
|
|
DMUS_OBJECTDESC *desc)
|
|
{
|
|
struct chunk_entry chunk = {.parent = parent};
|
|
HRESULT hr;
|
|
|
|
if (FAILED(hr = dmobj_parsedescriptor(stream, parent, desc, DMUS_OBJ_NAME_INFO|DMUS_OBJ_GUID_DLID))
|
|
|| FAILED(hr = stream_reset_chunk_data(stream, parent)))
|
|
return hr;
|
|
|
|
while ((hr = stream_next_chunk(stream, &chunk)) == S_OK)
|
|
{
|
|
switch (MAKE_IDTYPE(chunk.id, chunk.type))
|
|
{
|
|
case FOURCC_INSH:
|
|
hr = stream_chunk_get_data(stream, &chunk, &This->header, sizeof(This->header));
|
|
break;
|
|
|
|
case FOURCC_DLID:
|
|
case MAKE_IDTYPE(FOURCC_LIST, DMUS_FOURCC_INFO_LIST):
|
|
/* already parsed by dmobj_parsedescriptor */
|
|
break;
|
|
|
|
case MAKE_IDTYPE(FOURCC_LIST, FOURCC_LRGN):
|
|
hr = parse_lrgn_list(This, stream, &chunk);
|
|
break;
|
|
|
|
case MAKE_IDTYPE(FOURCC_LIST, FOURCC_LART):
|
|
hr = parse_lart_list(This, stream, &chunk);
|
|
break;
|
|
|
|
default:
|
|
FIXME("Ignoring chunk %s %s\n", debugstr_fourcc(chunk.id), debugstr_fourcc(chunk.type));
|
|
break;
|
|
}
|
|
|
|
if (FAILED(hr)) break;
|
|
}
|
|
|
|
return hr;
|
|
}
|
|
|
|
HRESULT instrument_create_from_chunk(IStream *stream, struct chunk_entry *parent,
|
|
DMUS_OBJECTDESC *desc, IDirectMusicInstrument **ret_iface)
|
|
{
|
|
IDirectMusicInstrument *iface;
|
|
struct instrument *This;
|
|
HRESULT hr;
|
|
|
|
TRACE("(%p, %p)\n", stream, ret_iface);
|
|
|
|
if (FAILED(hr = instrument_create(&iface))) return hr;
|
|
This = impl_from_IDirectMusicInstrument(iface);
|
|
|
|
if (FAILED(hr = parse_ins_chunk(This, stream, parent, desc)))
|
|
{
|
|
IDirectMusicInstrument_Release(iface);
|
|
return DMUS_E_UNSUPPORTED_STREAM;
|
|
}
|
|
|
|
if (TRACE_ON(dmusic))
|
|
{
|
|
struct region *region;
|
|
UINT i;
|
|
|
|
TRACE("Created DirectMusicInstrument %p\n", This);
|
|
TRACE(" - header:\n");
|
|
TRACE(" - regions: %ld\n", This->header.cRegions);
|
|
TRACE(" - locale: {bank: %#lx, instrument: %#lx} (patch %#lx)\n",
|
|
This->header.Locale.ulBank, This->header.Locale.ulInstrument,
|
|
MIDILOCALE2Patch(&This->header.Locale));
|
|
if (desc->dwValidData & DMUS_OBJ_OBJECT) TRACE(" - guid: %s\n", debugstr_dmguid(&desc->guidObject));
|
|
if (desc->dwValidData & DMUS_OBJ_NAME) TRACE(" - name: %s\n", debugstr_w(desc->wszName));
|
|
|
|
TRACE(" - regions:\n");
|
|
LIST_FOR_EACH_ENTRY(region, &This->regions, struct region, entry)
|
|
{
|
|
TRACE(" - region:\n");
|
|
TRACE(" - header: {key: %u - %u, vel: %u - %u, options: %#x, group: %#x}\n",
|
|
region->header.RangeKey.usLow, region->header.RangeKey.usHigh,
|
|
region->header.RangeVelocity.usLow, region->header.RangeVelocity.usHigh,
|
|
region->header.fusOptions, region->header.usKeyGroup);
|
|
TRACE(" - wave_link: {options: %#x, group: %u, channel: %lu, index: %lu}\n",
|
|
region->wave_link.fusOptions, region->wave_link.usPhaseGroup,
|
|
region->wave_link.ulChannel, region->wave_link.ulTableIndex);
|
|
TRACE(" - wave_sample: {size: %lu, unity_note: %u, fine_tune: %d, attenuation: %ld, options: %#lx, loops: %lu}\n",
|
|
region->wave_sample.cbSize, region->wave_sample.usUnityNote,
|
|
region->wave_sample.sFineTune, region->wave_sample.lAttenuation,
|
|
region->wave_sample.fulOptions, region->wave_sample.cSampleLoops);
|
|
for (i = 0; i < region->wave_sample.cSampleLoops; i++)
|
|
TRACE(" - wave_loop[%u]: {size: %lu, type: %lu, start: %lu, length: %lu}\n", i,
|
|
region->wave_loop.cbSize, region->wave_loop.ulType,
|
|
region->wave_loop.ulStart, region->wave_loop.ulLength);
|
|
}
|
|
}
|
|
|
|
*ret_iface = iface;
|
|
return S_OK;
|
|
}
|
|
|
|
struct download_buffer
|
|
{
|
|
DMUS_DOWNLOADINFO info;
|
|
ULONG offsets[];
|
|
};
|
|
|
|
C_ASSERT(sizeof(struct download_buffer) == offsetof(struct download_buffer, offsets[0]));
|
|
|
|
HRESULT instrument_download_to_port(IDirectMusicInstrument *iface, IDirectMusicPortDownload *port,
|
|
IDirectMusicDownloadedInstrument **downloaded)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicInstrument(iface);
|
|
struct download_buffer *buffer;
|
|
IDirectMusicDownload *download;
|
|
DWORD size, offset_count;
|
|
struct region *region;
|
|
HRESULT hr;
|
|
|
|
if (This->download) goto done;
|
|
|
|
size = sizeof(DMUS_DOWNLOADINFO);
|
|
size += sizeof(ULONG) + sizeof(DMUS_INSTRUMENT);
|
|
offset_count = 1;
|
|
|
|
LIST_FOR_EACH_ENTRY(region, &This->regions, struct region, entry)
|
|
{
|
|
size += sizeof(ULONG) + sizeof(DMUS_REGION);
|
|
offset_count++;
|
|
}
|
|
|
|
if (FAILED(hr = IDirectMusicPortDownload_AllocateBuffer(port, size, &download))) return hr;
|
|
|
|
if (SUCCEEDED(hr = IDirectMusicDownload_GetBuffer(download, (void **)&buffer, &size))
|
|
&& SUCCEEDED(hr = IDirectMusicPortDownload_GetDLId(port, &buffer->info.dwDLId, 1)))
|
|
{
|
|
BYTE *ptr = (BYTE *)&buffer->offsets[offset_count];
|
|
DMUS_INSTRUMENT *dmus_instrument;
|
|
DMUS_REGION *dmus_region = NULL;
|
|
UINT index = 0;
|
|
|
|
buffer->info.dwDLType = DMUS_DOWNLOADINFO_INSTRUMENT2;
|
|
buffer->info.dwNumOffsetTableEntries = offset_count;
|
|
buffer->info.cbSize = size;
|
|
|
|
buffer->offsets[index++] = ptr - (BYTE *)buffer;
|
|
dmus_instrument = (DMUS_INSTRUMENT *)ptr;
|
|
ptr += sizeof(DMUS_INSTRUMENT);
|
|
|
|
dmus_instrument->ulPatch = MIDILOCALE2Patch(&This->header.Locale);
|
|
dmus_instrument->ulFirstRegionIdx = 0;
|
|
dmus_instrument->ulCopyrightIdx = 0;
|
|
dmus_instrument->ulGlobalArtIdx = 0;
|
|
|
|
LIST_FOR_EACH_ENTRY(region, &This->regions, struct region, entry)
|
|
{
|
|
if (dmus_region) dmus_region->ulNextRegionIdx = index;
|
|
else dmus_instrument->ulFirstRegionIdx = index;
|
|
|
|
buffer->offsets[index++] = ptr - (BYTE *)buffer;
|
|
dmus_region = (DMUS_REGION *)ptr;
|
|
ptr += sizeof(DMUS_REGION);
|
|
|
|
dmus_region->RangeKey = region->header.RangeKey;
|
|
dmus_region->RangeVelocity = region->header.RangeVelocity;
|
|
dmus_region->fusOptions = region->header.fusOptions;
|
|
dmus_region->usKeyGroup = region->header.usKeyGroup;
|
|
dmus_region->ulRegionArtIdx = 0;
|
|
dmus_region->ulNextRegionIdx = 0;
|
|
dmus_region->ulFirstExtCkIdx = 0;
|
|
dmus_region->WaveLink = region->wave_link;
|
|
dmus_region->WSMP = region->wave_sample;
|
|
dmus_region->WLOOP[0] = region->wave_loop;
|
|
}
|
|
|
|
if (FAILED(hr = IDirectMusicPortDownload_Download(port, download))) goto failed;
|
|
}
|
|
|
|
This->download = download;
|
|
|
|
done:
|
|
*downloaded = &This->IDirectMusicDownloadedInstrument_iface;
|
|
IDirectMusicDownloadedInstrument_AddRef(*downloaded);
|
|
return S_OK;
|
|
|
|
failed:
|
|
WARN("Failed to download instrument to port, hr %#lx\n", hr);
|
|
IDirectMusicDownload_Release(download);
|
|
return hr;
|
|
}
|
|
|
|
HRESULT instrument_unload_from_port(IDirectMusicDownloadedInstrument *iface, IDirectMusicPortDownload *port)
|
|
{
|
|
struct instrument *This = impl_from_IDirectMusicDownloadedInstrument(iface);
|
|
HRESULT hr;
|
|
|
|
if (!This->download) return DMUS_E_NOT_DOWNLOADED_TO_PORT;
|
|
|
|
if (FAILED(hr = IDirectMusicPortDownload_Unload(port, This->download)))
|
|
WARN("Failed to unload instrument download buffer, hr %#lx\n", hr);
|
|
|
|
IDirectMusicDownload_Release(This->download);
|
|
This->download = NULL;
|
|
|
|
return hr;
|
|
}
|