dsound: Don't depend on the dxerr8 static library in the tests.
[wine] / dlls / dsound / tests / dsound8.c
1 /*
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.
5  *
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.
10  *
11  * Copyright (c) 2002-2004 Francois Gouget
12  *
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.
17  *
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.
22  *
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
26  */
27
28 #include <windows.h>
29 #include <stdio.h>
30
31 #include "wine/test.h"
32 #include "dsound.h"
33 #include "dsconf.h"
34 #include "mmreg.h"
35 #include "ks.h"
36 #include "ksmedia.h"
37
38 #include "dsound_test.h"
39
40 static HRESULT (WINAPI *pDirectSoundEnumerateA)(LPDSENUMCALLBACKA,LPVOID)=NULL;
41 static HRESULT (WINAPI *pDirectSoundCreate8)(LPCGUID,LPDIRECTSOUND8*,LPUNKNOWN)=NULL;
42
43 int align(int length, int align)
44 {
45     return (length / align) * align;
46 }
47
48 static void IDirectSound8_test(LPDIRECTSOUND8 dso, BOOL initialized,
49                                LPCGUID lpGuid)
50 {
51     HRESULT rc;
52     DSCAPS dscaps;
53     int ref;
54     IUnknown * unknown;
55     IDirectSound * ds;
56     IDirectSound8 * ds8;
57     DWORD speaker_config, new_speaker_config;
58     DWORD certified;
59
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);
63     if (rc==DS_OK)
64         IDirectSound8_Release(unknown);
65
66     rc=IDirectSound8_QueryInterface(dso,&IID_IDirectSound,(LPVOID*)&ds);
67     ok(rc==DS_OK,"IDirectSound8_QueryInterface(IID_IDirectSound) failed: %08x\n", rc);
68     if (rc==DS_OK)
69         IDirectSound_Release(ds);
70
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);
74     if (rc==DS_OK)
75         IDirectSound8_Release(ds8);
76
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);
82
83         rc=IDirectSound8_GetCaps(dso,&dscaps);
84         ok(rc==DSERR_UNINITIALIZED,"IDirectSound8_GetCaps() "
85            "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
86
87         rc=IDirectSound8_Compact(dso);
88         ok(rc==DSERR_UNINITIALIZED,"IDirectSound8_Compact() "
89            "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
90
91         rc=IDirectSound8_GetSpeakerConfig(dso,&speaker_config);
92         ok(rc==DSERR_UNINITIALIZED,"IDirectSound8_GetSpeakerConfig() "
93            "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
94
95         rc=IDirectSound8_VerifyCertification(dso, &certified);
96         ok(rc==DSERR_UNINITIALIZED,"IDirectSound8_VerifyCertification() "
97            "should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
98
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");
104             goto EXIT;
105         } else if (rc==E_FAIL) {
106             trace("  No Device\n");
107             goto EXIT;
108         } else if (rc==DSERR_ALLOCATED) {
109             trace("  Already In Use\n");
110             goto EXIT;
111         }
112     }
113
114     rc=IDirectSound8_Initialize(dso,lpGuid);
115     ok(rc==DSERR_ALREADYINITIALIZED, "IDirectSound8_Initialize() "
116        "should have returned DSERR_ALREADYINITIALIZED: %08x\n", rc);
117
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);
122
123     ZeroMemory(&dscaps, sizeof(dscaps));
124
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);
129
130     dscaps.dwSize=sizeof(dscaps);
131
132     /* DSOUND: Running on a certified driver */
133     rc=IDirectSound8_GetCaps(dso,&dscaps);
134     ok(rc==DS_OK,"IDirectSound8_GetCaps() failed: %08x\n",rc);
135
136     rc=IDirectSound8_Compact(dso);
137     ok(rc==DSERR_PRIOLEVELNEEDED,"IDirectSound8_Compact() failed: %08x\n", rc);
138
139     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
140     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
141
142     rc=IDirectSound8_Compact(dso);
143     ok(rc==DS_OK,"IDirectSound8_Compact() failed: %08x\n",rc);
144
145     rc=IDirectSound8_GetSpeakerConfig(dso,0);
146     ok(rc==DSERR_INVALIDPARAM,"IDirectSound8_GetSpeakerConfig(NULL) "
147        "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
148
149     rc=IDirectSound8_GetSpeakerConfig(dso,&speaker_config);
150     ok(rc==DS_OK,"IDirectSound8_GetSpeakerConfig() failed: %08x\n", rc);
151
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);
156     if (rc==DS_OK) {
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);
163     }
164
165     rc=IDirectSound8_VerifyCertification(dso, &certified);
166     ok(rc==DS_OK||rc==E_NOTIMPL,"IDirectSound8_VerifyCertification() failed: %08x\n", rc);
167
168 EXIT:
169     ref=IDirectSound8_Release(dso);
170     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
171 }
172
173 static void IDirectSound8_tests(void)
174 {
175     HRESULT rc;
176     LPDIRECTSOUND8 dso=NULL;
177     LPCLASSFACTORY cf=NULL;
178
179     trace("Testing IDirectSound8\n");
180
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);
185
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);
190
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");
197         return;
198     }
199     if (dso)
200         IDirectSound8_test(dso, FALSE, NULL);
201
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);
207     if (dso)
208         IDirectSound8_test(dso, FALSE, &DSDEVID_DefaultPlayback);
209
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);
215     if (dso)
216         IDirectSound8_test(dso, FALSE, &DSDEVID_DefaultVoicePlayback);
217
218     /* try the COM class factory method of creation with a bad
219      * IID specified */
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);
225
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);
233
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);
240
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);
247
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);
254
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);
259 }
260
261 static HRESULT test_dsound8(LPGUID lpGuid)
262 {
263     HRESULT rc;
264     LPDIRECTSOUND8 dso=NULL;
265     int ref;
266
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);
271
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);
276     if (rc!=DS_OK)
277         return rc;
278
279     /* Try the enumerated device */
280     IDirectSound8_test(dso, TRUE, lpGuid);
281
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);
286     if (dso)
287         IDirectSound8_test(dso, FALSE, lpGuid);
288
289     /* Create a DirectSound8 object */
290     rc=pDirectSoundCreate8(lpGuid,&dso,NULL);
291     ok(rc==DS_OK,"DirectSoundCreate8() failed: %08x\n",rc);
292     if (rc==DS_OK) {
293         LPDIRECTSOUND8 dso1=NULL;
294
295         /* Create a second DirectSound8 object */
296         rc=pDirectSoundCreate8(lpGuid,&dso1,NULL);
297         ok(rc==DS_OK,"DirectSoundCreate8() failed: %08x\n",rc);
298         if (rc==DS_OK) {
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);
305         }
306
307         /* Release the first DirectSound8 object */
308         ref=IDirectSound8_Release(dso);
309         ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",
310            ref);
311         if (ref!=0)
312             return DSERR_GENERIC;
313     } else
314         return rc;
315
316     /* Create a DirectSound8 object */
317     rc=pDirectSoundCreate8(lpGuid,&dso,NULL);
318     ok(rc==DS_OK,"DirectSoundCreate8() failed: %08x\n",rc);
319     if (rc==DS_OK) {
320         LPDIRECTSOUNDBUFFER secondary;
321         DSBUFFERDESC bufdesc;
322         WAVEFORMATEX wfx;
323
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,
329                                     wfx.nBlockAlign);
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,
340                                             (void **)&buffer3d);
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);
347             }
348             rc=IDirectSound8_QueryInterface(secondary,
349                                             &IID_IDirectSoundBuffer8,
350                                             (void **)&buffer8);
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);
355             }
356             ref=IDirectSoundBuffer_AddRef(secondary);
357             ok(ref==4,"IDirectSoundBuffer_AddRef() has %d references, "
358                "should have 4\n",ref);
359         }
360         /* release with buffer */
361         ref=IDirectSound8_Release(dso);
362         ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",
363            ref);
364         if (ref!=0)
365             return DSERR_GENERIC;
366     } else
367         return rc;
368
369     return DS_OK;
370 }
371
372 static HRESULT test_primary8(LPGUID lpGuid)
373 {
374     HRESULT rc;
375     LPDIRECTSOUND8 dso=NULL;
376     LPDIRECTSOUNDBUFFER primary=NULL,second=NULL,third=NULL;
377     LPDIRECTSOUNDBUFFER8 pb8 = NULL;
378     DSBUFFERDESC bufdesc;
379     DSCAPS dscaps;
380     WAVEFORMATEX wfx;
381     int ref;
382
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);
387     if (rc!=DS_OK)
388         return rc;
389
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);
395     if (rc!=DS_OK)
396         goto EXIT;
397
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);
403
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",
409        rc,primary);
410
411     ZeroMemory(&bufdesc, sizeof(bufdesc));
412     bufdesc.dwSize = sizeof(DSBUFFERDESC);
413
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);
419
420     ZeroMemory(&bufdesc, sizeof(bufdesc));
421
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);
428
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);
433     if (rc!=DS_OK)
434         goto EXIT;
435
436     /* Testing the primary buffer */
437     primary=NULL;
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);
448
449     primary=NULL;
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: "
456        "%08x\n",rc);
457     if (rc==DSERR_CONTROLUNAVAIL)
458         trace("  No Primary\n");
459     else if (rc==DS_OK && primary!=NULL) {
460         LONG vol;
461
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);
472
473         /* Try to duplicate a primary buffer */
474         /* DSOUND: Error: Can't duplicate primary buffers */
475         rc=IDirectSound8_DuplicateSoundBuffer(dso,primary,&third);
476         /* rc=0x88780032 */
477         ok(rc!=DS_OK,"IDirectSound8_DuplicateSoundBuffer() primary buffer "
478            "should have failed %08x\n",rc);
479
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);
483
484         rc=IDirectSoundBuffer_GetVolume(primary,&vol);
485         ok(rc==DS_OK,"IDirectSoundBuffer_GetVolume() failed: %08x\n", rc);
486
487         if (winetest_interactive) {
488             trace("Playing a 5 seconds reference tone at the current volume.\n");
489             if (rc==DS_OK)
490                 trace("(the current volume is %d according to DirectSound)\n",
491                       vol);
492             trace("All subsequent tones should be identical to this one.\n");
493             trace("Listen for stutter, changes in pitch, volume, etc.\n");
494         }
495         test_buffer8(dso,&primary,1,FALSE,0,FALSE,0,winetest_interactive &&
496                      !(dscaps.dwFlags & DSCAPS_EMULDRIVER),5.0,0,0,0,0);
497
498         ref=IDirectSoundBuffer_Release(primary);
499         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
500            "should have 0\n",ref);
501     }
502
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);
507
508 EXIT:
509     ref=IDirectSound8_Release(dso);
510     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
511     if (ref!=0)
512         return DSERR_GENERIC;
513
514     return rc;
515 }
516
517 /*
518  * Test the primary buffer at different formats while keeping the
519  * secondary buffer at a constant format.
520  */
521 static HRESULT test_primary_secondary8(LPGUID lpGuid)
522 {
523     HRESULT rc;
524     LPDIRECTSOUND8 dso=NULL;
525     LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
526     DSBUFFERDESC bufdesc;
527     DSCAPS dscaps;
528     WAVEFORMATEX wfx, wfx2;
529     int ref;
530     unsigned int f;
531
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);
536     if (rc!=DS_OK)
537         return rc;
538
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);
544     if (rc!=DS_OK)
545         goto EXIT;
546
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);
551     if (rc!=DS_OK)
552         goto EXIT;
553
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 "
560        "%08x\n",rc);
561
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
565              * SetFormat */
566             /* DSOUND: Setting DirectSound cooperative level to
567              * DSSCL_PRIORITY */
568             rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
569             ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
570             if (rc!=DS_OK)
571                 goto EXIT;
572
573             init_format(&wfx,WAVE_FORMAT_PCM,formats[f][0],formats[f][1],
574                         formats[f][2]);
575             wfx2=wfx;
576             rc=IDirectSoundBuffer_SetFormat(primary,&wfx);
577             ok(rc==DS_OK,"IDirectSoundBuffer_SetFormat(%s) failed: %08x\n",
578                format_string(&wfx), rc);
579
580             /* There is no guarantee that SetFormat will actually change the
581              * format to what we asked for. It depends on what the soundcard
582              * supports. So we must re-query the format.
583              */
584             rc=IDirectSoundBuffer_GetFormat(primary,&wfx,sizeof(wfx),NULL);
585             ok(rc==DS_OK,"IDirectSoundBuffer_GetFormat() failed: %08x\n", rc);
586             if (rc==DS_OK &&
587                 (wfx.wFormatTag!=wfx2.wFormatTag ||
588                  wfx.nSamplesPerSec!=wfx2.nSamplesPerSec ||
589                  wfx.wBitsPerSample!=wfx2.wBitsPerSample ||
590                  wfx.nChannels!=wfx2.nChannels)) {
591                 trace("Requested primary format tag=0x%04x %dx%dx%d "
592                       "avg.B/s=%d align=%d\n",
593                       wfx2.wFormatTag,wfx2.nSamplesPerSec,wfx2.wBitsPerSample,
594                       wfx2.nChannels,wfx2.nAvgBytesPerSec,wfx2.nBlockAlign);
595                 trace("Got tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
596                       wfx.wFormatTag,wfx.nSamplesPerSec,wfx.wBitsPerSample,
597                       wfx.nChannels,wfx.nAvgBytesPerSec,wfx.nBlockAlign);
598             }
599
600             /* Set the CooperativeLevel back to normal */
601             /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
602             rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
603             ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
604
605             init_format(&wfx2,WAVE_FORMAT_PCM,11025,16,2);
606
607             secondary=NULL;
608             ZeroMemory(&bufdesc, sizeof(bufdesc));
609             bufdesc.dwSize=sizeof(bufdesc);
610             bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
611             bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
612                                         wfx.nBlockAlign);
613             bufdesc.lpwfxFormat=&wfx2;
614             if (winetest_interactive) {
615                 trace("  Testing a primary buffer at %dx%dx%d with a "
616                       "secondary buffer at %dx%dx%d\n",
617                       wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels,
618                       wfx2.nSamplesPerSec,wfx2.wBitsPerSample,wfx2.nChannels);
619             }
620             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
621             ok(rc==DS_OK && secondary!=NULL,
622                "IDirectSound_CreateSoundBuffer() failed to create a secondary "
623                "buffer %08x\n",rc);
624
625             if (rc==DS_OK && secondary!=NULL) {
626                 test_buffer8(dso,&secondary,0,FALSE,0,FALSE,0,
627                              winetest_interactive,1.0,0,NULL,0,0);
628
629                 ref=IDirectSoundBuffer_Release(secondary);
630                 ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
631                    "should have 0\n",ref);
632             }
633         }
634
635         ref=IDirectSoundBuffer_Release(primary);
636         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
637            "should have 0\n",ref);
638     }
639
640     /* Set the CooperativeLevel back to normal */
641     /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
642     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
643     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
644
645 EXIT:
646     ref=IDirectSound8_Release(dso);
647     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
648     if (ref!=0)
649         return DSERR_GENERIC;
650
651     return rc;
652 }
653
654 static HRESULT test_secondary8(LPGUID lpGuid)
655 {
656     HRESULT rc;
657     LPDIRECTSOUND8 dso=NULL;
658     LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
659     DSBUFFERDESC bufdesc;
660     DSCAPS dscaps;
661     WAVEFORMATEX wfx, wfx1;
662     DWORD f;
663     int ref;
664
665     /* Create the DirectSound object */
666     rc=pDirectSoundCreate8(lpGuid,&dso,NULL);
667     ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
668        "DirectSoundCreate8() failed: %08x\n",rc);
669     if (rc!=DS_OK)
670         return rc;
671
672     /* Get the device capabilities */
673     ZeroMemory(&dscaps, sizeof(dscaps));
674     dscaps.dwSize=sizeof(dscaps);
675     rc=IDirectSound8_GetCaps(dso,&dscaps);
676     ok(rc==DS_OK,"IDirectSound8_GetCaps() failed: %08x\n",rc);
677     if (rc!=DS_OK)
678         goto EXIT;
679
680     /* We must call SetCooperativeLevel before creating primary buffer */
681     /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
682     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
683     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
684     if (rc!=DS_OK)
685         goto EXIT;
686
687     ZeroMemory(&bufdesc, sizeof(bufdesc));
688     bufdesc.dwSize=sizeof(bufdesc);
689     bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
690     rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
691     ok(rc==DS_OK && primary!=NULL,
692        "IDirectSound8_CreateSoundBuffer() failed to create a primary buffer "
693        "%08x\n",rc);
694
695     if (rc==DS_OK && primary!=NULL) {
696         rc=IDirectSoundBuffer_GetFormat(primary,&wfx1,sizeof(wfx1),NULL);
697         ok(rc==DS_OK,"IDirectSoundBuffer8_Getformat() failed: %08x\n", rc);
698         if (rc!=DS_OK)
699             goto EXIT1;
700
701         for (f=0;f<NB_FORMATS;f++) {
702             WAVEFORMATEXTENSIBLE wfxe;
703             init_format(&wfx,WAVE_FORMAT_PCM,formats[f][0],formats[f][1],
704                         formats[f][2]);
705             secondary=NULL;
706             ZeroMemory(&bufdesc, sizeof(bufdesc));
707             bufdesc.dwSize=sizeof(bufdesc);
708             bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
709             bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
710                                         wfx.nBlockAlign);
711             rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
712             ok(rc==DSERR_INVALIDPARAM,"IDirectSound8_CreateSoundBuffer() "
713                "should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
714             if (rc==DS_OK && secondary!=NULL)
715                 IDirectSoundBuffer_Release(secondary);
716
717             secondary=NULL;
718             ZeroMemory(&bufdesc, sizeof(bufdesc));
719             bufdesc.dwSize=sizeof(bufdesc);
720             bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
721             bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
722                                         wfx.nBlockAlign);
723             bufdesc.lpwfxFormat=&wfx;
724             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
725             if (wfx.wBitsPerSample != 8 && wfx.wBitsPerSample != 16)
726                 ok(rc == DSERR_CONTROLUNAVAIL && !secondary, "IDirectSound_CreateSoundBuffer() "
727                     "should have returned DSERR_CONTROLUNAVAIL and NULL, returned: %08x %p\n",
728                     rc, secondary);
729             else
730                 ok(rc==DS_OK && secondary!=NULL,
731                     "IDirectSound_CreateSoundBuffer() failed to create a secondary "
732                     "buffer %08x\n",rc);
733             if (secondary)
734                 IDirectSoundBuffer_Release(secondary);
735             secondary = NULL;
736
737             bufdesc.lpwfxFormat=(WAVEFORMATEX*)&wfxe;
738             wfxe.Format = wfx;
739             wfxe.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
740             wfxe.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
741             wfxe.Format.cbSize = 1;
742             wfxe.Samples.wValidBitsPerSample = wfx.wBitsPerSample;
743             wfxe.dwChannelMask = (wfx.nChannels == 1 ? KSAUDIO_SPEAKER_MONO : KSAUDIO_SPEAKER_STEREO);
744
745             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
746             ok(rc==DSERR_INVALIDPARAM && !secondary,
747                 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
748                 rc, secondary);
749             if (secondary)
750                 IDirectSoundBuffer_Release(secondary);
751
752             wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx) + 1;
753
754             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
755             ok(DSERR_CONTROLUNAVAIL && !secondary,
756                 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
757                 rc, secondary);
758             if (secondary)
759                 IDirectSoundBuffer_Release(secondary);
760
761             wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx);
762             wfxe.SubFormat = GUID_NULL;
763             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
764             ok(rc==DSERR_INVALIDPARAM && !secondary,
765                 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
766                 rc, secondary);
767             if (secondary)
768                 IDirectSoundBuffer_Release(secondary);
769             wfxe.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
770
771             ++wfxe.Samples.wValidBitsPerSample;
772             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
773             ok(rc==DSERR_INVALIDPARAM && !secondary,
774                 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
775                 rc, secondary);
776             if (secondary)
777                 IDirectSoundBuffer_Release(secondary);
778             --wfxe.Samples.wValidBitsPerSample;
779
780             wfxe.Samples.wValidBitsPerSample = 0;
781             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
782             ok(rc==DS_OK && secondary,
783                 "IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
784                 rc, secondary);
785             if (secondary)
786                 IDirectSoundBuffer_Release(secondary);
787             wfxe.Samples.wValidBitsPerSample = wfxe.Format.wBitsPerSample;
788
789             rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
790             ok(rc==DS_OK && secondary!=NULL,
791                 "IDirectSound_CreateSoundBuffer() failed to create a secondary "
792                 "buffer %08x\n",rc);
793
794             if (rc==DS_OK && secondary!=NULL) {
795                 if (winetest_interactive) {
796                     trace("  Testing a secondary buffer at %dx%dx%d "
797                         "with a primary buffer at %dx%dx%d\n",
798                         wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels,
799                         wfx1.nSamplesPerSec,wfx1.wBitsPerSample,wfx1.nChannels);
800                 }
801                 test_buffer8(dso,&secondary,0,FALSE,0,FALSE,0,
802                              winetest_interactive,1.0,0,NULL,0,0);
803
804                 ref=IDirectSoundBuffer_Release(secondary);
805                 ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
806                    "should have 0\n",ref);
807             }
808         }
809 EXIT1:
810         ref=IDirectSoundBuffer_Release(primary);
811         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
812            "should have 0\n",ref);
813     }
814
815     /* Set the CooperativeLevel back to normal */
816     /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
817     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
818     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel() failed: %08x\n", rc);
819
820 EXIT:
821     ref=IDirectSound8_Release(dso);
822     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
823     if (ref!=0)
824         return DSERR_GENERIC;
825
826     return rc;
827 }
828
829 static BOOL WINAPI dsenum_callback(LPGUID lpGuid, LPCSTR lpcstrDescription,
830                                    LPCSTR lpcstrModule, LPVOID lpContext)
831 {
832     HRESULT rc;
833     trace("*** Testing %s - %s ***\n",lpcstrDescription,lpcstrModule);
834     rc = test_dsound8(lpGuid);
835     if (rc == DSERR_NODRIVER)
836         trace("  No Driver\n");
837     else if (rc == DSERR_ALLOCATED)
838         trace("  Already In Use\n");
839     else if (rc == E_FAIL)
840         trace("  No Device\n");
841     else {
842         test_primary8(lpGuid);
843         test_primary_secondary8(lpGuid);
844         test_secondary8(lpGuid);
845     }
846
847     return 1;
848 }
849
850 static void dsound8_tests(void)
851 {
852     HRESULT rc;
853     rc=pDirectSoundEnumerateA(&dsenum_callback,NULL);
854     ok(rc==DS_OK,"DirectSoundEnumerateA() failed: %08x\n",rc);
855 }
856
857 const char * get_file_version(const char * file_name)
858 {
859     static char version[32];
860     static char backslash[] = "\\";
861     DWORD size;
862     DWORD handle;
863
864     size = GetFileVersionInfoSizeA("dsound.dll", &handle);
865     if (size) {
866         char * data = HeapAlloc(GetProcessHeap(), 0, size);
867         if (data) {
868             if (GetFileVersionInfoA("dsound.dll", handle, size, data)) {
869                 VS_FIXEDFILEINFO *pFixedVersionInfo;
870                 UINT len;
871                 if (VerQueryValueA(data, backslash, (LPVOID *)&pFixedVersionInfo, &len)) {
872                     sprintf(version, "%d.%d.%d.%d",
873                             pFixedVersionInfo->dwFileVersionMS >> 16,
874                             pFixedVersionInfo->dwFileVersionMS & 0xffff,
875                             pFixedVersionInfo->dwFileVersionLS >> 16,
876                             pFixedVersionInfo->dwFileVersionLS & 0xffff);
877                 } else
878                     sprintf(version, "not available");
879             } else
880                 sprintf(version, "failed");
881
882             HeapFree(GetProcessHeap(), 0, data);
883         } else
884             sprintf(version, "failed");
885     } else
886         sprintf(version, "not available");
887
888     return version;
889 }
890
891 START_TEST(dsound8)
892 {
893     HMODULE hDsound;
894
895     CoInitialize(NULL);
896
897     hDsound = LoadLibrary("dsound.dll");
898     if (hDsound)
899     {
900         trace("DLL Version: %s\n", get_file_version("dsound.dll"));
901
902         pDirectSoundEnumerateA = (void*)GetProcAddress(hDsound,
903             "DirectSoundEnumerateA");
904         pDirectSoundCreate8 = (void*)GetProcAddress(hDsound,
905             "DirectSoundCreate8");
906         if (pDirectSoundCreate8)
907         {
908             IDirectSound8_tests();
909             dsound8_tests();
910         }
911         else
912             skip("dsound8 test skipped\n");
913
914         FreeLibrary(hDsound);
915     }
916     else
917         skip("dsound.dll not found!\n");
918
919     CoUninitialize();
920 }