dpnet/tests: Add a trailing '\n' to some ok() calls.
[wine.git] / dlls / dsound / dsound.c
blob986168ba0e94f6fc561d88b83b8e7c1d6f05efcb
1 /* DirectSound
3 * Copyright 1998 Marcus Meissner
4 * Copyright 1998 Rob Riggs
5 * Copyright 2000-2002 TransGaming Technologies, Inc.
6 * Copyright 2004 Robert Reif
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include <assert.h>
24 #include <stdarg.h>
25 #include <stdio.h>
27 #define COBJMACROS
28 #define NONAMELESSSTRUCT
29 #define NONAMELESSUNION
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winuser.h"
33 #include "winternl.h"
34 #include "mmddk.h"
35 #include "wingdi.h"
36 #include "mmreg.h"
37 #include "ks.h"
38 #include "ksmedia.h"
39 #include "wine/debug.h"
40 #include "dsound.h"
41 #include "dsound_private.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(dsound);
45 typedef struct IDirectSoundImpl {
46 IUnknown IUnknown_inner;
47 IDirectSound8 IDirectSound8_iface;
48 IUnknown *outer_unk; /* internal */
49 LONG ref, refds, numIfaces;
50 DirectSoundDevice *device;
51 BOOL has_ds8;
52 } IDirectSoundImpl;
54 static const char * dumpCooperativeLevel(DWORD level)
56 #define LE(x) case x: return #x
57 switch (level) {
58 LE(DSSCL_NORMAL);
59 LE(DSSCL_PRIORITY);
60 LE(DSSCL_EXCLUSIVE);
61 LE(DSSCL_WRITEPRIMARY);
63 #undef LE
64 return wine_dbg_sprintf("Unknown(%08x)", level);
67 static void _dump_DSCAPS(DWORD xmask) {
68 struct {
69 DWORD mask;
70 const char *name;
71 } flags[] = {
72 #define FE(x) { x, #x },
73 FE(DSCAPS_PRIMARYMONO)
74 FE(DSCAPS_PRIMARYSTEREO)
75 FE(DSCAPS_PRIMARY8BIT)
76 FE(DSCAPS_PRIMARY16BIT)
77 FE(DSCAPS_CONTINUOUSRATE)
78 FE(DSCAPS_EMULDRIVER)
79 FE(DSCAPS_CERTIFIED)
80 FE(DSCAPS_SECONDARYMONO)
81 FE(DSCAPS_SECONDARYSTEREO)
82 FE(DSCAPS_SECONDARY8BIT)
83 FE(DSCAPS_SECONDARY16BIT)
84 #undef FE
86 unsigned int i;
88 for (i=0;i<sizeof(flags)/sizeof(flags[0]);i++)
89 if ((flags[i].mask & xmask) == flags[i].mask)
90 TRACE("%s ",flags[i].name);
93 static void _dump_DSBCAPS(DWORD xmask) {
94 struct {
95 DWORD mask;
96 const char *name;
97 } flags[] = {
98 #define FE(x) { x, #x },
99 FE(DSBCAPS_PRIMARYBUFFER)
100 FE(DSBCAPS_STATIC)
101 FE(DSBCAPS_LOCHARDWARE)
102 FE(DSBCAPS_LOCSOFTWARE)
103 FE(DSBCAPS_CTRL3D)
104 FE(DSBCAPS_CTRLFREQUENCY)
105 FE(DSBCAPS_CTRLPAN)
106 FE(DSBCAPS_CTRLVOLUME)
107 FE(DSBCAPS_CTRLPOSITIONNOTIFY)
108 FE(DSBCAPS_STICKYFOCUS)
109 FE(DSBCAPS_GLOBALFOCUS)
110 FE(DSBCAPS_GETCURRENTPOSITION2)
111 FE(DSBCAPS_MUTE3DATMAXDISTANCE)
112 #undef FE
114 unsigned int i;
116 for (i=0;i<sizeof(flags)/sizeof(flags[0]);i++)
117 if ((flags[i].mask & xmask) == flags[i].mask)
118 TRACE("%s ",flags[i].name);
121 static void directsound_destroy(IDirectSoundImpl *This)
123 if (This->device)
124 DirectSoundDevice_Release(This->device);
125 HeapFree(GetProcessHeap(),0,This);
126 TRACE("(%p) released\n", This);
129 /*******************************************************************************
130 * IUnknown Implementation for DirectSound
132 static inline IDirectSoundImpl *impl_from_IUnknown(IUnknown *iface)
134 return CONTAINING_RECORD(iface, IDirectSoundImpl, IUnknown_inner);
137 static HRESULT WINAPI IUnknownImpl_QueryInterface(IUnknown *iface, REFIID riid, void **ppv)
139 IDirectSoundImpl *This = impl_from_IUnknown(iface);
141 TRACE("(%p,%s,%p)\n", This, debugstr_guid(riid), ppv);
143 if (!ppv) {
144 WARN("invalid parameter\n");
145 return E_INVALIDARG;
147 *ppv = NULL;
149 if (IsEqualIID(riid, &IID_IUnknown))
150 *ppv = &This->IUnknown_inner;
151 else if (IsEqualIID(riid, &IID_IDirectSound) ||
152 (IsEqualIID(riid, &IID_IDirectSound8) && This->has_ds8))
153 *ppv = &This->IDirectSound8_iface;
154 else {
155 WARN("unknown IID %s\n", debugstr_guid(riid));
156 return E_NOINTERFACE;
159 IUnknown_AddRef((IUnknown*)*ppv);
160 return S_OK;
163 static ULONG WINAPI IUnknownImpl_AddRef(IUnknown *iface)
165 IDirectSoundImpl *This = impl_from_IUnknown(iface);
166 ULONG ref = InterlockedIncrement(&This->ref);
168 TRACE("(%p) ref=%d\n", This, ref);
170 if(ref == 1)
171 InterlockedIncrement(&This->numIfaces);
173 return ref;
176 static ULONG WINAPI IUnknownImpl_Release(IUnknown *iface)
178 IDirectSoundImpl *This = impl_from_IUnknown(iface);
179 ULONG ref = InterlockedDecrement(&This->ref);
181 TRACE("(%p) ref=%d\n", This, ref);
183 if (!ref && !InterlockedDecrement(&This->numIfaces))
184 directsound_destroy(This);
186 return ref;
189 static const IUnknownVtbl unk_vtbl =
191 IUnknownImpl_QueryInterface,
192 IUnknownImpl_AddRef,
193 IUnknownImpl_Release
196 /*******************************************************************************
197 * IDirectSound and IDirectSound8 Implementation
199 static inline IDirectSoundImpl *impl_from_IDirectSound8(IDirectSound8 *iface)
201 return CONTAINING_RECORD(iface, IDirectSoundImpl, IDirectSound8_iface);
204 static HRESULT WINAPI IDirectSound8Impl_QueryInterface(IDirectSound8 *iface, REFIID riid,
205 void **ppv)
207 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
208 TRACE("(%p,%s,%p)\n", This, debugstr_guid(riid), ppv);
209 return IUnknown_QueryInterface(This->outer_unk, riid, ppv);
212 static ULONG WINAPI IDirectSound8Impl_AddRef(IDirectSound8 *iface)
214 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
215 ULONG ref = InterlockedIncrement(&This->refds);
217 TRACE("(%p) refds=%d\n", This, ref);
219 if(ref == 1)
220 InterlockedIncrement(&This->numIfaces);
222 return ref;
225 static ULONG WINAPI IDirectSound8Impl_Release(IDirectSound8 *iface)
227 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
228 ULONG ref = InterlockedDecrement(&(This->refds));
230 TRACE("(%p) refds=%d\n", This, ref);
232 if (!ref && !InterlockedDecrement(&This->numIfaces))
233 directsound_destroy(This);
235 return ref;
238 static HRESULT WINAPI IDirectSound8Impl_CreateSoundBuffer(IDirectSound8 *iface,
239 const DSBUFFERDESC *dsbd, IDirectSoundBuffer **ppdsb, IUnknown *lpunk)
241 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
242 TRACE("(%p,%p,%p,%p)\n", This, dsbd, ppdsb, lpunk);
243 return DirectSoundDevice_CreateSoundBuffer(This->device, dsbd, ppdsb, lpunk, This->has_ds8);
246 static HRESULT WINAPI IDirectSound8Impl_GetCaps(IDirectSound8 *iface, DSCAPS *dscaps)
248 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
250 TRACE("(%p, %p)\n", This, dscaps);
252 if (!This->device) {
253 WARN("not initialized\n");
254 return DSERR_UNINITIALIZED;
256 if (!dscaps) {
257 WARN("invalid parameter: dscaps = NULL\n");
258 return DSERR_INVALIDPARAM;
260 if (dscaps->dwSize < sizeof(*dscaps)) {
261 WARN("invalid parameter: dscaps->dwSize = %d\n", dscaps->dwSize);
262 return DSERR_INVALIDPARAM;
265 dscaps->dwFlags = This->device->drvcaps.dwFlags;
266 dscaps->dwMinSecondarySampleRate = This->device->drvcaps.dwMinSecondarySampleRate;
267 dscaps->dwMaxSecondarySampleRate = This->device->drvcaps.dwMaxSecondarySampleRate;
268 dscaps->dwPrimaryBuffers = This->device->drvcaps.dwPrimaryBuffers;
269 dscaps->dwMaxHwMixingAllBuffers = This->device->drvcaps.dwMaxHwMixingAllBuffers;
270 dscaps->dwMaxHwMixingStaticBuffers = This->device->drvcaps.dwMaxHwMixingStaticBuffers;
271 dscaps->dwMaxHwMixingStreamingBuffers = This->device->drvcaps.dwMaxHwMixingStreamingBuffers;
272 dscaps->dwFreeHwMixingAllBuffers = This->device->drvcaps.dwFreeHwMixingAllBuffers;
273 dscaps->dwFreeHwMixingStaticBuffers = This->device->drvcaps.dwFreeHwMixingStaticBuffers;
274 dscaps->dwFreeHwMixingStreamingBuffers = This->device->drvcaps.dwFreeHwMixingStreamingBuffers;
275 dscaps->dwMaxHw3DAllBuffers = This->device->drvcaps.dwMaxHw3DAllBuffers;
276 dscaps->dwMaxHw3DStaticBuffers = This->device->drvcaps.dwMaxHw3DStaticBuffers;
277 dscaps->dwMaxHw3DStreamingBuffers = This->device->drvcaps.dwMaxHw3DStreamingBuffers;
278 dscaps->dwFreeHw3DAllBuffers = This->device->drvcaps.dwFreeHw3DAllBuffers;
279 dscaps->dwFreeHw3DStaticBuffers = This->device->drvcaps.dwFreeHw3DStaticBuffers;
280 dscaps->dwFreeHw3DStreamingBuffers = This->device->drvcaps.dwFreeHw3DStreamingBuffers;
281 dscaps->dwTotalHwMemBytes = This->device->drvcaps.dwTotalHwMemBytes;
282 dscaps->dwFreeHwMemBytes = This->device->drvcaps.dwFreeHwMemBytes;
283 dscaps->dwMaxContigFreeHwMemBytes = This->device->drvcaps.dwMaxContigFreeHwMemBytes;
284 dscaps->dwUnlockTransferRateHwBuffers = This->device->drvcaps.dwUnlockTransferRateHwBuffers;
285 dscaps->dwPlayCpuOverheadSwBuffers = This->device->drvcaps.dwPlayCpuOverheadSwBuffers;
287 if (TRACE_ON(dsound)) {
288 TRACE("(flags=0x%08x:\n", dscaps->dwFlags);
289 _dump_DSCAPS(dscaps->dwFlags);
290 TRACE(")\n");
293 return DS_OK;
296 static HRESULT WINAPI IDirectSound8Impl_DuplicateSoundBuffer(IDirectSound8 *iface,
297 IDirectSoundBuffer *psb, IDirectSoundBuffer **ppdsb)
299 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
300 TRACE("(%p,%p,%p)\n", This, psb, ppdsb);
301 return DirectSoundDevice_DuplicateSoundBuffer(This->device, psb, ppdsb);
304 static HRESULT WINAPI IDirectSound8Impl_SetCooperativeLevel(IDirectSound8 *iface, HWND hwnd,
305 DWORD level)
307 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
308 DirectSoundDevice *device = This->device;
309 DWORD oldlevel;
310 HRESULT hr = S_OK;
312 TRACE("(%p,%p,%s)\n", This, hwnd, dumpCooperativeLevel(level));
314 if (!device) {
315 WARN("not initialized\n");
316 return DSERR_UNINITIALIZED;
319 if (level == DSSCL_PRIORITY || level == DSSCL_EXCLUSIVE) {
320 WARN("level=%s not fully supported\n",
321 level==DSSCL_PRIORITY ? "DSSCL_PRIORITY" : "DSSCL_EXCLUSIVE");
324 RtlAcquireResourceExclusive(&device->buffer_list_lock, TRUE);
325 EnterCriticalSection(&device->mixlock);
326 oldlevel = device->priolevel;
327 device->priolevel = level;
328 if ((level == DSSCL_WRITEPRIMARY) != (oldlevel == DSSCL_WRITEPRIMARY)) {
329 hr = DSOUND_ReopenDevice(device, level == DSSCL_WRITEPRIMARY);
330 if (FAILED(hr))
331 device->priolevel = oldlevel;
332 else
333 DSOUND_PrimaryOpen(device);
335 LeaveCriticalSection(&device->mixlock);
336 RtlReleaseResource(&device->buffer_list_lock);
337 return hr;
340 static HRESULT WINAPI IDirectSound8Impl_Compact(IDirectSound8 *iface)
342 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
344 TRACE("(%p)\n", This);
346 if (!This->device) {
347 WARN("not initialized\n");
348 return DSERR_UNINITIALIZED;
351 if (This->device->priolevel < DSSCL_PRIORITY) {
352 WARN("incorrect priority level\n");
353 return DSERR_PRIOLEVELNEEDED;
355 return DS_OK;
358 static HRESULT WINAPI IDirectSound8Impl_GetSpeakerConfig(IDirectSound8 *iface, DWORD *config)
360 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
362 TRACE("(%p, %p)\n", This, config);
364 if (!This->device) {
365 WARN("not initialized\n");
366 return DSERR_UNINITIALIZED;
368 if (!config) {
369 WARN("invalid parameter: config == NULL\n");
370 return DSERR_INVALIDPARAM;
373 WARN("not fully functional\n");
374 *config = This->device->speaker_config;
375 return DS_OK;
378 static HRESULT WINAPI IDirectSound8Impl_SetSpeakerConfig(IDirectSound8 *iface, DWORD config)
380 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
382 TRACE("(%p,0x%08x)\n", This, config);
384 if (!This->device) {
385 WARN("not initialized\n");
386 return DSERR_UNINITIALIZED;
389 This->device->speaker_config = config;
390 WARN("not fully functional\n");
391 return DS_OK;
394 static HRESULT WINAPI IDirectSound8Impl_Initialize(IDirectSound8 *iface, const GUID *lpcGuid)
396 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
397 TRACE("(%p, %s)\n", This, debugstr_guid(lpcGuid));
398 return DirectSoundDevice_Initialize(&This->device, lpcGuid);
401 static HRESULT WINAPI IDirectSound8Impl_VerifyCertification(IDirectSound8 *iface, DWORD *certified)
403 IDirectSoundImpl *This = impl_from_IDirectSound8(iface);
405 TRACE("(%p, %p)\n", This, certified);
407 if (!This->device) {
408 WARN("not initialized\n");
409 return DSERR_UNINITIALIZED;
412 if (This->device->drvcaps.dwFlags & DSCAPS_CERTIFIED)
413 *certified = DS_CERTIFIED;
414 else
415 *certified = DS_UNCERTIFIED;
417 return DS_OK;
420 static const IDirectSound8Vtbl ds8_vtbl =
422 IDirectSound8Impl_QueryInterface,
423 IDirectSound8Impl_AddRef,
424 IDirectSound8Impl_Release,
425 IDirectSound8Impl_CreateSoundBuffer,
426 IDirectSound8Impl_GetCaps,
427 IDirectSound8Impl_DuplicateSoundBuffer,
428 IDirectSound8Impl_SetCooperativeLevel,
429 IDirectSound8Impl_Compact,
430 IDirectSound8Impl_GetSpeakerConfig,
431 IDirectSound8Impl_SetSpeakerConfig,
432 IDirectSound8Impl_Initialize,
433 IDirectSound8Impl_VerifyCertification
436 HRESULT IDirectSoundImpl_Create(IUnknown *outer_unk, REFIID riid, void **ppv, BOOL has_ds8)
438 IDirectSoundImpl *obj;
439 HRESULT hr;
441 TRACE("(%s, %p)\n", debugstr_guid(riid), ppv);
443 *ppv = NULL;
444 obj = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*obj));
445 if (!obj) {
446 WARN("out of memory\n");
447 return DSERR_OUTOFMEMORY;
450 setup_dsound_options();
452 obj->IUnknown_inner.lpVtbl = &unk_vtbl;
453 obj->IDirectSound8_iface.lpVtbl = &ds8_vtbl;
454 obj->ref = 1;
455 obj->refds = 0;
456 obj->numIfaces = 1;
457 obj->device = NULL;
458 obj->has_ds8 = has_ds8;
460 /* COM aggregation supported only internally */
461 if (outer_unk)
462 obj->outer_unk = outer_unk;
463 else
464 obj->outer_unk = &obj->IUnknown_inner;
466 hr = IUnknown_QueryInterface(&obj->IUnknown_inner, riid, ppv);
467 IUnknown_Release(&obj->IUnknown_inner);
469 return hr;
472 HRESULT DSOUND_Create(REFIID riid, void **ppv)
474 return IDirectSoundImpl_Create(NULL, riid, ppv, FALSE);
477 HRESULT DSOUND_Create8(REFIID riid, void **ppv)
479 return IDirectSoundImpl_Create(NULL, riid, ppv, TRUE);
482 /*******************************************************************************
483 * DirectSoundCreate (DSOUND.1)
485 * Creates and initializes a DirectSound interface.
487 * PARAMS
488 * lpcGUID [I] Address of the GUID that identifies the sound device.
489 * ppDS [O] Address of a variable to receive the interface pointer.
490 * pUnkOuter [I] Must be NULL.
492 * RETURNS
493 * Success: DS_OK
494 * Failure: DSERR_ALLOCATED, DSERR_INVALIDPARAM, DSERR_NOAGGREGATION,
495 * DSERR_NODRIVER, DSERR_OUTOFMEMORY
497 HRESULT WINAPI DirectSoundCreate(
498 LPCGUID lpcGUID,
499 LPDIRECTSOUND *ppDS,
500 IUnknown *pUnkOuter)
502 HRESULT hr;
503 LPDIRECTSOUND pDS;
505 TRACE("(%s,%p,%p)\n",debugstr_guid(lpcGUID),ppDS,pUnkOuter);
507 if (ppDS == NULL) {
508 WARN("invalid parameter: ppDS == NULL\n");
509 return DSERR_INVALIDPARAM;
512 if (pUnkOuter != NULL) {
513 WARN("invalid parameter: pUnkOuter != NULL\n");
514 *ppDS = 0;
515 return DSERR_INVALIDPARAM;
518 hr = DSOUND_Create(&IID_IDirectSound, (void **)&pDS);
519 if (hr == DS_OK) {
520 hr = IDirectSound_Initialize(pDS, lpcGUID);
521 if (hr != DS_OK) {
522 if (hr != DSERR_ALREADYINITIALIZED) {
523 IDirectSound_Release(pDS);
524 pDS = 0;
525 } else
526 hr = DS_OK;
530 *ppDS = pDS;
532 return hr;
535 /*******************************************************************************
536 * DirectSoundCreate8 (DSOUND.11)
538 * Creates and initializes a DirectSound8 interface.
540 * PARAMS
541 * lpcGUID [I] Address of the GUID that identifies the sound device.
542 * ppDS [O] Address of a variable to receive the interface pointer.
543 * pUnkOuter [I] Must be NULL.
545 * RETURNS
546 * Success: DS_OK
547 * Failure: DSERR_ALLOCATED, DSERR_INVALIDPARAM, DSERR_NOAGGREGATION,
548 * DSERR_NODRIVER, DSERR_OUTOFMEMORY
550 HRESULT WINAPI DirectSoundCreate8(
551 LPCGUID lpcGUID,
552 LPDIRECTSOUND8 *ppDS,
553 IUnknown *pUnkOuter)
555 HRESULT hr;
556 LPDIRECTSOUND8 pDS;
558 TRACE("(%s,%p,%p)\n",debugstr_guid(lpcGUID),ppDS,pUnkOuter);
560 if (ppDS == NULL) {
561 WARN("invalid parameter: ppDS == NULL\n");
562 return DSERR_INVALIDPARAM;
565 if (pUnkOuter != NULL) {
566 WARN("invalid parameter: pUnkOuter != NULL\n");
567 *ppDS = 0;
568 return DSERR_INVALIDPARAM;
571 hr = DSOUND_Create8(&IID_IDirectSound8, (void **)&pDS);
572 if (hr == DS_OK) {
573 hr = IDirectSound8_Initialize(pDS, lpcGUID);
574 if (hr != DS_OK) {
575 if (hr != DSERR_ALREADYINITIALIZED) {
576 IDirectSound8_Release(pDS);
577 pDS = 0;
578 } else
579 hr = DS_OK;
583 *ppDS = pDS;
585 return hr;
588 /*******************************************************************************
589 * DirectSoundDevice
591 static HRESULT DirectSoundDevice_Create(DirectSoundDevice ** ppDevice)
593 DirectSoundDevice * device;
594 TRACE("(%p)\n", ppDevice);
596 /* Allocate memory */
597 device = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(DirectSoundDevice));
598 if (device == NULL) {
599 WARN("out of memory\n");
600 return DSERR_OUTOFMEMORY;
603 device->ref = 1;
604 device->priolevel = DSSCL_NORMAL;
605 device->state = STATE_STOPPED;
606 device->speaker_config = DSSPEAKER_COMBINED(DSSPEAKER_STEREO, DSSPEAKER_GEOMETRY_WIDE);
608 /* 3D listener initial parameters */
609 device->ds3dl.dwSize = sizeof(DS3DLISTENER);
610 device->ds3dl.vPosition.x = 0.0;
611 device->ds3dl.vPosition.y = 0.0;
612 device->ds3dl.vPosition.z = 0.0;
613 device->ds3dl.vVelocity.x = 0.0;
614 device->ds3dl.vVelocity.y = 0.0;
615 device->ds3dl.vVelocity.z = 0.0;
616 device->ds3dl.vOrientFront.x = 0.0;
617 device->ds3dl.vOrientFront.y = 0.0;
618 device->ds3dl.vOrientFront.z = 1.0;
619 device->ds3dl.vOrientTop.x = 0.0;
620 device->ds3dl.vOrientTop.y = 1.0;
621 device->ds3dl.vOrientTop.z = 0.0;
622 device->ds3dl.flDistanceFactor = DS3D_DEFAULTDISTANCEFACTOR;
623 device->ds3dl.flRolloffFactor = DS3D_DEFAULTROLLOFFFACTOR;
624 device->ds3dl.flDopplerFactor = DS3D_DEFAULTDOPPLERFACTOR;
626 device->prebuf = ds_snd_queue_max;
627 device->guid = GUID_NULL;
629 /* Set default wave format (may need it for waveOutOpen) */
630 device->pwfx = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(WAVEFORMATEXTENSIBLE));
631 device->primary_pwfx = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(WAVEFORMATEXTENSIBLE));
632 if (!device->pwfx || !device->primary_pwfx) {
633 WARN("out of memory\n");
634 HeapFree(GetProcessHeap(),0,device->primary_pwfx);
635 HeapFree(GetProcessHeap(),0,device->pwfx);
636 HeapFree(GetProcessHeap(),0,device);
637 return DSERR_OUTOFMEMORY;
640 device->pwfx->wFormatTag = WAVE_FORMAT_PCM;
641 device->pwfx->nSamplesPerSec = 22050;
642 device->pwfx->wBitsPerSample = 8;
643 device->pwfx->nChannels = 2;
644 device->pwfx->nBlockAlign = device->pwfx->wBitsPerSample * device->pwfx->nChannels / 8;
645 device->pwfx->nAvgBytesPerSec = device->pwfx->nSamplesPerSec * device->pwfx->nBlockAlign;
646 device->pwfx->cbSize = 0;
647 memcpy(device->primary_pwfx, device->pwfx, sizeof(*device->pwfx));
649 InitializeCriticalSection(&(device->mixlock));
650 device->mixlock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": DirectSoundDevice.mixlock");
652 RtlInitializeResource(&(device->buffer_list_lock));
654 *ppDevice = device;
656 return DS_OK;
659 static ULONG DirectSoundDevice_AddRef(DirectSoundDevice * device)
661 ULONG ref = InterlockedIncrement(&(device->ref));
662 TRACE("(%p) ref was %d\n", device, ref - 1);
663 return ref;
666 ULONG DirectSoundDevice_Release(DirectSoundDevice * device)
668 HRESULT hr;
669 ULONG ref = InterlockedDecrement(&(device->ref));
670 TRACE("(%p) ref was %u\n", device, ref + 1);
671 if (!ref) {
672 int i;
674 SetEvent(device->sleepev);
675 if (device->thread) {
676 WaitForSingleObject(device->thread, INFINITE);
677 CloseHandle(device->thread);
679 CloseHandle(device->sleepev);
681 EnterCriticalSection(&DSOUND_renderers_lock);
682 list_remove(&device->entry);
683 LeaveCriticalSection(&DSOUND_renderers_lock);
685 /* It is allowed to release this object even when buffers are playing */
686 if (device->buffers) {
687 WARN("%d secondary buffers not released\n", device->nrofbuffers);
688 for( i=0;i<device->nrofbuffers;i++)
689 secondarybuffer_destroy(device->buffers[i]);
692 hr = DSOUND_PrimaryDestroy(device);
693 if (hr != DS_OK)
694 WARN("DSOUND_PrimaryDestroy failed\n");
696 if(device->client)
697 IAudioClient_Release(device->client);
698 if(device->render)
699 IAudioRenderClient_Release(device->render);
700 if(device->clock)
701 IAudioClock_Release(device->clock);
702 if(device->volume)
703 IAudioStreamVolume_Release(device->volume);
705 HeapFree(GetProcessHeap(), 0, device->tmp_buffer);
706 HeapFree(GetProcessHeap(), 0, device->mix_buffer);
707 HeapFree(GetProcessHeap(), 0, device->buffer);
708 RtlDeleteResource(&device->buffer_list_lock);
709 device->mixlock.DebugInfo->Spare[0] = 0;
710 DeleteCriticalSection(&device->mixlock);
711 HeapFree(GetProcessHeap(),0,device);
712 TRACE("(%p) released\n", device);
714 return ref;
717 BOOL DSOUND_check_supported(IAudioClient *client, DWORD rate,
718 DWORD depth, WORD channels)
720 WAVEFORMATEX fmt, *junk;
721 HRESULT hr;
723 fmt.wFormatTag = WAVE_FORMAT_PCM;
724 fmt.nChannels = channels;
725 fmt.nSamplesPerSec = rate;
726 fmt.wBitsPerSample = depth;
727 fmt.nBlockAlign = (channels * depth) / 8;
728 fmt.nAvgBytesPerSec = rate * fmt.nBlockAlign;
729 fmt.cbSize = 0;
731 hr = IAudioClient_IsFormatSupported(client, AUDCLNT_SHAREMODE_SHARED, &fmt, &junk);
732 if(SUCCEEDED(hr))
733 CoTaskMemFree(junk);
735 return hr == S_OK;
738 HRESULT DirectSoundDevice_Initialize(DirectSoundDevice ** ppDevice, LPCGUID lpcGUID)
740 HRESULT hr = DS_OK;
741 GUID devGUID;
742 DirectSoundDevice *device;
743 IMMDevice *mmdevice;
745 TRACE("(%p,%s)\n",ppDevice,debugstr_guid(lpcGUID));
747 if (*ppDevice != NULL) {
748 WARN("already initialized\n");
749 return DSERR_ALREADYINITIALIZED;
752 /* Default device? */
753 if (!lpcGUID || IsEqualGUID(lpcGUID, &GUID_NULL))
754 lpcGUID = &DSDEVID_DefaultPlayback;
756 if(IsEqualGUID(lpcGUID, &DSDEVID_DefaultCapture) ||
757 IsEqualGUID(lpcGUID, &DSDEVID_DefaultVoiceCapture))
758 return DSERR_NODRIVER;
760 if (GetDeviceID(lpcGUID, &devGUID) != DS_OK) {
761 WARN("invalid parameter: lpcGUID\n");
762 return DSERR_INVALIDPARAM;
765 hr = get_mmdevice(eRender, &devGUID, &mmdevice);
766 if(FAILED(hr))
767 return hr;
769 EnterCriticalSection(&DSOUND_renderers_lock);
771 LIST_FOR_EACH_ENTRY(device, &DSOUND_renderers, DirectSoundDevice, entry){
772 if(IsEqualGUID(&device->guid, &devGUID)){
773 IMMDevice_Release(mmdevice);
774 DirectSoundDevice_AddRef(device);
775 *ppDevice = device;
776 LeaveCriticalSection(&DSOUND_renderers_lock);
777 return DS_OK;
781 hr = DirectSoundDevice_Create(&device);
782 if(FAILED(hr)){
783 WARN("DirectSoundDevice_Create failed\n");
784 IMMDevice_Release(mmdevice);
785 LeaveCriticalSection(&DSOUND_renderers_lock);
786 return hr;
789 device->mmdevice = mmdevice;
790 device->guid = devGUID;
791 device->sleepev = CreateEventW(0, 0, 0, 0);
793 hr = DSOUND_ReopenDevice(device, FALSE);
794 if (FAILED(hr))
796 HeapFree(GetProcessHeap(), 0, device);
797 LeaveCriticalSection(&DSOUND_renderers_lock);
798 IMMDevice_Release(mmdevice);
799 WARN("DSOUND_ReopenDevice failed: %08x\n", hr);
800 return hr;
803 ZeroMemory(&device->drvcaps, sizeof(device->drvcaps));
805 if(DSOUND_check_supported(device->client, 11025, 8, 1) ||
806 DSOUND_check_supported(device->client, 22050, 8, 1) ||
807 DSOUND_check_supported(device->client, 44100, 8, 1) ||
808 DSOUND_check_supported(device->client, 48000, 8, 1) ||
809 DSOUND_check_supported(device->client, 96000, 8, 1))
810 device->drvcaps.dwFlags |= DSCAPS_PRIMARY8BIT | DSCAPS_PRIMARYMONO;
812 if(DSOUND_check_supported(device->client, 11025, 16, 1) ||
813 DSOUND_check_supported(device->client, 22050, 16, 1) ||
814 DSOUND_check_supported(device->client, 44100, 16, 1) ||
815 DSOUND_check_supported(device->client, 48000, 16, 1) ||
816 DSOUND_check_supported(device->client, 96000, 16, 1))
817 device->drvcaps.dwFlags |= DSCAPS_PRIMARY16BIT | DSCAPS_PRIMARYMONO;
819 if(DSOUND_check_supported(device->client, 11025, 8, 2) ||
820 DSOUND_check_supported(device->client, 22050, 8, 2) ||
821 DSOUND_check_supported(device->client, 44100, 8, 2) ||
822 DSOUND_check_supported(device->client, 48000, 8, 2) ||
823 DSOUND_check_supported(device->client, 96000, 8, 2))
824 device->drvcaps.dwFlags |= DSCAPS_PRIMARY8BIT | DSCAPS_PRIMARYSTEREO;
826 if(DSOUND_check_supported(device->client, 11025, 16, 2) ||
827 DSOUND_check_supported(device->client, 22050, 16, 2) ||
828 DSOUND_check_supported(device->client, 44100, 16, 2) ||
829 DSOUND_check_supported(device->client, 48000, 16, 2) ||
830 DSOUND_check_supported(device->client, 96000, 16, 2))
831 device->drvcaps.dwFlags |= DSCAPS_PRIMARY16BIT | DSCAPS_PRIMARYSTEREO;
833 /* the dsound mixer supports all of the following */
834 device->drvcaps.dwFlags |= DSCAPS_SECONDARY8BIT | DSCAPS_SECONDARY16BIT;
835 device->drvcaps.dwFlags |= DSCAPS_SECONDARYMONO | DSCAPS_SECONDARYSTEREO;
836 device->drvcaps.dwFlags |= DSCAPS_CONTINUOUSRATE;
838 device->drvcaps.dwPrimaryBuffers = 1;
839 device->drvcaps.dwMinSecondarySampleRate = DSBFREQUENCY_MIN;
840 device->drvcaps.dwMaxSecondarySampleRate = DSBFREQUENCY_MAX;
841 device->drvcaps.dwMaxHwMixingAllBuffers = 1;
842 device->drvcaps.dwMaxHwMixingStaticBuffers = 1;
843 device->drvcaps.dwMaxHwMixingStreamingBuffers = 1;
845 ZeroMemory(&device->volpan, sizeof(device->volpan));
847 hr = DSOUND_PrimaryCreate(device);
848 if (hr == DS_OK) {
849 device->thread = CreateThread(0, 0, DSOUND_mixthread, device, 0, 0);
850 SetThreadPriority(device->thread, THREAD_PRIORITY_TIME_CRITICAL);
851 } else
852 WARN("DSOUND_PrimaryCreate failed: %08x\n", hr);
854 *ppDevice = device;
855 list_add_tail(&DSOUND_renderers, &device->entry);
857 LeaveCriticalSection(&DSOUND_renderers_lock);
859 return hr;
862 HRESULT DirectSoundDevice_CreateSoundBuffer(
863 DirectSoundDevice * device,
864 LPCDSBUFFERDESC dsbd,
865 LPLPDIRECTSOUNDBUFFER ppdsb,
866 LPUNKNOWN lpunk,
867 BOOL from8)
869 HRESULT hres = DS_OK;
870 TRACE("(%p,%p,%p,%p)\n",device,dsbd,ppdsb,lpunk);
872 if (device == NULL) {
873 WARN("not initialized\n");
874 return DSERR_UNINITIALIZED;
877 if (dsbd == NULL) {
878 WARN("invalid parameter: dsbd == NULL\n");
879 return DSERR_INVALIDPARAM;
882 if (dsbd->dwSize != sizeof(DSBUFFERDESC) &&
883 dsbd->dwSize != sizeof(DSBUFFERDESC1)) {
884 WARN("invalid parameter: dsbd\n");
885 return DSERR_INVALIDPARAM;
888 if (ppdsb == NULL) {
889 WARN("invalid parameter: ppdsb == NULL\n");
890 return DSERR_INVALIDPARAM;
892 *ppdsb = NULL;
894 if (TRACE_ON(dsound)) {
895 TRACE("(structsize=%d)\n",dsbd->dwSize);
896 TRACE("(flags=0x%08x:\n",dsbd->dwFlags);
897 _dump_DSBCAPS(dsbd->dwFlags);
898 TRACE(")\n");
899 TRACE("(bufferbytes=%d)\n",dsbd->dwBufferBytes);
900 TRACE("(lpwfxFormat=%p)\n",dsbd->lpwfxFormat);
903 if (dsbd->dwFlags & DSBCAPS_LOCHARDWARE &&
904 !(dsbd->dwFlags & DSBCAPS_PRIMARYBUFFER)) {
905 TRACE("LOCHARDWARE is not supported, returning E_NOTIMPL\n");
906 return E_NOTIMPL;
909 if (dsbd->dwFlags & DSBCAPS_PRIMARYBUFFER) {
910 if (dsbd->lpwfxFormat != NULL) {
911 WARN("invalid parameter: dsbd->lpwfxFormat must be NULL for "
912 "primary buffer\n");
913 return DSERR_INVALIDPARAM;
916 if (device->primary) {
917 WARN("Primary Buffer already created\n");
918 IDirectSoundBuffer_AddRef((LPDIRECTSOUNDBUFFER8)(device->primary));
919 *ppdsb = (LPDIRECTSOUNDBUFFER)(device->primary);
920 } else {
921 hres = primarybuffer_create(device, &device->primary, dsbd);
922 if (device->primary) {
923 *ppdsb = (IDirectSoundBuffer*)&device->primary->IDirectSoundBuffer8_iface;
924 device->primary->dsbd.dwFlags &= ~(DSBCAPS_LOCHARDWARE | DSBCAPS_LOCSOFTWARE);
925 device->primary->dsbd.dwFlags |= DSBCAPS_LOCSOFTWARE;
926 } else
927 WARN("primarybuffer_create() failed\n");
929 } else {
930 IDirectSoundBufferImpl * dsb;
931 WAVEFORMATEXTENSIBLE *pwfxe;
933 if (dsbd->lpwfxFormat == NULL) {
934 WARN("invalid parameter: dsbd->lpwfxFormat can't be NULL for "
935 "secondary buffer\n");
936 return DSERR_INVALIDPARAM;
938 pwfxe = (WAVEFORMATEXTENSIBLE*)dsbd->lpwfxFormat;
940 if (pwfxe->Format.wFormatTag == WAVE_FORMAT_EXTENSIBLE)
942 /* check if cbSize is at least 22 bytes */
943 if (pwfxe->Format.cbSize < (sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX)))
945 WARN("Too small a cbSize %u\n", pwfxe->Format.cbSize);
946 return DSERR_INVALIDPARAM;
949 /* cbSize should be 22 bytes, with one possible exception */
950 if (pwfxe->Format.cbSize > (sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX)) &&
951 !((IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM) || IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)) &&
952 pwfxe->Format.cbSize == sizeof(WAVEFORMATEXTENSIBLE)))
954 WARN("Too big a cbSize %u\n", pwfxe->Format.cbSize);
955 return DSERR_CONTROLUNAVAIL;
958 if ((!IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM)) && (!IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)))
960 if (!IsEqualGUID(&pwfxe->SubFormat, &GUID_NULL))
961 FIXME("SubFormat %s not supported right now.\n", debugstr_guid(&pwfxe->SubFormat));
962 return DSERR_INVALIDPARAM;
964 if (pwfxe->Samples.wValidBitsPerSample > dsbd->lpwfxFormat->wBitsPerSample)
966 WARN("Samples.wValidBitsPerSample(%d) > Format.wBitsPerSample (%d)\n", pwfxe->Samples.wValidBitsPerSample, pwfxe->Format.wBitsPerSample);
967 return DSERR_INVALIDPARAM;
969 if (pwfxe->Samples.wValidBitsPerSample && pwfxe->Samples.wValidBitsPerSample < dsbd->lpwfxFormat->wBitsPerSample)
971 FIXME("Non-packed formats not supported right now: %d/%d\n", pwfxe->Samples.wValidBitsPerSample, dsbd->lpwfxFormat->wBitsPerSample);
972 return DSERR_CONTROLUNAVAIL;
976 TRACE("(formattag=0x%04x,chans=%d,samplerate=%d,"
977 "bytespersec=%d,blockalign=%d,bitspersamp=%d,cbSize=%d)\n",
978 dsbd->lpwfxFormat->wFormatTag, dsbd->lpwfxFormat->nChannels,
979 dsbd->lpwfxFormat->nSamplesPerSec,
980 dsbd->lpwfxFormat->nAvgBytesPerSec,
981 dsbd->lpwfxFormat->nBlockAlign,
982 dsbd->lpwfxFormat->wBitsPerSample, dsbd->lpwfxFormat->cbSize);
984 if (from8 && (dsbd->dwFlags & DSBCAPS_CTRL3D) && (dsbd->lpwfxFormat->nChannels != 1)) {
985 WARN("invalid parameter: 3D buffer format must be mono\n");
986 return DSERR_INVALIDPARAM;
989 hres = IDirectSoundBufferImpl_Create(device, &dsb, dsbd);
990 if (dsb)
991 *ppdsb = (IDirectSoundBuffer*)&dsb->IDirectSoundBuffer8_iface;
992 else
993 WARN("IDirectSoundBufferImpl_Create failed\n");
996 return hres;
999 HRESULT DirectSoundDevice_DuplicateSoundBuffer(
1000 DirectSoundDevice * device,
1001 LPDIRECTSOUNDBUFFER psb,
1002 LPLPDIRECTSOUNDBUFFER ppdsb)
1004 HRESULT hres = DS_OK;
1005 IDirectSoundBufferImpl* dsb;
1006 TRACE("(%p,%p,%p)\n",device,psb,ppdsb);
1008 if (device == NULL) {
1009 WARN("not initialized\n");
1010 return DSERR_UNINITIALIZED;
1013 if (psb == NULL) {
1014 WARN("invalid parameter: psb == NULL\n");
1015 return DSERR_INVALIDPARAM;
1018 if (ppdsb == NULL) {
1019 WARN("invalid parameter: ppdsb == NULL\n");
1020 return DSERR_INVALIDPARAM;
1023 /* make sure we have a secondary buffer */
1024 if (psb == (IDirectSoundBuffer *)&device->primary->IDirectSoundBuffer8_iface) {
1025 WARN("trying to duplicate primary buffer\n");
1026 *ppdsb = NULL;
1027 return DSERR_INVALIDCALL;
1030 /* duplicate the actual buffer implementation */
1031 hres = IDirectSoundBufferImpl_Duplicate(device, &dsb, (IDirectSoundBufferImpl*)psb);
1032 if (hres == DS_OK)
1033 *ppdsb = (IDirectSoundBuffer*)&dsb->IDirectSoundBuffer8_iface;
1034 else
1035 WARN("IDirectSoundBufferImpl_Duplicate failed\n");
1037 return hres;
1041 * Add secondary buffer to buffer list.
1042 * Gets exclusive access to buffer for writing.
1044 HRESULT DirectSoundDevice_AddBuffer(
1045 DirectSoundDevice * device,
1046 IDirectSoundBufferImpl * pDSB)
1048 IDirectSoundBufferImpl **newbuffers;
1049 HRESULT hr = DS_OK;
1051 TRACE("(%p, %p)\n", device, pDSB);
1053 RtlAcquireResourceExclusive(&(device->buffer_list_lock), TRUE);
1055 if (device->buffers)
1056 newbuffers = HeapReAlloc(GetProcessHeap(),0,device->buffers,sizeof(IDirectSoundBufferImpl*)*(device->nrofbuffers+1));
1057 else
1058 newbuffers = HeapAlloc(GetProcessHeap(),0,sizeof(IDirectSoundBufferImpl*)*(device->nrofbuffers+1));
1060 if (newbuffers) {
1061 device->buffers = newbuffers;
1062 device->buffers[device->nrofbuffers] = pDSB;
1063 device->nrofbuffers++;
1064 TRACE("buffer count is now %d\n", device->nrofbuffers);
1065 } else {
1066 ERR("out of memory for buffer list! Current buffer count is %d\n", device->nrofbuffers);
1067 hr = DSERR_OUTOFMEMORY;
1070 RtlReleaseResource(&(device->buffer_list_lock));
1072 return hr;
1076 * Remove secondary buffer from buffer list.
1077 * Gets exclusive access to buffer for writing.
1079 void DirectSoundDevice_RemoveBuffer(DirectSoundDevice * device, IDirectSoundBufferImpl * pDSB)
1081 int i;
1083 TRACE("(%p, %p)\n", device, pDSB);
1085 RtlAcquireResourceExclusive(&(device->buffer_list_lock), TRUE);
1087 if (device->nrofbuffers == 1) {
1088 assert(device->buffers[0] == pDSB);
1089 HeapFree(GetProcessHeap(), 0, device->buffers);
1090 device->buffers = NULL;
1091 } else {
1092 for (i = 0; i < device->nrofbuffers; i++) {
1093 if (device->buffers[i] == pDSB) {
1094 /* Put the last buffer of the list in the (now empty) position */
1095 device->buffers[i] = device->buffers[device->nrofbuffers - 1];
1096 break;
1100 device->nrofbuffers--;
1101 TRACE("buffer count is now %d\n", device->nrofbuffers);
1103 RtlReleaseResource(&(device->buffer_list_lock));