2 * Tests basic sound playback in DirectSound.
3 * In particular we test each standard Windows sound format to make sure
4 * we handle the sound card/driver quirks correctly.
6 * Part of this test involves playing test tones. But this only makes
7 * sense if someone is going to carefully listen to it, and would only
8 * bother everyone else.
9 * So this is only done if the test is being run in interactive mode.
11 * Copyright (c) 2002-2004 Francois Gouget
13 * This library is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU Lesser General Public
15 * License as published by the Free Software Foundation; either
16 * version 2.1 of the License, or (at your option) any later version.
18 * This library is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * Lesser General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public
24 * License along with this library; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/test.h"
38 #include "dsound_test.h"
40 static HRESULT (WINAPI
*pDirectSoundEnumerateA
)(LPDSENUMCALLBACKA
,LPVOID
)=NULL
;
41 static HRESULT (WINAPI
*pDirectSoundCreate8
)(LPCGUID
,LPDIRECTSOUND8
*,LPUNKNOWN
)=NULL
;
43 int align(int length
, int align
)
45 return (length
/ align
) * align
;
48 static void IDirectSound8_test(LPDIRECTSOUND8 dso
, BOOL initialized
,
57 DWORD speaker_config
, new_speaker_config
;
60 /* Try to Query for objects */
61 rc
=IDirectSound8_QueryInterface(dso
,&IID_IUnknown
,(LPVOID
*)&unknown
);
62 ok(rc
==DS_OK
,"IDirectSound8_QueryInterface(IID_IUnknown) failed: %08x\n", rc
);
64 IDirectSound8_Release(unknown
);
66 rc
=IDirectSound8_QueryInterface(dso
,&IID_IDirectSound
,(LPVOID
*)&ds
);
67 ok(rc
==DS_OK
,"IDirectSound8_QueryInterface(IID_IDirectSound) failed: %08x\n", rc
);
69 IDirectSound_Release(ds
);
71 rc
=IDirectSound8_QueryInterface(dso
,&IID_IDirectSound8
,(LPVOID
*)&ds8
);
72 ok(rc
==DS_OK
,"IDirectSound8_QueryInterface(IID_IDirectSound8) "
73 "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
75 IDirectSound8_Release(ds8
);
77 if (initialized
== FALSE
) {
78 /* try uninitialized object */
79 rc
=IDirectSound8_GetCaps(dso
,0);
80 ok(rc
==DSERR_UNINITIALIZED
,"IDirectSound8_GetCaps(NULL) "
81 "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc
);
83 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
84 ok(rc
==DSERR_UNINITIALIZED
,"IDirectSound8_GetCaps() "
85 "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc
);
87 rc
=IDirectSound8_Compact(dso
);
88 ok(rc
==DSERR_UNINITIALIZED
,"IDirectSound8_Compact() "
89 "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc
);
91 rc
=IDirectSound8_GetSpeakerConfig(dso
,&speaker_config
);
92 ok(rc
==DSERR_UNINITIALIZED
,"IDirectSound8_GetSpeakerConfig() "
93 "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc
);
95 rc
=IDirectSound8_VerifyCertification(dso
, &certified
);
96 ok(rc
==DSERR_UNINITIALIZED
,"IDirectSound8_VerifyCertification() "
97 "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc
);
99 rc
=IDirectSound8_Initialize(dso
,lpGuid
);
100 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
101 "IDirectSound8_Initialize() failed: %08x\n",rc
);
102 if (rc
==DSERR_NODRIVER
) {
103 trace(" No Driver\n");
105 } else if (rc
==E_FAIL
) {
106 trace(" No Device\n");
108 } else if (rc
==DSERR_ALLOCATED
) {
109 trace(" Already In Use\n");
114 rc
=IDirectSound8_Initialize(dso
,lpGuid
);
115 ok(rc
==DSERR_ALREADYINITIALIZED
, "IDirectSound8_Initialize() "
116 "should have returned DSERR_ALREADYINITIALIZED: %08x\n", rc
);
118 /* DSOUND: Error: Invalid caps buffer */
119 rc
=IDirectSound8_GetCaps(dso
,0);
120 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound8_GetCaps() "
121 "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
123 ZeroMemory(&dscaps
, sizeof(dscaps
));
125 /* DSOUND: Error: Invalid caps buffer */
126 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
127 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound8_GetCaps() "
128 "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
130 dscaps
.dwSize
=sizeof(dscaps
);
132 /* DSOUND: Running on a certified driver */
133 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
134 ok(rc
==DS_OK
,"IDirectSound8_GetCaps() failed: %08x\n",rc
);
136 rc
=IDirectSound8_Compact(dso
);
137 ok(rc
==DSERR_PRIOLEVELNEEDED
,"IDirectSound8_Compact() failed: %08x\n", rc
);
139 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
140 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
142 rc
=IDirectSound8_Compact(dso
);
143 ok(rc
==DS_OK
,"IDirectSound8_Compact() failed: %08x\n",rc
);
145 rc
=IDirectSound8_GetSpeakerConfig(dso
,0);
146 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound8_GetSpeakerConfig(NULL) "
147 "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
149 rc
=IDirectSound8_GetSpeakerConfig(dso
,&speaker_config
);
150 ok(rc
==DS_OK
,"IDirectSound8_GetSpeakerConfig() failed: %08x\n", rc
);
152 speaker_config
= DSSPEAKER_COMBINED(DSSPEAKER_STEREO
,
153 DSSPEAKER_GEOMETRY_WIDE
);
154 rc
=IDirectSound8_SetSpeakerConfig(dso
,speaker_config
);
155 ok(rc
==DS_OK
,"IDirectSound8_SetSpeakerConfig() failed: %08x\n", rc
);
157 rc
=IDirectSound8_GetSpeakerConfig(dso
,&new_speaker_config
);
158 ok(rc
==DS_OK
,"IDirectSound8_GetSpeakerConfig() failed: %08x\n", rc
);
159 if (rc
==DS_OK
&& speaker_config
!=new_speaker_config
)
160 trace("IDirectSound8_GetSpeakerConfig() failed to set speaker "
161 "config: expected 0x%08x, got 0x%08x\n",
162 speaker_config
,new_speaker_config
);
165 rc
=IDirectSound8_VerifyCertification(dso
, &certified
);
166 ok(rc
==DS_OK
||rc
==E_NOTIMPL
,"IDirectSound8_VerifyCertification() failed: %08x\n", rc
);
169 ref
=IDirectSound8_Release(dso
);
170 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",ref
);
173 static void IDirectSound8_tests(void)
176 LPDIRECTSOUND8 dso
=NULL
;
177 LPCLASSFACTORY cf
=NULL
;
179 trace("Testing IDirectSound8\n");
181 rc
=CoGetClassObject(&CLSID_DirectSound8
, CLSCTX_INPROC_SERVER
, NULL
,
182 &IID_IClassFactory
, (void**)&cf
);
183 ok(rc
==S_OK
,"CoGetClassObject(CLSID_DirectSound8, IID_IClassFactory) "
184 "failed: %08x\n", rc
);
186 rc
=CoGetClassObject(&CLSID_DirectSound8
, CLSCTX_INPROC_SERVER
, NULL
,
187 &IID_IUnknown
, (void**)&cf
);
188 ok(rc
==S_OK
,"CoGetClassObject(CLSID_DirectSound8, IID_IUnknown) "
189 "failed: %08x\n", rc
);
191 /* try the COM class factory method of creation with no device specified */
192 rc
=CoCreateInstance(&CLSID_DirectSound8
, NULL
, CLSCTX_INPROC_SERVER
,
193 &IID_IDirectSound8
, (void**)&dso
);
194 ok(rc
==S_OK
||rc
==REGDB_E_CLASSNOTREG
,"CoCreateInstance() failed: %08x\n", rc
);
195 if (rc
==REGDB_E_CLASSNOTREG
) {
196 trace(" Class Not Registered\n");
200 IDirectSound8_test(dso
, FALSE
, NULL
);
202 /* try the COM class factory method of creation with default playback
203 * device specified */
204 rc
=CoCreateInstance(&CLSID_DirectSound8
, NULL
, CLSCTX_INPROC_SERVER
,
205 &IID_IDirectSound8
, (void**)&dso
);
206 ok(rc
==S_OK
,"CoCreateInstance(CLSID_DirectSound8) failed: %08x\n", rc
);
208 IDirectSound8_test(dso
, FALSE
, &DSDEVID_DefaultPlayback
);
210 /* try the COM class factory method of creation with default voice
211 * playback device specified */
212 rc
=CoCreateInstance(&CLSID_DirectSound8
, NULL
, CLSCTX_INPROC_SERVER
,
213 &IID_IDirectSound8
, (void**)&dso
);
214 ok(rc
==S_OK
,"CoCreateInstance(CLSID_DirectSound8) failed: %08x\n", rc
);
216 IDirectSound8_test(dso
, FALSE
, &DSDEVID_DefaultVoicePlayback
);
218 /* try the COM class factory method of creation with a bad
220 rc
=CoCreateInstance(&CLSID_DirectSound8
, NULL
, CLSCTX_INPROC_SERVER
,
221 &CLSID_DirectSoundPrivate
, (void**)&dso
);
222 ok(rc
==E_NOINTERFACE
,
223 "CoCreateInstance(CLSID_DirectSound8,CLSID_DirectSoundPrivate) "
224 "should have failed: %08x\n",rc
);
226 /* try the COM class factory method of creation with a bad
227 * GUID and IID specified */
228 rc
=CoCreateInstance(&CLSID_DirectSoundPrivate
, NULL
, CLSCTX_INPROC_SERVER
,
229 &IID_IDirectSound8
, (void**)&dso
);
230 ok(rc
==REGDB_E_CLASSNOTREG
,
231 "CoCreateInstance(CLSID_DirectSoundPrivate,IID_IDirectSound8) "
232 "should have failed: %08x\n",rc
);
234 /* try with no device specified */
235 rc
=pDirectSoundCreate8(NULL
,&dso
,NULL
);
236 ok(rc
==S_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
237 "DirectSoundCreate8() failed: %08x\n",rc
);
238 if (rc
==DS_OK
&& dso
)
239 IDirectSound8_test(dso
, TRUE
, NULL
);
241 /* try with default playback device specified */
242 rc
=pDirectSoundCreate8(&DSDEVID_DefaultPlayback
,&dso
,NULL
);
243 ok(rc
==S_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
244 "DirectSoundCreate8() failed: %08x\n",rc
);
245 if (rc
==DS_OK
&& dso
)
246 IDirectSound8_test(dso
, TRUE
, NULL
);
248 /* try with default voice playback device specified */
249 rc
=pDirectSoundCreate8(&DSDEVID_DefaultVoicePlayback
,&dso
,NULL
);
250 ok(rc
==S_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
251 "DirectSoundCreate8() failed: %08x\n",rc
);
252 if (rc
==DS_OK
&& dso
)
253 IDirectSound8_test(dso
, TRUE
, NULL
);
255 /* try with a bad device specified */
256 rc
=pDirectSoundCreate8(&DSDEVID_DefaultVoiceCapture
,&dso
,NULL
);
257 ok(rc
==DSERR_NODRIVER
,"DirectSoundCreate8(DSDEVID_DefaultVoiceCapture) "
258 "should have failed: %08x\n",rc
);
261 static HRESULT
test_dsound8(LPGUID lpGuid
)
264 LPDIRECTSOUND8 dso
=NULL
;
267 /* DSOUND: Error: Invalid interface buffer */
268 rc
=pDirectSoundCreate8(lpGuid
,0,NULL
);
269 ok(rc
==DSERR_INVALIDPARAM
,"DirectSoundCreate8() should have returned "
270 "DSERR_INVALIDPARAM, returned: %08x\n",rc
);
272 /* Create the DirectSound8 object */
273 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
274 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
275 "DirectSoundCreate8() failed: %08x\n",rc
);
279 /* Try the enumerated device */
280 IDirectSound8_test(dso
, TRUE
, lpGuid
);
282 /* Try the COM class factory method of creation with enumerated device */
283 rc
=CoCreateInstance(&CLSID_DirectSound8
, NULL
, CLSCTX_INPROC_SERVER
,
284 &IID_IDirectSound8
, (void**)&dso
);
285 ok(rc
==S_OK
,"CoCreateInstance(CLSID_DirectSound) failed: %08x\n", rc
);
287 IDirectSound8_test(dso
, FALSE
, lpGuid
);
289 /* Create a DirectSound8 object */
290 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
291 ok(rc
==DS_OK
,"DirectSoundCreate8() failed: %08x\n",rc
);
293 LPDIRECTSOUND8 dso1
=NULL
;
295 /* Create a second DirectSound8 object */
296 rc
=pDirectSoundCreate8(lpGuid
,&dso1
,NULL
);
297 ok(rc
==DS_OK
,"DirectSoundCreate8() failed: %08x\n",rc
);
299 /* Release the second DirectSound8 object */
300 ref
=IDirectSound8_Release(dso1
);
301 ok(ref
==0,"IDirectSound8_Release() has %d references, "
302 "should have 0\n",ref
);
303 ok(dso
!=dso1
,"DirectSound8 objects should be unique: "
304 "dso=%p,dso1=%p\n",dso
,dso1
);
307 /* Release the first DirectSound8 object */
308 ref
=IDirectSound8_Release(dso
);
309 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",
312 return DSERR_GENERIC
;
316 /* Create a DirectSound8 object */
317 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
318 ok(rc
==DS_OK
,"DirectSoundCreate8() failed: %08x\n",rc
);
320 LPDIRECTSOUNDBUFFER secondary
;
321 DSBUFFERDESC bufdesc
;
324 init_format(&wfx
,WAVE_FORMAT_PCM
,11025,8,1);
325 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
326 bufdesc
.dwSize
=sizeof(bufdesc
);
327 bufdesc
.dwFlags
=DSBCAPS_GETCURRENTPOSITION2
| DSBCAPS_CTRL3D
;
328 bufdesc
.dwBufferBytes
=align(wfx
.nAvgBytesPerSec
*BUFFER_LEN
/1000,
330 bufdesc
.lpwfxFormat
=&wfx
;
331 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
332 ok(rc
==DS_OK
&& secondary
!=NULL
,
333 "IDirectSound8_CreateSoundBuffer() failed to create a secondary "
334 "buffer: %08x\n",rc
);
335 if (rc
==DS_OK
&& secondary
!=NULL
) {
336 LPDIRECTSOUND3DBUFFER buffer3d
;
337 LPDIRECTSOUNDBUFFER8 buffer8
;
338 rc
=IDirectSound8_QueryInterface(secondary
,
339 &IID_IDirectSound3DBuffer
,
341 ok(rc
==DS_OK
&& buffer3d
!=NULL
,
342 "IDirectSound8_QueryInterface() failed: %08x\n", rc
);
343 if (rc
==DS_OK
&& buffer3d
!=NULL
) {
344 ref
=IDirectSound3DBuffer_AddRef(buffer3d
);
345 ok(ref
==2,"IDirectSound3DBuffer_AddRef() has %d references, "
346 "should have 2\n",ref
);
348 rc
=IDirectSound8_QueryInterface(secondary
,
349 &IID_IDirectSoundBuffer8
,
351 if (rc
==DS_OK
&& buffer8
!=NULL
) {
352 ref
=IDirectSoundBuffer8_AddRef(buffer8
);
353 ok(ref
==3,"IDirectSoundBuffer8_AddRef() has %d references, "
354 "should have 3\n",ref
);
356 ref
=IDirectSoundBuffer_AddRef(secondary
);
357 ok(ref
==4,"IDirectSoundBuffer_AddRef() has %d references, "
358 "should have 4\n",ref
);
360 /* release with buffer */
361 ref
=IDirectSound8_Release(dso
);
362 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",
365 return DSERR_GENERIC
;
372 static HRESULT
test_primary8(LPGUID lpGuid
)
375 LPDIRECTSOUND8 dso
=NULL
;
376 LPDIRECTSOUNDBUFFER primary
=NULL
,second
=NULL
,third
=NULL
;
377 LPDIRECTSOUNDBUFFER8 pb8
= NULL
;
378 DSBUFFERDESC bufdesc
;
383 /* Create the DirectSound object */
384 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
385 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
,
386 "DirectSoundCreate8() failed: %08x\n",rc
);
390 /* Get the device capabilities */
391 ZeroMemory(&dscaps
, sizeof(dscaps
));
392 dscaps
.dwSize
=sizeof(dscaps
);
393 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
394 ok(rc
==DS_OK
,"IDirectSound8_GetCaps() failed: %08x\n",rc
);
398 /* DSOUND: Error: Invalid buffer description pointer */
399 rc
=IDirectSound8_CreateSoundBuffer(dso
,0,0,NULL
);
400 ok(rc
==DSERR_INVALIDPARAM
,
401 "IDirectSound8_CreateSoundBuffer should have returned "
402 "DSERR_INVALIDPARAM, returned: %08x\n",rc
);
404 /* DSOUND: Error: Invalid buffer description pointer */
405 rc
=IDirectSound8_CreateSoundBuffer(dso
,0,&primary
,NULL
);
406 ok(rc
==DSERR_INVALIDPARAM
&& primary
==0,
407 "IDirectSound8_CreateSoundBuffer() should have returned "
408 "DSERR_INVALIDPARAM, returned: rc=%08x,dsbo=%p\n",
411 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
412 bufdesc
.dwSize
= sizeof(DSBUFFERDESC
);
414 /* DSOUND: Error: Invalid dsound buffer interface pointer */
415 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,0,NULL
);
416 ok(rc
==DSERR_INVALIDPARAM
&& primary
==0,
417 "IDirectSound8_CreateSoundBuffer() should have failed: rc=%08x,"
418 "dsbo=%p\n",rc
,primary
);
420 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
422 /* DSOUND: Error: Invalid size */
423 /* DSOUND: Error: Invalid buffer description */
424 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
425 ok(rc
==DSERR_INVALIDPARAM
&& primary
==0,
426 "IDirectSound8_CreateSoundBuffer() should have failed: rc=%08x,"
427 "primary=%p\n",rc
,primary
);
429 /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
430 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
431 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
432 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
436 /* Testing the primary buffer */
438 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
439 bufdesc
.dwSize
=sizeof(bufdesc
);
440 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
|DSBCAPS_CTRLVOLUME
;
441 bufdesc
.lpwfxFormat
= &wfx
;
442 init_format(&wfx
,WAVE_FORMAT_PCM
,11025,8,2);
443 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
444 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound8_CreateSoundBuffer() should have "
445 "returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
446 if (rc
==DS_OK
&& primary
!=NULL
)
447 IDirectSoundBuffer_Release(primary
);
450 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
451 bufdesc
.dwSize
=sizeof(bufdesc
);
452 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
|DSBCAPS_CTRLVOLUME
;
453 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
454 ok((rc
==DS_OK
&& primary
!=NULL
) || (rc
==DSERR_CONTROLUNAVAIL
),
455 "IDirectSound8_CreateSoundBuffer() failed to create a primary buffer: "
457 if (rc
==DSERR_CONTROLUNAVAIL
)
458 trace(" No Primary\n");
459 else if (rc
==DS_OK
&& primary
!=NULL
) {
462 /* Try to create a second primary buffer */
463 /* DSOUND: Error: The primary buffer already exists.
464 * Any changes made to the buffer description will be ignored. */
465 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&second
,NULL
);
466 ok(rc
==DS_OK
&& second
==primary
,
467 "IDirectSound8_CreateSoundBuffer() should have returned original "
468 "primary buffer: %08x\n",rc
);
469 ref
=IDirectSoundBuffer_Release(second
);
470 ok(ref
==1,"IDirectSoundBuffer_Release() primary has %d references, "
471 "should have 1\n",ref
);
473 /* Try to duplicate a primary buffer */
474 /* DSOUND: Error: Can't duplicate primary buffers */
475 rc
=IDirectSound8_DuplicateSoundBuffer(dso
,primary
,&third
);
477 ok(rc
!=DS_OK
,"IDirectSound8_DuplicateSoundBuffer() primary buffer "
478 "should have failed %08x\n",rc
);
480 /* Primary buffers don't have an IDirectSoundBuffer8 */
481 rc
= IDirectSoundBuffer_QueryInterface(primary
, &IID_IDirectSoundBuffer8
, (LPVOID
*)&pb8
);
482 ok(FAILED(rc
), "Primary buffer does have an IDirectSoundBuffer8: %08x\n", rc
);
484 rc
=IDirectSoundBuffer_GetVolume(primary
,&vol
);
485 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetVolume() failed: %08x\n", rc
);
487 if (winetest_interactive
) {
488 trace("Playing a 5 seconds reference tone at the current volume.\n");
490 trace("(the current volume is %d according to DirectSound)\n",
492 trace("All subsequent tones should be identical to this one.\n");
493 trace("Listen for stutter, changes in pitch, volume, etc.\n");
495 test_buffer8(dso
,&primary
,1,FALSE
,0,FALSE
,0,winetest_interactive
&&
496 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),5.0,0,0,0,0);
498 ref
=IDirectSoundBuffer_Release(primary
);
499 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
500 "should have 0\n",ref
);
503 /* Set the CooperativeLevel back to normal */
504 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
505 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
506 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
509 ref
=IDirectSound8_Release(dso
);
510 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",ref
);
512 return DSERR_GENERIC
;
518 * Test the primary buffer at different formats while keeping the
519 * secondary buffer at a constant format.
521 static HRESULT
test_primary_secondary8(LPGUID lpGuid
)
524 LPDIRECTSOUND8 dso
=NULL
;
525 LPDIRECTSOUNDBUFFER primary
=NULL
,secondary
=NULL
;
526 DSBUFFERDESC bufdesc
;
528 WAVEFORMATEX wfx
, wfx2
;
532 /* Create the DirectSound object */
533 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
534 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
,
535 "DirectSoundCreate8() failed: %08x\n",rc
);
539 /* Get the device capabilities */
540 ZeroMemory(&dscaps
, sizeof(dscaps
));
541 dscaps
.dwSize
=sizeof(dscaps
);
542 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
543 ok(rc
==DS_OK
,"IDirectSound8_GetCaps() failed: %08x\n",rc
);
547 /* We must call SetCooperativeLevel before creating primary buffer */
548 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
549 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
550 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
554 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
555 bufdesc
.dwSize
=sizeof(bufdesc
);
556 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
;
557 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
558 ok(rc
==DS_OK
&& primary
!=NULL
,
559 "IDirectSound8_CreateSoundBuffer() failed to create a primary buffer "
562 if (rc
==DS_OK
&& primary
!=NULL
) {
563 for (f
=0;f
<NB_FORMATS
;f
++) {
564 /* We must call SetCooperativeLevel to be allowed to call
566 /* DSOUND: Setting DirectSound cooperative level to
568 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
569 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
573 init_format(&wfx
,WAVE_FORMAT_PCM
,formats
[f
][0],formats
[f
][1],
576 rc
=IDirectSoundBuffer_SetFormat(primary
,&wfx
);
578 || rc
==DSERR_INVALIDPARAM
, /* 2003 */
579 "IDirectSoundBuffer_SetFormat(%s) failed: %08x\n",
580 format_string(&wfx
), rc
);
582 /* There is no guarantee that SetFormat will actually change the
583 * format to what we asked for. It depends on what the soundcard
584 * supports. So we must re-query the format.
586 rc
=IDirectSoundBuffer_GetFormat(primary
,&wfx
,sizeof(wfx
),NULL
);
587 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetFormat() failed: %08x\n", rc
);
589 (wfx
.wFormatTag
!=wfx2
.wFormatTag
||
590 wfx
.nSamplesPerSec
!=wfx2
.nSamplesPerSec
||
591 wfx
.wBitsPerSample
!=wfx2
.wBitsPerSample
||
592 wfx
.nChannels
!=wfx2
.nChannels
)) {
593 trace("Requested primary format tag=0x%04x %dx%dx%d "
594 "avg.B/s=%d align=%d\n",
595 wfx2
.wFormatTag
,wfx2
.nSamplesPerSec
,wfx2
.wBitsPerSample
,
596 wfx2
.nChannels
,wfx2
.nAvgBytesPerSec
,wfx2
.nBlockAlign
);
597 trace("Got tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
598 wfx
.wFormatTag
,wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,
599 wfx
.nChannels
,wfx
.nAvgBytesPerSec
,wfx
.nBlockAlign
);
602 /* Set the CooperativeLevel back to normal */
603 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
604 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
605 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
607 init_format(&wfx2
,WAVE_FORMAT_PCM
,11025,16,2);
610 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
611 bufdesc
.dwSize
=sizeof(bufdesc
);
612 bufdesc
.dwFlags
=DSBCAPS_GETCURRENTPOSITION2
;
613 bufdesc
.dwBufferBytes
=align(wfx
.nAvgBytesPerSec
*BUFFER_LEN
/1000,
615 bufdesc
.lpwfxFormat
=&wfx2
;
616 if (winetest_interactive
) {
617 trace(" Testing a primary buffer at %dx%dx%d with a "
618 "secondary buffer at %dx%dx%d\n",
619 wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,wfx
.nChannels
,
620 wfx2
.nSamplesPerSec
,wfx2
.wBitsPerSample
,wfx2
.nChannels
);
622 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
623 ok(rc
==DS_OK
&& secondary
!=NULL
,
624 "IDirectSound_CreateSoundBuffer() failed to create a secondary "
627 if (rc
==DS_OK
&& secondary
!=NULL
) {
628 test_buffer8(dso
,&secondary
,0,FALSE
,0,FALSE
,0,
629 winetest_interactive
,1.0,0,NULL
,0,0);
631 ref
=IDirectSoundBuffer_Release(secondary
);
632 ok(ref
==0,"IDirectSoundBuffer_Release() has %d references, "
633 "should have 0\n",ref
);
637 ref
=IDirectSoundBuffer_Release(primary
);
638 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
639 "should have 0\n",ref
);
642 /* Set the CooperativeLevel back to normal */
643 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
644 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
645 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
648 ref
=IDirectSound8_Release(dso
);
649 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",ref
);
651 return DSERR_GENERIC
;
656 static HRESULT
test_secondary8(LPGUID lpGuid
)
659 LPDIRECTSOUND8 dso
=NULL
;
660 LPDIRECTSOUNDBUFFER primary
=NULL
,secondary
=NULL
;
661 DSBUFFERDESC bufdesc
;
663 WAVEFORMATEX wfx
, wfx1
;
667 /* Create the DirectSound object */
668 rc
=pDirectSoundCreate8(lpGuid
,&dso
,NULL
);
669 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
,
670 "DirectSoundCreate8() failed: %08x\n",rc
);
674 /* Get the device capabilities */
675 ZeroMemory(&dscaps
, sizeof(dscaps
));
676 dscaps
.dwSize
=sizeof(dscaps
);
677 rc
=IDirectSound8_GetCaps(dso
,&dscaps
);
678 ok(rc
==DS_OK
,"IDirectSound8_GetCaps() failed: %08x\n",rc
);
682 /* We must call SetCooperativeLevel before creating primary buffer */
683 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
684 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
685 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
689 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
690 bufdesc
.dwSize
=sizeof(bufdesc
);
691 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
;
692 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
693 ok(rc
==DS_OK
&& primary
!=NULL
,
694 "IDirectSound8_CreateSoundBuffer() failed to create a primary buffer "
697 if (rc
==DS_OK
&& primary
!=NULL
) {
698 rc
=IDirectSoundBuffer_GetFormat(primary
,&wfx1
,sizeof(wfx1
),NULL
);
699 ok(rc
==DS_OK
,"IDirectSoundBuffer8_Getformat() failed: %08x\n", rc
);
703 for (f
=0;f
<NB_FORMATS
;f
++) {
704 WAVEFORMATEXTENSIBLE wfxe
;
705 init_format(&wfx
,WAVE_FORMAT_PCM
,formats
[f
][0],formats
[f
][1],
708 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
709 bufdesc
.dwSize
=sizeof(bufdesc
);
710 bufdesc
.dwFlags
=DSBCAPS_GETCURRENTPOSITION2
;
711 bufdesc
.dwBufferBytes
=align(wfx
.nAvgBytesPerSec
*BUFFER_LEN
/1000,
713 rc
=IDirectSound8_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
714 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound8_CreateSoundBuffer() "
715 "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
716 if (rc
==DS_OK
&& secondary
!=NULL
)
717 IDirectSoundBuffer_Release(secondary
);
720 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
721 bufdesc
.dwSize
=sizeof(bufdesc
);
722 bufdesc
.dwFlags
=DSBCAPS_GETCURRENTPOSITION2
;
723 bufdesc
.dwBufferBytes
=align(wfx
.nAvgBytesPerSec
*BUFFER_LEN
/1000,
725 bufdesc
.lpwfxFormat
=&wfx
;
726 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
727 if (wfx
.wBitsPerSample
!= 8 && wfx
.wBitsPerSample
!= 16)
728 ok(((rc
== DSERR_CONTROLUNAVAIL
|| rc
== DSERR_INVALIDCALL
|| rc
== DSERR_INVALIDPARAM
/* 2003 */) && !secondary
)
729 || rc
== DS_OK
, /* driver dependent? */
730 "IDirectSound_CreateSoundBuffer() "
731 "should have returned (DSERR_CONTROLUNAVAIL or DSERR_INVALIDCALL) "
732 "and NULL, returned: %08x %p\n", rc
, secondary
);
734 ok(rc
==DS_OK
&& secondary
!=NULL
,
735 "IDirectSound_CreateSoundBuffer() failed to create a secondary "
738 IDirectSoundBuffer_Release(secondary
);
741 bufdesc
.lpwfxFormat
=(WAVEFORMATEX
*)&wfxe
;
743 wfxe
.Format
.wFormatTag
= WAVE_FORMAT_EXTENSIBLE
;
744 wfxe
.SubFormat
= KSDATAFORMAT_SUBTYPE_PCM
;
745 wfxe
.Format
.cbSize
= 1;
746 wfxe
.Samples
.wValidBitsPerSample
= wfx
.wBitsPerSample
;
747 wfxe
.dwChannelMask
= (wfx
.nChannels
== 1 ? KSAUDIO_SPEAKER_MONO
: KSAUDIO_SPEAKER_STEREO
);
749 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
750 ok(rc
==DSERR_INVALIDPARAM
&& !secondary
,
751 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
755 IDirectSoundBuffer_Release(secondary
);
759 wfxe
.Format
.cbSize
= sizeof(wfxe
) - sizeof(wfx
) + 1;
761 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
762 ok(((rc
==DSERR_CONTROLUNAVAIL
|| DSERR_INVALIDCALL
/* 2003 */) && !secondary
)
763 || rc
==DS_OK
/* driver dependent? */,
764 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
768 IDirectSoundBuffer_Release(secondary
);
772 wfxe
.Format
.cbSize
= sizeof(wfxe
) - sizeof(wfx
);
773 wfxe
.SubFormat
= GUID_NULL
;
774 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
775 ok((rc
==DSERR_INVALIDPARAM
|| rc
==DSERR_INVALIDCALL
) && !secondary
,
776 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
780 IDirectSoundBuffer_Release(secondary
);
783 wfxe
.SubFormat
= KSDATAFORMAT_SUBTYPE_PCM
;
785 ++wfxe
.Samples
.wValidBitsPerSample
;
786 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
787 ok(rc
==DSERR_INVALIDPARAM
&& !secondary
,
788 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
792 IDirectSoundBuffer_Release(secondary
);
795 --wfxe
.Samples
.wValidBitsPerSample
;
797 wfxe
.Samples
.wValidBitsPerSample
= 0;
798 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
799 ok(rc
==DS_OK
&& secondary
,
800 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
804 IDirectSoundBuffer_Release(secondary
);
807 wfxe
.Samples
.wValidBitsPerSample
= wfxe
.Format
.wBitsPerSample
;
809 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
810 ok(rc
==DS_OK
&& secondary
!=NULL
,
811 "IDirectSound_CreateSoundBuffer() failed to create a secondary "
814 if (rc
==DS_OK
&& secondary
!=NULL
) {
815 if (winetest_interactive
) {
816 trace(" Testing a secondary buffer at %dx%dx%d "
817 "with a primary buffer at %dx%dx%d\n",
818 wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,wfx
.nChannels
,
819 wfx1
.nSamplesPerSec
,wfx1
.wBitsPerSample
,wfx1
.nChannels
);
821 test_buffer8(dso
,&secondary
,0,FALSE
,0,FALSE
,0,
822 winetest_interactive
,1.0,0,NULL
,0,0);
824 ref
=IDirectSoundBuffer_Release(secondary
);
825 ok(ref
==0,"IDirectSoundBuffer_Release() has %d references, "
826 "should have 0\n",ref
);
830 ref
=IDirectSoundBuffer_Release(primary
);
831 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
832 "should have 0\n",ref
);
835 /* Set the CooperativeLevel back to normal */
836 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
837 rc
=IDirectSound8_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
838 ok(rc
==DS_OK
,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc
);
841 ref
=IDirectSound8_Release(dso
);
842 ok(ref
==0,"IDirectSound8_Release() has %d references, should have 0\n",ref
);
844 return DSERR_GENERIC
;
849 static BOOL WINAPI
dsenum_callback(LPGUID lpGuid
, LPCSTR lpcstrDescription
,
850 LPCSTR lpcstrModule
, LPVOID lpContext
)
853 trace("*** Testing %s - %s ***\n",lpcstrDescription
,lpcstrModule
);
854 rc
= test_dsound8(lpGuid
);
855 if (rc
== DSERR_NODRIVER
)
856 trace(" No Driver\n");
857 else if (rc
== DSERR_ALLOCATED
)
858 trace(" Already In Use\n");
859 else if (rc
== E_FAIL
)
860 trace(" No Device\n");
862 test_primary8(lpGuid
);
863 test_primary_secondary8(lpGuid
);
864 test_secondary8(lpGuid
);
870 static void dsound8_tests(void)
873 rc
=pDirectSoundEnumerateA(&dsenum_callback
,NULL
);
874 ok(rc
==DS_OK
,"DirectSoundEnumerateA() failed: %08x\n",rc
);
877 const char * get_file_version(const char * file_name
)
879 static char version
[32];
880 static char backslash
[] = "\\";
884 size
= GetFileVersionInfoSizeA("dsound.dll", &handle
);
886 char * data
= HeapAlloc(GetProcessHeap(), 0, size
);
888 if (GetFileVersionInfoA("dsound.dll", handle
, size
, data
)) {
889 VS_FIXEDFILEINFO
*pFixedVersionInfo
;
891 if (VerQueryValueA(data
, backslash
, (LPVOID
*)&pFixedVersionInfo
, &len
)) {
892 sprintf(version
, "%d.%d.%d.%d",
893 pFixedVersionInfo
->dwFileVersionMS
>> 16,
894 pFixedVersionInfo
->dwFileVersionMS
& 0xffff,
895 pFixedVersionInfo
->dwFileVersionLS
>> 16,
896 pFixedVersionInfo
->dwFileVersionLS
& 0xffff);
898 sprintf(version
, "not available");
900 sprintf(version
, "failed");
902 HeapFree(GetProcessHeap(), 0, data
);
904 sprintf(version
, "failed");
906 sprintf(version
, "not available");
917 hDsound
= LoadLibrary("dsound.dll");
920 trace("DLL Version: %s\n", get_file_version("dsound.dll"));
922 pDirectSoundEnumerateA
= (void*)GetProcAddress(hDsound
,
923 "DirectSoundEnumerateA");
924 pDirectSoundCreate8
= (void*)GetProcAddress(hDsound
,
925 "DirectSoundCreate8");
926 if (pDirectSoundCreate8
)
928 IDirectSound8_tests();
932 skip("dsound8 test skipped\n");
934 FreeLibrary(hDsound
);
937 skip("dsound.dll not found!\n");