The buffer's in_type field is only set when using the buffer_samples API
[dsound-openal.git] / dsound8.c
blob177ed7f7a45b31a330ffaf1d4cfa660292ba574e
1 /* DirectSound COM interface
3 * Copyright 2009 Maarten Lankhorst
5 * Some code taken from the original dsound-openal implementation
6 * Copyright 2007-2009 Chris Robinson
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 <stdarg.h>
25 #ifdef __WINESRC__
27 #define COBJMACROS
28 #define NONAMELESSSTRUCT
29 #define NONAMELESSUNION
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winuser.h"
33 #include "winnls.h"
34 #include "winreg.h"
35 #include "mmsystem.h"
36 #include "winternl.h"
37 #include "mmddk.h"
38 #include "wine/debug.h"
39 #include "dsound.h"
41 #include "dsound_private.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(dsound);
45 #else
47 #define WINVER 0x0600
48 #include <windows.h>
49 #include <dsound.h>
51 #include "dsound_private.h"
53 #ifndef DSSPEAKER_7POINT1
54 #define DSSPEAKER_7POINT1 7
55 #endif
57 #endif
59 static DS8Impl **devicelist;
60 static UINT devicelistsize;
62 static const IDirectSound8Vtbl DS8_Vtbl;
64 static inline DS8Impl *impl_from_IDirectSound8(IDirectSound8 *iface)
66 return CONTAINING_RECORD(iface, DS8Impl, IDirectSound8_iface);
69 HRESULT DSOUND_Create(REFIID riid, void **ds)
71 HRESULT hr;
73 if(IsEqualIID(riid, &IID_IDirectSound8))
74 return E_NOINTERFACE;
75 hr = DSOUND_Create8(riid, ds);
76 if(hr == S_OK)
78 DS8Impl *impl = impl_from_IDirectSound8(*ds);
79 impl->is_8 = FALSE;
81 return hr;
84 static void DS8Impl_Destroy(DS8Impl *This);
86 static const WCHAR speakerconfigkey[] = {
87 'S','Y','S','T','E','M','\\',
88 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
89 'C','o','n','t','r','o','l','\\',
90 'M','e','d','i','a','R','e','s','o','u','r','c','e','s','\\',
91 'D','i','r','e','c','t','S','o','u','n','d','\\',
92 'S','p','e','a','k','e','r',' ','C','o','n','f','i','g','u','r','a','t','i','o','n',0
95 static const WCHAR speakerconfig[] = {
96 'S','p','e','a','k','e','r',' ','C','o','n','f','i','g','u','r','a','t','i','o','n',0
99 HRESULT DSOUND_Create8(REFIID riid, LPVOID *ds)
101 DS8Impl *This;
102 HKEY regkey;
103 HRESULT hr;
105 *ds = NULL;
106 This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
107 if(!This)
108 return E_OUTOFMEMORY;
109 This->IDirectSound8_iface.lpVtbl = (IDirectSound8Vtbl*)&DS8_Vtbl;
111 This->is_8 = TRUE;
112 This->speaker_config = DSSPEAKER_COMBINED(DSSPEAKER_5POINT1, DSSPEAKER_GEOMETRY_WIDE);
114 if(RegOpenKeyExW(HKEY_LOCAL_MACHINE, speakerconfigkey, 0, KEY_READ, &regkey) == ERROR_SUCCESS)
116 DWORD type, conf, confsize = sizeof(DWORD);
118 if(RegQueryValueExW(regkey, speakerconfig, NULL, &type, (BYTE*)&conf, &confsize) == ERROR_SUCCESS)
120 if(type == REG_DWORD)
121 This->speaker_config = conf;
124 RegCloseKey(regkey);
126 /*RegGetValueW(HKEY_LOCAL_MACHINE, speakerconfigkey, speakerconfig, RRF_RT_REG_DWORD, NULL, &This->speaker_config, NULL);*/
128 hr = IDirectSound8_QueryInterface(&This->IDirectSound8_iface, riid, ds);
129 if(FAILED(hr))
130 DS8Impl_Destroy(This);
131 else
133 void *temp;
135 EnterCriticalSection(&openal_crst);
136 if(devicelist)
137 temp = HeapReAlloc(GetProcessHeap(), 0, devicelist, sizeof(*devicelist)*(devicelistsize+1));
138 else
139 temp = HeapAlloc(GetProcessHeap(), 0, sizeof(*devicelist)*(devicelistsize+1));
140 if(temp)
142 devicelist = temp;
143 devicelist[devicelistsize++] = This;
145 LeaveCriticalSection(&openal_crst);
147 return hr;
150 static void DS8Impl_Destroy(DS8Impl *This)
152 UINT i;
154 EnterCriticalSection(&openal_crst);
155 for(i = 0;i < devicelistsize;i++)
157 if(devicelist[i] == This)
159 devicelist[i] = devicelist[--devicelistsize];
160 if(devicelistsize == 0)
162 HeapFree(GetProcessHeap(), 0, devicelist);
163 devicelist = NULL;
165 break;
168 LeaveCriticalSection(&openal_crst);
170 if(This->deviceref && InterlockedDecrement(This->deviceref) == 0)
172 if(This->primary)
173 DS8Primary_Destroy(This->primary);
174 if(This->device)
175 alcCloseDevice(This->device);
177 HeapFree(GetProcessHeap(), 0, This->deviceref);
179 else
181 EnterCriticalSection(&openal_crst);
182 if(This->primary && This->primary->parent == This)
184 /* If the primary is referencing this as its parent, update it to
185 * reference another handle for the device */
186 for(i = 0;i < devicelistsize;i++)
188 if(devicelist[i]->primary == This->primary)
190 This->primary->parent = devicelist[i];
191 break;
195 LeaveCriticalSection(&openal_crst);
198 HeapFree(GetProcessHeap(), 0, This);
202 static HRESULT WINAPI DS8_QueryInterface(IDirectSound8 *iface, REFIID riid, LPVOID *ppv)
204 DS8Impl *This = impl_from_IDirectSound8(iface);
206 TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ppv);
208 *ppv = NULL;
209 if(IsEqualIID(riid, &IID_IUnknown) ||
210 IsEqualIID(riid, &IID_IDirectSound))
211 *ppv = &This->IDirectSound8_iface;
212 else if((IsEqualIID(riid, &IID_IDirectSound8)))
214 if(This->is_8)
215 *ppv = &This->IDirectSound8_iface;
217 else
218 FIXME("Unhandled GUID: %s\n", debugstr_guid(riid));
220 if(*ppv)
222 IUnknown_AddRef((IUnknown*)*ppv);
223 return S_OK;
226 return E_NOINTERFACE;
229 static ULONG WINAPI DS8_AddRef(IDirectSound8 *iface)
231 DS8Impl *This = impl_from_IDirectSound8(iface);
232 LONG ref;
234 ref = InterlockedIncrement(&This->ref);
235 TRACE("Reference count incremented to %d\n", ref);
237 return ref;
240 static ULONG WINAPI DS8_Release(IDirectSound8 *iface)
242 DS8Impl *This = impl_from_IDirectSound8(iface);
243 LONG ref;
245 ref = InterlockedDecrement(&This->ref);
246 TRACE("Reference count decremented to %d\n", ref);
247 if(ref == 0)
248 DS8Impl_Destroy(This);
250 return ref;
253 static HRESULT WINAPI DS8_CreateSoundBuffer(IDirectSound8 *iface, LPCDSBUFFERDESC desc, LPLPDIRECTSOUNDBUFFER buf, IUnknown *pUnkOuter)
255 DS8Impl *This = impl_from_IDirectSound8(iface);
256 HRESULT hr;
258 TRACE("(%p)->(%p, %p, %p)\n", iface, desc, buf, pUnkOuter);
260 if(!buf)
262 WARN("buf is null\n");
263 return DSERR_INVALIDPARAM;
265 *buf = NULL;
267 if(pUnkOuter)
269 WARN("Aggregation isn't supported\n");
270 return DSERR_NOAGGREGATION;
272 if(!desc || desc->dwSize < sizeof(DSBUFFERDESC1))
274 WARN("Invalid buffer %p/%u\n", desc, desc?desc->dwSize:0);
275 return DSERR_INVALIDPARAM;
278 TRACE("Requested buffer:\n"
279 " Size = %u\n"
280 " Flags = 0x%08x\n"
281 " BufferBytes = %u\n",
282 (UINT)desc->dwSize, (UINT)desc->dwFlags,
283 (UINT)desc->dwBufferBytes);
285 if(desc->dwSize >= sizeof(DSBUFFERDESC))
287 if(!(desc->dwFlags&DSBCAPS_CTRL3D))
289 if(!IsEqualGUID(&desc->guid3DAlgorithm, &GUID_NULL))
291 WARN("Invalid 3D algorithm GUID specified for non-3D buffer: %s\n", debugstr_guid(&desc->guid3DAlgorithm));
292 return DSERR_INVALIDPARAM;
295 else
296 TRACE("Requested 3D algorithm GUID: %s\n", debugstr_guid(&desc->guid3DAlgorithm));
299 /* OpenAL doesn't support playing with 3d and panning at same time.. */
300 if((desc->dwFlags&(DSBCAPS_CTRL3D|DSBCAPS_CTRLPAN)) == (DSBCAPS_CTRL3D|DSBCAPS_CTRLPAN))
302 if(!This->is_8)
303 ERR("Cannot create buffers with 3D and panning control\n");
304 else
305 WARN("Cannot create buffers with 3D and panning control\n");
306 return DSERR_INVALIDPARAM;
309 EnterCriticalSection(&openal_crst);
310 if(!This->device)
311 hr = DSERR_UNINITIALIZED;
312 else if((desc->dwFlags&DSBCAPS_PRIMARYBUFFER))
314 IDirectSoundBuffer *prim = &This->primary->IDirectSoundBuffer_iface;
316 hr = S_OK;
317 if(IDirectSoundBuffer_AddRef(prim) == 1)
319 hr = IDirectSoundBuffer_Initialize(prim, (IDirectSound*)&This->IDirectSound8_iface, desc);
320 if(FAILED(hr))
322 IDirectSoundBuffer_Release(prim);
323 prim = NULL;
326 *buf = prim;
328 else
330 DS8Buffer *dsb;
332 hr = DS8Buffer_Create(&dsb, This->primary, NULL);
333 if(SUCCEEDED(hr))
335 hr = IDirectSoundBuffer8_Initialize(&dsb->IDirectSoundBuffer8_iface, (IDirectSound*)&This->IDirectSound8_iface, desc);
336 if(FAILED(hr))
337 IDirectSoundBuffer8_Release(&dsb->IDirectSoundBuffer8_iface);
338 else
340 dsb->bufferlost = (This->prio_level == DSSCL_WRITEPRIMARY);
341 *buf = (IDirectSoundBuffer*)&dsb->IDirectSoundBuffer8_iface;
345 LeaveCriticalSection(&openal_crst);
347 TRACE("%08x\n", hr);
348 return hr;
351 static HRESULT WINAPI DS8_GetCaps(IDirectSound8 *iface, LPDSCAPS caps)
353 DS8Impl *This = impl_from_IDirectSound8(iface);
354 HRESULT hr = S_OK;
356 TRACE("(%p)->(%p)\n", iface, caps);
358 EnterCriticalSection(&openal_crst);
359 if(!This->device)
360 hr = DSERR_UNINITIALIZED;
361 else if(!caps || caps->dwSize < sizeof(*caps))
362 hr = DSERR_INVALIDPARAM;
363 else
365 LONG count = This->primary->max_sources;
367 setALContext(This->primary->ctx);
368 caps->dwFlags = DSCAPS_CONTINUOUSRATE |
369 DSCAPS_PRIMARY16BIT | DSCAPS_PRIMARYSTEREO |
370 DSCAPS_PRIMARY8BIT | DSCAPS_PRIMARYMONO |
371 DSCAPS_SECONDARY16BIT | DSCAPS_SECONDARY8BIT |
372 DSCAPS_SECONDARYMONO | DSCAPS_SECONDARYSTEREO;
373 caps->dwPrimaryBuffers = 1;
374 caps->dwMinSecondarySampleRate = DSBFREQUENCY_MIN;
375 caps->dwMaxSecondarySampleRate = DSBFREQUENCY_MAX;
376 caps->dwMaxHwMixingAllBuffers =
377 caps->dwMaxHwMixingStaticBuffers =
378 caps->dwMaxHwMixingStreamingBuffers =
379 caps->dwMaxHw3DAllBuffers =
380 caps->dwMaxHw3DStaticBuffers =
381 caps->dwMaxHw3DStreamingBuffers = count;
382 count -= This->primary->nbuffers;
383 if(count < 0)
385 ERR("How did the count drop below 0?\n");
386 count = 0;
388 caps->dwFreeHwMixingAllBuffers =
389 caps->dwFreeHwMixingStaticBuffers =
390 caps->dwFreeHwMixingStreamingBuffers =
391 caps->dwFreeHw3DAllBuffers =
392 caps->dwFreeHw3DStaticBuffers =
393 caps->dwFreeHw3DStreamingBuffers = count;
394 caps->dwTotalHwMemBytes =
395 caps->dwFreeHwMemBytes = 64 * 1024 * 1024;
396 caps->dwMaxContigFreeHwMemBytes = caps->dwFreeHwMemBytes;
397 caps->dwUnlockTransferRateHwBuffers = 4096;
398 caps->dwPlayCpuOverheadSwBuffers = 0;
399 popALContext();
401 LeaveCriticalSection(&openal_crst);
403 return hr;
405 static HRESULT WINAPI DS8_DuplicateSoundBuffer(IDirectSound8 *iface, IDirectSoundBuffer *in, IDirectSoundBuffer **out)
407 DS8Impl *This = impl_from_IDirectSound8(iface);
408 HRESULT hr = S_OK;
410 TRACE("(%p)->(%p, %p)\n", iface, in, out);
412 EnterCriticalSection(&openal_crst);
413 if(!This->device)
414 hr = DSERR_UNINITIALIZED;
415 else if(!in || !out)
416 hr = DSERR_INVALIDPARAM;
417 else
419 DSBCAPS caps;
420 DS8Buffer *buf;
422 *out = NULL;
424 caps.dwSize = sizeof(caps);
425 hr = IDirectSoundBuffer_GetCaps(in, &caps);
426 if(SUCCEEDED(hr) && (caps.dwFlags&DSBCAPS_PRIMARYBUFFER))
428 WARN("Cannot duplicate buffer %p, which has DSBCAPS_PRIMARYBUFFER\n", in);
429 hr = DSERR_INVALIDPARAM;
431 if(SUCCEEDED(hr) && (caps.dwFlags&DSBCAPS_CTRLFX))
433 WARN("Cannot duplicate buffer %p, which has DSBCAPS_CTRLFX\n", in);
434 hr = DSERR_INVALIDPARAM;
436 if(SUCCEEDED(hr))
437 hr = DS8Buffer_Create(&buf, This->primary, in);
438 if(SUCCEEDED(hr))
440 *out = (IDirectSoundBuffer*)&buf->IDirectSoundBuffer8_iface;
441 hr = IDirectSoundBuffer_Initialize(*out, NULL, NULL);
443 if(SUCCEEDED(hr))
445 /* According to MSDN volume isn't copied */
446 if((caps.dwFlags&DSBCAPS_CTRLPAN))
448 LONG pan;
449 if(SUCCEEDED(IDirectSoundBuffer_GetPan(in, &pan)))
450 IDirectSoundBuffer_SetPan(*out, pan);
452 if((caps.dwFlags&DSBCAPS_CTRLFREQUENCY))
454 DWORD freq;
455 if(SUCCEEDED(IDirectSoundBuffer_GetFrequency(in, &freq)))
456 IDirectSoundBuffer_SetFrequency(*out, freq);
458 if((caps.dwFlags&DSBCAPS_CTRL3D))
460 IDirectSound3DBuffer *buf3d;
461 DS3DBUFFER DS3DBuffer;
462 HRESULT subhr;
464 subhr = IDirectSound_QueryInterface(in, &IID_IDirectSound3DBuffer, (void**)&buf3d);
465 if(SUCCEEDED(subhr))
467 DS3DBuffer.dwSize = sizeof(DS3DBuffer);
468 subhr = IDirectSound3DBuffer_GetAllParameters(buf3d, &DS3DBuffer);
469 IDirectSound3DBuffer_Release(buf3d);
471 if(SUCCEEDED(subhr))
472 subhr = IDirectSoundBuffer_QueryInterface(*out, &IID_IDirectSound3DBuffer, (void**)&buf3d);
473 if(SUCCEEDED(subhr))
475 subhr = IDirectSound3DBuffer_SetAllParameters(buf3d, &DS3DBuffer, DS3D_IMMEDIATE);
476 IDirectSound3DBuffer_Release(buf3d);
480 if(FAILED(hr))
482 if(*out)
483 IDirectSoundBuffer_Release(*out);
484 *out = NULL;
485 goto out;
488 out:
489 LeaveCriticalSection(&openal_crst);
490 return hr;
493 static HRESULT WINAPI DS8_SetCooperativeLevel(IDirectSound8 *iface, HWND hwnd, DWORD level)
495 DS8Impl *This = impl_from_IDirectSound8(iface);
496 HRESULT hr = S_OK;
498 TRACE("(%p)->(%p, %u)\n", iface, hwnd, level);
500 EnterCriticalSection(&openal_crst);
501 if(!This->device)
502 hr = DSERR_UNINITIALIZED;
503 else if(level > DSSCL_WRITEPRIMARY || level < DSSCL_NORMAL)
504 hr = E_INVALIDARG;
505 else if(level == DSSCL_WRITEPRIMARY && (This->prio_level != DSSCL_WRITEPRIMARY))
507 DWORD i, state;
509 for(i = 0; i < This->primary->nbuffers; ++i)
511 DS8Buffer *buf = This->primary->buffers[i];
512 if(FAILED(IDirectSoundBuffer_GetStatus(&buf->IDirectSoundBuffer8_iface, &state)) ||
513 (state&DSBSTATUS_PLAYING))
515 WARN("DSSCL_WRITEPRIMARY set with playing buffers!\n");
516 hr = DSERR_INVALIDCALL;
517 goto out;
519 /* Mark buffer as lost */
520 buf->bufferlost = 1;
522 if(This->primary->write_emu)
524 ERR("Why was there a write_emu?\n");
525 /* Delete it */
526 IDirectSoundBuffer8_Release(This->primary->write_emu);
527 This->primary->write_emu = NULL;
529 if(This->primary->flags)
531 /* Primary has open references.. create write_emu */
532 DSBUFFERDESC desc;
533 DS8Buffer *emu;
535 memset(&desc, 0, sizeof(desc));
536 desc.dwSize = sizeof(desc);
537 desc.dwFlags = DSBCAPS_LOCHARDWARE | (This->primary->flags&DSBCAPS_CTRLPAN);
538 desc.dwBufferBytes = This->primary->buf_size;
539 desc.lpwfxFormat = &This->primary->format.Format;
541 hr = DS8Buffer_Create(&emu, This->primary, NULL);
542 if(SUCCEEDED(hr))
544 This->primary->write_emu = &emu->IDirectSoundBuffer8_iface;
545 hr = IDirectSoundBuffer8_Initialize(This->primary->write_emu, (IDirectSound*)&This->IDirectSound8_iface, &desc);
546 if(FAILED(hr))
548 IDirectSoundBuffer8_Release(This->primary->write_emu);
549 This->primary->write_emu = NULL;
554 else if(This->prio_level == DSSCL_WRITEPRIMARY && level != DSSCL_WRITEPRIMARY && This->primary->write_emu)
556 TRACE("Nuking write_emu\n");
557 /* Delete it */
558 IDirectSoundBuffer8_Release(This->primary->write_emu);
559 This->primary->write_emu = NULL;
561 if(SUCCEEDED(hr))
562 This->prio_level = level;
563 out:
564 LeaveCriticalSection(&openal_crst);
566 return hr;
569 static HRESULT WINAPI DS8_Compact(IDirectSound8 *iface)
571 DS8Impl *This = impl_from_IDirectSound8(iface);
572 HRESULT hr = S_OK;
574 TRACE("(%p)->()\n", iface);
576 EnterCriticalSection(&openal_crst);
577 if(!This->device)
578 hr = DSERR_UNINITIALIZED;
579 else if(This->prio_level < DSSCL_PRIORITY)
580 hr = DSERR_PRIOLEVELNEEDED;
581 LeaveCriticalSection(&openal_crst);
583 return hr;
586 static HRESULT WINAPI DS8_GetSpeakerConfig(IDirectSound8 *iface, DWORD *config)
588 DS8Impl *This = impl_from_IDirectSound8(iface);
589 HRESULT hr = S_OK;
591 TRACE("(%p)->(%p)\n", iface, config);
593 if(!config)
594 return DSERR_INVALIDPARAM;
596 EnterCriticalSection(&openal_crst);
597 if(!This->device)
598 hr = DSERR_UNINITIALIZED;
599 else
600 *config = This->speaker_config;
601 LeaveCriticalSection(&openal_crst);
603 return hr;
606 static HRESULT WINAPI DS8_SetSpeakerConfig(IDirectSound8 *iface, DWORD config)
608 DS8Impl *This = impl_from_IDirectSound8(iface);
609 HRESULT hr;
611 TRACE("(%p)->(0x%08x)\n", iface, config);
613 EnterCriticalSection(&openal_crst);
614 if(!This->device)
615 hr = DSERR_UNINITIALIZED;
616 else
618 HKEY key;
619 DWORD geo, speaker;
621 geo = DSSPEAKER_GEOMETRY(config);
622 speaker = DSSPEAKER_CONFIG(config);
624 hr = DSERR_INVALIDPARAM;
625 if(geo && (geo < DSSPEAKER_GEOMETRY_MIN || geo > DSSPEAKER_GEOMETRY_MAX))
627 WARN("Invalid speaker angle %u\n", geo);
628 goto out;
630 if(speaker < DSSPEAKER_HEADPHONE || speaker > DSSPEAKER_7POINT1)
632 WARN("Invalid speaker config %u\n", speaker);
633 goto out;
636 hr = DSERR_GENERIC;
637 if(!RegCreateKeyExW(HKEY_LOCAL_MACHINE, speakerconfigkey, 0, NULL, 0, KEY_WRITE, NULL, &key, NULL))
639 RegSetValueExW(key, speakerconfig, 0, REG_DWORD, (const BYTE*)&config, sizeof(DWORD));
640 This->speaker_config = config;
641 RegCloseKey(key);
642 hr = S_OK;
645 out:
646 LeaveCriticalSection(&openal_crst);
648 return hr;
651 static HRESULT WINAPI DS8_Initialize(IDirectSound8 *iface, const GUID *devguid)
653 DS8Impl *This = impl_from_IDirectSound8(iface);
654 const ALCchar *drv_name;
655 HRESULT hr;
656 UINT n;
658 TRACE("(%p)->(%s)\n", iface, debugstr_guid(devguid));
660 if(!openal_loaded)
661 return DSERR_NODRIVER;
663 if(!devguid)
664 devguid = &DSDEVID_DefaultPlayback;
666 EnterCriticalSection(&openal_crst);
668 hr = DSERR_ALREADYINITIALIZED;
669 if(This->device)
670 goto out;
672 hr = GetDeviceID(devguid, &This->guid);
673 if(FAILED(hr))
674 goto out;
676 for(n = 0;n < devicelistsize;n++)
678 if(devicelist[n]->device && devicelist[n]->is_8 == This->is_8 &&
679 IsEqualGUID(&devicelist[n]->guid, &This->guid))
681 TRACE("Matched already open device %p\n", devicelist[n]);
683 This->device = devicelist[n]->device;
684 This->primary = devicelist[n]->primary;
685 This->deviceref = devicelist[n]->deviceref;
686 InterlockedIncrement(This->deviceref);
688 hr = DS_OK;
689 goto out;
693 if(!This->deviceref)
695 hr = DSERR_OUTOFMEMORY;
696 if(!(This->deviceref=HeapAlloc(GetProcessHeap(), 0, sizeof(LONG))))
697 goto out;
698 This->deviceref[0] = 1;
701 hr = DSERR_NODRIVER;
702 if(!(drv_name=DSOUND_getdevicestrings()) ||
703 memcmp(&This->guid, &DSOUND_renderer_guid, sizeof(GUID)-1) != 0)
705 WARN("No device found\n");
706 goto out;
709 n = This->guid.Data4[7];
710 while(*drv_name && n--)
711 drv_name += strlen(drv_name) + 1;
712 if(!*drv_name)
714 WARN("No device string found\n");
715 goto out;
718 This->device = alcOpenDevice(drv_name);
719 if(!This->device)
721 alcGetError(NULL);
722 WARN("Couldn't open device \"%s\"\n", drv_name);
723 goto out;
725 TRACE("Opened device: %s\n", alcGetString(This->device, ALC_DEVICE_SPECIFIER));
727 hr = DS8Primary_Create(&This->primary, This);
728 if(FAILED(hr))
730 alcCloseDevice(This->device);
731 This->device = NULL;
734 out:
735 LeaveCriticalSection(&openal_crst);
737 return hr;
740 /* I, Maarten Lankhorst, hereby declare this driver certified
741 * What this means.. ? An extra bit set
743 static HRESULT WINAPI DS8_VerifyCertification(IDirectSound8 *iface, DWORD *certified)
745 DS8Impl *This = impl_from_IDirectSound8(iface);
746 HRESULT hr;
748 TRACE("(%p)->(%p)\n", iface, certified);
750 if(!certified)
751 return DSERR_INVALIDPARAM;
753 EnterCriticalSection(&openal_crst);
754 hr = S_OK;
755 if(!This->device)
756 hr = DSERR_UNINITIALIZED;
757 else
758 *certified = DS_CERTIFIED;
759 LeaveCriticalSection(&openal_crst);
761 return hr;
764 static const IDirectSound8Vtbl DS8_Vtbl =
766 DS8_QueryInterface,
767 DS8_AddRef,
768 DS8_Release,
769 DS8_CreateSoundBuffer,
770 DS8_GetCaps,
771 DS8_DuplicateSoundBuffer,
772 DS8_SetCooperativeLevel,
773 DS8_Compact,
774 DS8_GetSpeakerConfig,
775 DS8_SetSpeakerConfig,
776 DS8_Initialize,
777 DS8_VerifyCertification