Only print format info when in interactive mode for capture test.
[wine] / dlls / dsound / tests / ds3d8.c
1 /*
2  * Tests the panning and 3D functions of DirectSound
3  *
4  * Part of this test involves playing test tones. But this only makes
5  * sense if someone is going to carefully listen to it, and would only
6  * bother everyone else.
7  * So this is only done if the test is being run in interactive mode.
8  *
9  * Copyright (c) 2002-2004 Francois Gouget
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  */
25
26 #define NONAMELESSSTRUCT
27 #define NONAMELESSUNION
28 #include <windows.h>
29
30 #include <math.h>
31 #include <stdlib.h>
32
33 #include "wine/test.h"
34 #include "windef.h"
35 #include "wingdi.h"
36 #include "dsound.h"
37 #include "dxerr8.h"
38
39 #include "dsound_test.h"
40
41 typedef struct {
42     char* wave;
43     DWORD wave_len;
44
45     LPDIRECTSOUNDBUFFER dsbo;
46     LPWAVEFORMATEX wfx;
47     DWORD buffer_size;
48     DWORD written;
49     DWORD played;
50     DWORD offset;
51 } play_state_t;
52
53 static int buffer_refill8(play_state_t* state, DWORD size)
54 {
55     LPVOID ptr1,ptr2;
56     DWORD len1,len2;
57     HRESULT rc;
58
59     if (size>state->wave_len-state->written)
60         size=state->wave_len-state->written;
61
62     rc=IDirectSoundBuffer_Lock(state->dsbo,state->offset,size,
63                                &ptr1,&len1,&ptr2,&len2,0);
64     ok(rc==DS_OK,"IDirectSoundBuffer_Lock() failed: %s\n",
65        DXGetErrorString8(rc));
66     if (rc!=DS_OK)
67         return -1;
68
69     memcpy(ptr1,state->wave+state->written,len1);
70     state->written+=len1;
71     if (ptr2!=NULL) {
72         memcpy(ptr2,state->wave+state->written,len2);
73         state->written+=len2;
74     }
75     state->offset=state->written % state->buffer_size;
76     rc=IDirectSoundBuffer_Unlock(state->dsbo,ptr1,len1,ptr2,len2);
77     ok(rc==DS_OK,"IDirectSoundBuffer_Unlock() failed: %s\n",
78        DXGetErrorString8(rc));
79     if (rc!=DS_OK)
80         return -1;
81     return size;
82 }
83
84 static int buffer_silence8(play_state_t* state, DWORD size)
85 {
86     LPVOID ptr1,ptr2;
87     DWORD len1,len2;
88     HRESULT rc;
89     BYTE s;
90
91     rc=IDirectSoundBuffer_Lock(state->dsbo,state->offset,size,
92                                &ptr1,&len1,&ptr2,&len2,0);
93     ok(rc==DS_OK,"IDirectSoundBuffer_Lock() failed: %s\n",
94        DXGetErrorString8(rc));
95     if (rc!=DS_OK)
96         return -1;
97
98     s=(state->wfx->wBitsPerSample==8?0x80:0);
99     memset(ptr1,s,len1);
100     if (ptr2!=NULL) {
101         memset(ptr2,s,len2);
102     }
103     state->offset=(state->offset+size) % state->buffer_size;
104     rc=IDirectSoundBuffer_Unlock(state->dsbo,ptr1,len1,ptr2,len2);
105     ok(rc==DS_OK,"IDirectSoundBuffer_Unlock() failed: %s\n",
106        DXGetErrorString8(rc));
107     if (rc!=DS_OK)
108         return -1;
109     return size;
110 }
111
112 static int buffer_service8(play_state_t* state)
113 {
114     DWORD last_play_pos,play_pos,buf_free;
115     HRESULT rc;
116
117     rc=IDirectSoundBuffer_GetCurrentPosition(state->dsbo,&play_pos,NULL);
118     ok(rc==DS_OK,"IDirectSoundBuffer_GetCurrentPosition() failed: %s\n",
119        DXGetErrorString8(rc));
120     if (rc!=DS_OK) {
121         goto STOP;
122     }
123
124     /* Update the amount played */
125     last_play_pos=state->played % state->buffer_size;
126     if (play_pos<last_play_pos)
127         state->played+=state->buffer_size-last_play_pos+play_pos;
128     else
129         state->played+=play_pos-last_play_pos;
130
131     if (winetest_debug > 1)
132         trace("buf size=%ld last_play_pos=%ld play_pos=%ld played=%ld / %ld\n",
133               state->buffer_size,last_play_pos,play_pos,state->played,
134               state->wave_len);
135
136     if (state->played>state->wave_len)
137     {
138         /* Everything has been played */
139         goto STOP;
140     }
141
142     /* Refill the buffer */
143     if (state->offset<=play_pos)
144         buf_free=play_pos-state->offset;
145     else
146         buf_free=state->buffer_size-state->offset+play_pos;
147
148     if (winetest_debug > 1)
149         trace("offset=%ld free=%ld written=%ld / %ld\n",
150               state->offset,buf_free,state->written,state->wave_len);
151     if (buf_free==0)
152         return 1;
153
154     if (state->written<state->wave_len)
155     {
156         int w=buffer_refill8(state,buf_free);
157         if (w==-1)
158             goto STOP;
159         buf_free-=w;
160         if (state->written==state->wave_len && winetest_debug > 1)
161             trace("last sound byte at %ld\n",
162                   (state->written % state->buffer_size));
163     }
164
165     if (buf_free>0) {
166         /* Fill with silence */
167         if (winetest_debug > 1)
168             trace("writing %ld bytes of silence\n",buf_free);
169         if (buffer_silence8(state,buf_free)==-1)
170             goto STOP;
171     }
172     return 1;
173
174 STOP:
175     if (winetest_debug > 1)
176         trace("stopping playback\n");
177     rc=IDirectSoundBuffer_Stop(state->dsbo);
178     ok(rc==DS_OK,"IDirectSoundBuffer_Stop() failed: %s\n",
179        DXGetErrorString8(rc));
180     return 0;
181 }
182
183 void test_buffer8(LPDIRECTSOUND8 dso, LPDIRECTSOUNDBUFFER dsbo,
184                   BOOL is_primary, BOOL set_volume, LONG volume,
185                   BOOL set_pan, LONG pan, BOOL play, double duration,
186                   BOOL buffer3d, LPDIRECTSOUND3DLISTENER listener,
187                   BOOL move_listener, BOOL move_sound)
188 {
189     HRESULT rc;
190     DSBCAPS dsbcaps;
191     WAVEFORMATEX wfx,wfx2;
192     DWORD size,status,freq;
193     int ref;
194
195     /* DSOUND: Error: Invalid caps pointer */
196     rc=IDirectSoundBuffer_GetCaps(dsbo,0);
197     ok(rc==DSERR_INVALIDPARAM,"IDirectSoundBuffer_GetCaps() should have "
198        "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
199
200     ZeroMemory(&dsbcaps, sizeof(dsbcaps));
201
202     /* DSOUND: Error: Invalid caps pointer */
203     rc=IDirectSoundBuffer_GetCaps(dsbo,&dsbcaps);
204     ok(rc==DSERR_INVALIDPARAM,"IDirectSoundBuffer_GetCaps() should have "
205        "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
206
207     dsbcaps.dwSize=sizeof(dsbcaps);
208     rc=IDirectSoundBuffer_GetCaps(dsbo,&dsbcaps);
209     ok(rc==DS_OK,"IDirectSoundBuffer_GetCaps() failed: %s\n",
210        DXGetErrorString8(rc));
211     if (rc==DS_OK && winetest_debug > 1) {
212         trace("    Caps: flags=0x%08lx size=%ld\n",dsbcaps.dwFlags,
213               dsbcaps.dwBufferBytes);
214     }
215
216     /* Query the format size. Note that it may not match sizeof(wfx) */
217     size=0;
218     rc=IDirectSoundBuffer_GetFormat(dsbo,NULL,0,&size);
219     ok(rc==DS_OK && size!=0,"IDirectSoundBuffer_GetFormat() should have "
220        "returned the needed size: rc=%s size=%ld\n",DXGetErrorString8(rc),size);
221
222     rc=IDirectSoundBuffer_GetFormat(dsbo,&wfx,sizeof(wfx),NULL);
223     ok(rc==DS_OK,"IDirectSoundBuffer_GetFormat() failed: %s\n",
224        DXGetErrorString8(rc));
225     if (rc==DS_OK && winetest_debug > 1) {
226         trace("    Format: %s tag=0x%04x %ldx%dx%d avg.B/s=%ld align=%d\n",
227               is_primary ? "Primary" : "Secondary",
228               wfx.wFormatTag,wfx.nSamplesPerSec,wfx.wBitsPerSample,
229               wfx.nChannels,wfx.nAvgBytesPerSec,wfx.nBlockAlign);
230     }
231
232     /* DSOUND: Error: Invalid frequency buffer */
233     rc=IDirectSoundBuffer_GetFrequency(dsbo,0);
234     ok(rc==DSERR_INVALIDPARAM,"IDirectSoundBuffer_GetFrequency() should have "
235        "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
236
237     /* DSOUND: Error: Primary buffers don't support CTRLFREQUENCY */
238     rc=IDirectSoundBuffer_GetFrequency(dsbo,&freq);
239     ok((rc==DS_OK && !is_primary) || (rc==DSERR_CONTROLUNAVAIL&&is_primary) ||
240        (rc==DSERR_CONTROLUNAVAIL&&!(dsbcaps.dwFlags&DSBCAPS_CTRLFREQUENCY)),
241        "IDirectSoundBuffer_GetFrequency() failed: %s\n",DXGetErrorString8(rc));
242     if (rc==DS_OK) {
243         ok(freq==wfx.nSamplesPerSec,"The frequency returned by GetFrequency "
244            "%ld does not match the format %ld\n",freq,wfx.nSamplesPerSec);
245     }
246
247     /* DSOUND: Error: Invalid status pointer */
248     rc=IDirectSoundBuffer_GetStatus(dsbo,0);
249     ok(rc==DSERR_INVALIDPARAM,"IDirectSoundBuffer_GetStatus() should have "
250        "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
251
252     rc=IDirectSoundBuffer_GetStatus(dsbo,&status);
253     ok(rc==DS_OK,"IDirectSoundBuffer_GetStatus() failed: %s\n",
254        DXGetErrorString8(rc));
255     ok(status==0,"status=0x%lx instead of 0\n",status);
256
257     if (is_primary) {
258         /* We must call SetCooperativeLevel to be allowed to call SetFormat */
259         /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
260         rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
261         ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_PRIORITY) "
262            "failed: %s\n",DXGetErrorString8(rc));
263         if (rc!=DS_OK)
264             return;
265
266         /* DSOUND: Error: Invalid format pointer */
267         rc=IDirectSoundBuffer_SetFormat(dsbo,0);
268         ok(rc==DSERR_INVALIDPARAM,"IDirectSoundBuffer_SetFormat() should have "
269            "returned DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
270
271         init_format(&wfx2,WAVE_FORMAT_PCM,11025,16,2);
272         rc=IDirectSoundBuffer_SetFormat(dsbo,&wfx2);
273         ok(rc==DS_OK,"IDirectSoundBuffer_SetFormat() failed: %s\n",
274            DXGetErrorString8(rc));
275
276         /* There is no garantee that SetFormat will actually change the
277          * format to what we asked for. It depends on what the soundcard
278          * supports. So we must re-query the format.
279          */
280         rc=IDirectSoundBuffer_GetFormat(dsbo,&wfx,sizeof(wfx),NULL);
281         ok(rc==DS_OK,"IDirectSoundBuffer_GetFormat() failed: %s\n",
282            DXGetErrorString8(rc));
283         if (rc==DS_OK &&
284             (wfx.wFormatTag!=wfx2.wFormatTag ||
285              wfx.nSamplesPerSec!=wfx2.nSamplesPerSec ||
286              wfx.wBitsPerSample!=wfx2.wBitsPerSample ||
287              wfx.nChannels!=wfx2.nChannels)) {
288             trace("Requested format tag=0x%04x %ldx%dx%d avg.B/s=%ld align=%d\n",
289                   wfx2.wFormatTag,wfx2.nSamplesPerSec,wfx2.wBitsPerSample,
290                   wfx2.nChannels,wfx2.nAvgBytesPerSec,wfx2.nBlockAlign);
291             trace("Got tag=0x%04x %ldx%dx%d avg.B/s=%ld align=%d\n",
292                   wfx.wFormatTag,wfx.nSamplesPerSec,wfx.wBitsPerSample,
293                   wfx.nChannels,wfx.nAvgBytesPerSec,wfx.nBlockAlign);
294         }
295
296         /* Set the CooperativeLevel back to normal */
297         /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
298         rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
299         ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_NORMAL) "
300            "failed: %s\n",DXGetErrorString8(rc));
301     }
302
303     if (play) {
304         play_state_t state;
305         DS3DLISTENER listener_param;
306         LPDIRECTSOUND3DBUFFER buffer=NULL;
307         DS3DBUFFER buffer_param;
308         DWORD start_time,now;
309
310         if (winetest_interactive) {
311             trace("    Playing %g second 440Hz tone at %ldx%dx%d\n", duration,
312                   wfx.nSamplesPerSec, wfx.wBitsPerSample,wfx.nChannels);
313         }
314
315         if (is_primary) {
316             /* We must call SetCooperativeLevel to be allowed to call Lock */
317             /* DSOUND: Setting DirectSound cooperative level to
318              * DSSCL_WRITEPRIMARY */
319             rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),
320                                                  DSSCL_WRITEPRIMARY);
321             ok(rc==DS_OK,
322                "IDirectSound8_SetCooperativeLevel(DSSCL_WRITEPRIMARY) failed: "
323                "%s\n",DXGetErrorString8(rc));
324             if (rc!=DS_OK)
325                 return;
326         }
327         if (buffer3d) {
328             LPDIRECTSOUNDBUFFER temp_buffer;
329
330             rc=IDirectSoundBuffer_QueryInterface(dsbo,&IID_IDirectSound3DBuffer,
331                                                  (LPVOID *)&buffer);
332             ok(rc==DS_OK,"IDirectSoundBuffer_QueryInterface() failed: %s\n",
333                DXGetErrorString8(rc));
334             if (rc!=DS_OK)
335                 return;
336
337             /* check the COM interface */
338             rc=IDirectSoundBuffer_QueryInterface(dsbo, &IID_IDirectSoundBuffer,
339                                                  (LPVOID *)&temp_buffer);
340             ok(rc==DS_OK && temp_buffer!=NULL,
341                "IDirectSoundBuffer_QueryInterface() failed: %s\n",
342                DXGetErrorString8(rc));
343             ok(temp_buffer==dsbo,"COM interface broken: 0x%08lx != 0x%08lx\n",
344                (DWORD)temp_buffer,(DWORD)dsbo);
345             ref=IDirectSoundBuffer_Release(temp_buffer);
346             ok(ref==1,"IDirectSoundBuffer_Release() has %d references, "
347                "should have 1\n",ref);
348
349             temp_buffer=NULL;
350             rc=IDirectSound3DBuffer_QueryInterface(dsbo, &IID_IDirectSoundBuffer,
351                                                    (LPVOID *)&temp_buffer);
352             ok(rc==DS_OK && temp_buffer!=NULL,
353                "IDirectSound3DBuffer_QueryInterface() failed: %s\n",
354                DXGetErrorString8(rc));
355             ok(temp_buffer==dsbo,"COM interface broken: 0x%08lx != 0x%08lx\n",
356                (DWORD)temp_buffer,(DWORD)dsbo);
357             ref=IDirectSoundBuffer_Release(temp_buffer);
358             ok(ref==1,"IDirectSoundBuffer_Release() has %d references, "
359                "should have 1\n",ref);
360
361 #if 0
362             /* FIXME: this works on windows */
363             ref=IDirectSoundBuffer_Release(dsbo);
364             ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
365                "should have 0\n",ref);
366
367             rc=IDirectSound3DBuffer_QueryInterface(buffer,
368                                                    &IID_IDirectSoundBuffer,
369                                                    (LPVOID *)&dsbo);
370             ok(rc==DS_OK && dsbo!=NULL,"IDirectSound3DBuffer_QueryInterface() "
371                "failed: %s\n",DXGetErrorString8(rc),
372 #endif
373
374             /* DSOUND: Error: Invalid buffer */
375             rc=IDirectSound3DBuffer_GetAllParameters(buffer,0);
376             ok(rc==DSERR_INVALIDPARAM,"IDirectSound3DBuffer_GetAllParameters() "
377                "failed: %s\n",DXGetErrorString8(rc));
378
379             ZeroMemory(&buffer_param, sizeof(buffer_param));
380
381             /* DSOUND: Error: Invalid buffer */
382             rc=IDirectSound3DBuffer_GetAllParameters(buffer,&buffer_param);
383             ok(rc==DSERR_INVALIDPARAM,"IDirectSound3DBuffer_GetAllParameters() "
384                "failed: %s\n",DXGetErrorString8(rc));
385
386             buffer_param.dwSize=sizeof(buffer_param);
387             rc=IDirectSound3DBuffer_GetAllParameters(buffer,&buffer_param);
388             ok(rc==DS_OK,"IDirectSound3DBuffer_GetAllParameters() failed: %s\n",
389                DXGetErrorString8(rc));
390         }
391         if (set_volume) {
392             if (dsbcaps.dwFlags & DSBCAPS_CTRLVOLUME) {
393                 LONG val;
394                 rc=IDirectSoundBuffer_GetVolume(dsbo,&val);
395                 ok(rc==DS_OK,"IDirectSoundBuffer_GetVolume() failed: %s\n",
396                    DXGetErrorString8(rc));
397
398                 rc=IDirectSoundBuffer_SetVolume(dsbo,volume);
399                 ok(rc==DS_OK,"IDirectSoundBuffer_SetVolume() failed: %s\n",
400                    DXGetErrorString8(rc));
401             } else {
402                 /* DSOUND: Error: Buffer does not have CTRLVOLUME */
403                 rc=IDirectSoundBuffer_GetVolume(dsbo,&volume);
404                 ok(rc==DSERR_CONTROLUNAVAIL,"IDirectSoundBuffer_GetVolume() "
405                    "should have returned DSERR_CONTROLUNAVAIL, returned: %s\n",
406                    DXGetErrorString8(rc));
407             }
408         }
409
410         if (set_pan) {
411             if (dsbcaps.dwFlags & DSBCAPS_CTRLPAN) {
412                 LONG val;
413                 rc=IDirectSoundBuffer_GetPan(dsbo,&val);
414                 ok(rc==DS_OK,"IDirectSoundBuffer_GetPan() failed: %s\n",
415                    DXGetErrorString8(rc));
416
417                 rc=IDirectSoundBuffer_SetPan(dsbo,pan);
418                 ok(rc==DS_OK,"IDirectSoundBuffer_SetPan() failed: %s\n",
419                    DXGetErrorString8(rc));
420             } else {
421                 /* DSOUND: Error: Buffer does not have CTRLPAN */
422                 rc=IDirectSoundBuffer_GetPan(dsbo,&pan);
423                 ok(rc==DSERR_CONTROLUNAVAIL,"IDirectSoundBuffer_GetPan() "
424                    "should have returned DSERR_CONTROLUNAVAIL, returned: %s\n",
425                    DXGetErrorString8(rc));
426             }
427         }
428
429         state.wave=wave_generate_la(&wfx,duration,&state.wave_len);
430
431         state.dsbo=dsbo;
432         state.wfx=&wfx;
433         state.buffer_size=dsbcaps.dwBufferBytes;
434         state.played=state.written=state.offset=0;
435         buffer_refill8(&state,state.buffer_size);
436
437         rc=IDirectSoundBuffer_Play(dsbo,0,0,DSBPLAY_LOOPING);
438         ok(rc==DS_OK,"IDirectSoundBuffer_Play() failed: %s\n",
439            DXGetErrorString8(rc));
440
441         rc=IDirectSoundBuffer_GetStatus(dsbo,&status);
442         ok(rc==DS_OK,"IDirectSoundBuffer_GetStatus() failed: %s\n",
443            DXGetErrorString8(rc));
444         ok(status==(DSBSTATUS_PLAYING|DSBSTATUS_LOOPING),
445            "GetStatus: bad status: %lx\n",status);
446
447         if (listener) {
448             ZeroMemory(&listener_param,sizeof(listener_param));
449             listener_param.dwSize=sizeof(listener_param);
450             rc=IDirectSound3DListener_GetAllParameters(listener,&listener_param);
451             ok(rc==DS_OK,"IDirectSound3dListener_GetAllParameters() "
452                "failed: %s\n",DXGetErrorString8(rc));
453             if (move_listener) {
454                 listener_param.vPosition.x = -5.0;
455                 listener_param.vVelocity.x = 10.0/duration;
456             }
457             rc=IDirectSound3DListener_SetAllParameters(listener,
458                                                        &listener_param,
459                                                        DS3D_IMMEDIATE);
460             ok(rc==DS_OK,"IDirectSound3dListener_SetPosition() failed: %s\n",
461                DXGetErrorString8(rc));
462         }
463         if (buffer3d) {
464             if (move_sound) {
465                 buffer_param.vPosition.x = 100.0;
466                 buffer_param.vVelocity.x = -200.0/duration;
467             }
468             buffer_param.flMinDistance = 10;
469             rc=IDirectSound3DBuffer_SetAllParameters(buffer,&buffer_param,
470                                                      DS3D_IMMEDIATE);
471             ok(rc==DS_OK,"IDirectSound3dBuffer_SetPosition() failed: %s\n",
472                DXGetErrorString8(rc));
473         }
474
475         start_time=GetTickCount();
476         while (buffer_service8(&state)) {
477             WaitForSingleObject(GetCurrentProcess(),TIME_SLICE);
478             now=GetTickCount();
479             if (listener && move_listener) {
480                 listener_param.vPosition.x = -5.0+10.0*(now-start_time)/
481                     1000/duration;
482                 if (winetest_debug>2)
483                     trace("listener position=%g\n",listener_param.vPosition.x);
484                 rc=IDirectSound3DListener_SetPosition(listener,
485                     listener_param.vPosition.x,listener_param.vPosition.y,
486                     listener_param.vPosition.z,DS3D_IMMEDIATE);
487                 ok(rc==DS_OK,"IDirectSound3dListener_SetPosition() failed: "
488                    "%s\n",DXGetErrorString8(rc));
489             }
490             if (buffer3d && move_sound) {
491                 buffer_param.vPosition.x = 100-200.0*(now-start_time)/
492                     1000/duration;
493                 if (winetest_debug>2)
494                     trace("sound position=%g\n",buffer_param.vPosition.x);
495                 rc=IDirectSound3DBuffer_SetPosition(buffer,
496                     buffer_param.vPosition.x,buffer_param.vPosition.y,
497                     buffer_param.vPosition.z,DS3D_IMMEDIATE);
498                 ok(rc==DS_OK,"IDirectSound3dBuffer_SetPosition() failed: %s\n",
499                    DXGetErrorString8(rc));
500             }
501         }
502         /* Check the sound duration was within 10% of the expected value */
503         now=GetTickCount();
504         ok(fabs(1000*duration-now+start_time)<=100*duration,
505            "The sound played for %ld ms instead of %g ms\n",
506            now-start_time,1000*duration);
507
508         free(state.wave);
509         if (is_primary) {
510             /* Set the CooperativeLevel back to normal */
511             /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
512             rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
513             ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_NORMAL) "
514                "failed: %s\n",DXGetErrorString8(rc));
515         }
516         if (buffer3d) {
517             ref=IDirectSound3DBuffer_Release(buffer);
518             ok(ref==0,"IDirectSound3DBuffer_Release() has %d references, "
519                "should have 0\n",ref);
520         }
521     }
522 }
523
524 static HRESULT test_secondary8(LPGUID lpGuid, int play,
525                                int has_3d, int has_3dbuffer,
526                                int has_listener, int has_duplicate,
527                                int move_listener, int move_sound)
528 {
529     HRESULT rc;
530     LPDIRECTSOUND8 dso=NULL;
531     LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
532     LPDIRECTSOUND3DLISTENER listener=NULL;
533     DSBUFFERDESC bufdesc;
534     WAVEFORMATEX wfx;
535     int ref;
536
537     /* Create the DirectSound object */
538     rc=DirectSoundCreate8(lpGuid,&dso,NULL);
539     ok(rc==DS_OK,"DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc));
540     if (rc!=DS_OK)
541         return rc;
542
543     /* We must call SetCooperativeLevel before creating primary buffer */
544     /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
545     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
546     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_PRIORITY) failed: "
547        "%s\n",DXGetErrorString8(rc));
548     if (rc!=DS_OK)
549         goto EXIT;
550
551     ZeroMemory(&bufdesc, sizeof(bufdesc));
552     bufdesc.dwSize=sizeof(bufdesc);
553     bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
554     if (has_3d)
555         bufdesc.dwFlags|=DSBCAPS_CTRL3D;
556     else
557         bufdesc.dwFlags|=(DSBCAPS_CTRLVOLUME|DSBCAPS_CTRLPAN);
558     rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
559     ok(rc==DS_OK && primary!=NULL,"IDirectSound8_CreateSoundBuffer() "
560        "failed to create a %sprimary buffer: %s\n",has_3d?"3D ":"",
561        DXGetErrorString8(rc));
562
563     if (rc==DS_OK && primary!=NULL) {
564         if (has_listener) {
565             rc=IDirectSoundBuffer_QueryInterface(primary,
566                                                  &IID_IDirectSound3DListener,
567                                                  (void **)&listener);
568             ok(rc==DS_OK && listener!=NULL,
569                "IDirectSoundBuffer_QueryInterface() failed to get a 3D "
570                "listener %s\n",DXGetErrorString8(rc));
571             ref=IDirectSoundBuffer_Release(primary);
572             ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
573                "should have 0\n",ref);
574             if (rc==DS_OK && listener!=NULL) {
575                 DS3DLISTENER listener_param;
576                 ZeroMemory(&listener_param,sizeof(listener_param));
577                 /* DSOUND: Error: Invalid buffer */
578                 rc=IDirectSound3DListener_GetAllParameters(listener,0);
579                 ok(rc==DSERR_INVALIDPARAM,
580                    "IDirectSound3dListener_GetAllParameters() failed: %s\n",
581                    DXGetErrorString8(rc));
582
583                 /* DSOUND: Error: Invalid buffer */
584                 rc=IDirectSound3DListener_GetAllParameters(listener,
585                                                            &listener_param);
586                 ok(rc==DSERR_INVALIDPARAM,
587                    "IDirectSound3dListener_GetAllParameters() failed: %s\n",
588                    DXGetErrorString8(rc));
589
590                 listener_param.dwSize=sizeof(listener_param);
591                 rc=IDirectSound3DListener_GetAllParameters(listener,
592                                                            &listener_param);
593                 ok(rc==DS_OK,"IDirectSound3dListener_GetAllParameters() "
594                    "failed: %s\n",DXGetErrorString8(rc));
595             }
596             else
597                 goto EXIT;
598         }
599
600         init_format(&wfx,WAVE_FORMAT_PCM,22050,16,2);
601         secondary=NULL;
602         ZeroMemory(&bufdesc, sizeof(bufdesc));
603         bufdesc.dwSize=sizeof(bufdesc);
604         bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
605         if (has_3d)
606             bufdesc.dwFlags|=DSBCAPS_CTRL3D;
607         else
608             bufdesc.dwFlags|=(DSBCAPS_CTRLFREQUENCY|DSBCAPS_CTRLVOLUME|
609                               DSBCAPS_CTRLPAN);
610         bufdesc.dwBufferBytes=wfx.nAvgBytesPerSec*BUFFER_LEN/1000;
611         bufdesc.lpwfxFormat=&wfx;
612         if (winetest_interactive) {
613             trace("  Testing a %s%ssecondary buffer %s%s%s%sat %ldx%dx%d\n",
614                   has_3dbuffer?"3D ":"",
615                   has_duplicate?"duplicated ":"",
616                   listener!=NULL||move_sound?"with ":"",
617                   move_listener?"moving ":"",
618                   listener!=NULL?"listener ":"",
619                   listener&&move_sound?"and moving sound ":move_sound?
620                   "moving sound ":"",
621                   wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels);
622         }
623         rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
624         ok(rc==DS_OK && secondary!=NULL,"IDirectSound8_CreateSoundBuffer() "
625            "failed to create a 3D secondary buffer: %s\n",
626            DXGetErrorString8(rc));
627         if (rc==DS_OK && secondary!=NULL) {
628             if (!has_3d)
629             {
630                 LONG refvol,refpan,vol,pan;
631
632                 /* Check the initial secondary buffer's volume and pan */
633                 rc=IDirectSoundBuffer_GetVolume(secondary,&vol);
634                 ok(rc==DS_OK,"IDirectSoundBuffer_GetVolume(secondary) failed: "
635                    "%s\n",DXGetErrorString8(rc));
636                 ok(vol==0,"wrong volume for a new secondary buffer: %ld\n",vol);
637                 rc=IDirectSoundBuffer_GetPan(secondary,&pan);
638                 ok(rc==DS_OK,"IDirectSoundBuffer_GetPan(secondary) failed: "
639                    "%s\n",DXGetErrorString8(rc));
640                 ok(pan==0,"wrong pan for a new secondary buffer: %ld\n",pan);
641
642                 /* Check that changing the secondary buffer's volume and pan
643                  * does not impact the primary buffer's volume and pan
644                  */
645                 rc=IDirectSoundBuffer_GetVolume(primary,&refvol);
646                 ok(rc==DS_OK,"IDirectSoundBuffer_GetVolume(primary) failed: "
647                    "%s\n",DXGetErrorString8(rc));
648                 rc=IDirectSoundBuffer_GetPan(primary,&refpan);
649                 ok(rc==DS_OK,"IDirectSoundBuffer_GetPan(primary) failed: "
650                    "%s\n",DXGetErrorString8(rc));
651
652                 rc=IDirectSoundBuffer_SetVolume(secondary,-1000);
653                 ok(rc==DS_OK,"IDirectSoundBuffer_SetVolume(secondary) failed: "
654                    "%s\n",DXGetErrorString8(rc));
655                 rc=IDirectSoundBuffer_GetVolume(secondary,&vol);
656                 ok(rc==DS_OK,"IDirectSoundBuffer_SetVolume(secondary) failed: "
657                    "%s\n",DXGetErrorString8(rc));
658                 ok(vol==-1000,"secondary: wrong volume %ld instead of -1000\n",
659                    vol);
660                 rc=IDirectSoundBuffer_SetPan(secondary,-1000);
661                 ok(rc==DS_OK,"IDirectSoundBuffer_SetPan(secondary) failed: "
662                    "%s\n",DXGetErrorString8(rc));
663                 rc=IDirectSoundBuffer_GetPan(secondary,&pan);
664                 ok(rc==DS_OK,"IDirectSoundBuffer_SetPan(secondary) failed: "
665                    "%s\n",DXGetErrorString8(rc));
666                 ok(pan==-1000,"secondary: wrong pan %ld instead of -1000\n",
667                    pan);
668
669                 rc=IDirectSoundBuffer_GetVolume(primary,&vol);
670                 ok(rc==DS_OK,"IDirectSoundBuffer_`GetVolume(primary) failed: i"
671                    "%s\n",DXGetErrorString8(rc));
672                 ok(vol==refvol,"The primary volume changed from %ld to %ld\n",
673                    refvol,vol);
674                 rc=IDirectSoundBuffer_GetPan(primary,&pan);
675                 ok(rc==DS_OK,"IDirectSoundBuffer_GetPan(primary) failed: "
676                    "%s\n",DXGetErrorString8(rc));
677                 ok(pan==refpan,"The primary pan changed from %ld to %ld\n",
678                    refpan,pan);
679
680                 rc=IDirectSoundBuffer_SetVolume(secondary,0);
681                 ok(rc==DS_OK,"IDirectSoundBuffer_SetVolume(secondary) failed: "
682                    "%s\n",DXGetErrorString8(rc));
683                 rc=IDirectSoundBuffer_SetPan(secondary,0);
684                 ok(rc==DS_OK,"IDirectSoundBuffer_SetPan(secondary) failed: "
685                    "%s\n",DXGetErrorString8(rc));
686             }
687             if (has_duplicate) {
688                 LPDIRECTSOUNDBUFFER duplicated=NULL;
689
690                 /* DSOUND: Error: Invalid source buffer */
691                 rc=IDirectSound8_DuplicateSoundBuffer(dso,0,0);
692                 ok(rc==DSERR_INVALIDPARAM,
693                    "IDirectSound8_DuplicateSoundBuffer() should have returned "
694                    "DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
695
696                 /* DSOUND: Error: Invalid dest buffer */
697                 rc=IDirectSound8_DuplicateSoundBuffer(dso,secondary,0);
698                 ok(rc==DSERR_INVALIDPARAM,
699                    "IDirectSound8_DuplicateSoundBuffer() should have returned "
700                    "DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
701
702                 /* DSOUND: Error: Invalid source buffer */
703                 rc=IDirectSound8_DuplicateSoundBuffer(dso,0,&duplicated);
704                 ok(rc==DSERR_INVALIDPARAM,
705                    "IDirectSound8_DuplicateSoundBuffer() should have returned "
706                    "DSERR_INVALIDPARAM, returned: %s\n",DXGetErrorString8(rc));
707
708                 duplicated=NULL;
709                 rc=IDirectSound8_DuplicateSoundBuffer(dso,secondary,
710                                                       &duplicated);
711                 ok(rc==DS_OK && duplicated!=NULL,
712                    "IDirectSound8_DuplicateSoundBuffer() failed to duplicate "
713                    "a secondary buffer: %s\n",DXGetErrorString8(rc));
714
715                 if (rc==DS_OK && duplicated!=NULL) {
716                     ref=IDirectSoundBuffer_Release(secondary);
717                     ok(ref==0,"IDirectSoundBuffer_Release() secondary has %d "
718                        "references, should have 0\n",ref);
719                     secondary=duplicated;
720                 }
721             }
722
723             if (rc==DS_OK && secondary!=NULL) {
724                 double duration;
725                 duration=(move_listener || move_sound?4.0:1.0);
726                 test_buffer8(dso,secondary,0,FALSE,0,FALSE,0,
727                              winetest_interactive,duration,has_3dbuffer,
728                              listener,move_listener,move_sound);
729                 ref=IDirectSoundBuffer_Release(secondary);
730                 ok(ref==0,"IDirectSoundBuffer_Release() %s has %d references, "
731                    "should have 0\n",has_duplicate?"duplicated":"secondary",
732                    ref);
733             }
734         }
735     }
736     if (has_listener) {
737         ref=IDirectSound3DListener_Release(listener);
738         ok(ref==0,"IDirectSound3dListener_Release() listener has %d "
739            "references, should have 0\n",ref);
740     } else {
741         ref=IDirectSoundBuffer_Release(primary);
742         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
743            "should have 0\n",ref);
744     }
745
746     /* Set the CooperativeLevel back to normal */
747     /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
748     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
749     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_NORMAL) failed: "
750        "%s\n",DXGetErrorString8(rc));
751
752 EXIT:
753     ref=IDirectSound8_Release(dso);
754     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
755     if (ref!=0)
756         return DSERR_GENERIC;
757
758     return rc;
759 }
760
761 static HRESULT test_primary8(LPGUID lpGuid)
762 {
763     HRESULT rc;
764     LPDIRECTSOUND8 dso=NULL;
765     LPDIRECTSOUNDBUFFER primary=NULL;
766     DSBUFFERDESC bufdesc;
767     DSCAPS dscaps;
768     int ref, i;
769
770     /* Create the DirectSound object */
771     rc=DirectSoundCreate8(lpGuid,&dso,NULL);
772     ok(rc==DS_OK,"DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc));
773     if (rc!=DS_OK)
774         return rc;
775
776     /* Get the device capabilities */
777     ZeroMemory(&dscaps, sizeof(dscaps));
778     dscaps.dwSize=sizeof(dscaps);
779     rc=IDirectSound8_GetCaps(dso,&dscaps);
780     ok(rc==DS_OK,"IDirectSound8_GetCaps() failed: %s\n",DXGetErrorString8(rc));
781     if (rc!=DS_OK)
782         goto EXIT;
783
784     /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
785     /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
786     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
787     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_PRIORITY) failed: "
788        "%s\n",DXGetErrorString8(rc));
789     if (rc!=DS_OK)
790         goto EXIT;
791
792     /* Testing the primary buffer */
793     primary=NULL;
794     ZeroMemory(&bufdesc, sizeof(bufdesc));
795     bufdesc.dwSize=sizeof(bufdesc);
796     bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER|DSBCAPS_CTRLVOLUME|DSBCAPS_CTRLPAN;
797     rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
798     ok(rc==DS_OK && primary!=NULL,"IDirectSound8_CreateSoundBuffer() failed "
799        "to create a primary buffer: 0x%lx\n",rc);
800     if (rc==DS_OK && primary!=NULL) {
801         test_buffer8(dso,primary,1,TRUE,0,TRUE,0,winetest_interactive &&
802                      !(dscaps.dwFlags & DSCAPS_EMULDRIVER),1.0,0,NULL,0,0);
803         if (winetest_interactive) {
804             LONG volume,pan;
805
806             volume = DSBVOLUME_MAX;
807             for (i = 0; i < 6; i++) {
808                 test_buffer8(dso,primary,1,TRUE,volume,TRUE,0,
809                              winetest_interactive &&
810                              !(dscaps.dwFlags & DSCAPS_EMULDRIVER),
811                              1.0,0,NULL,0,0);
812                 volume -= ((DSBVOLUME_MAX-DSBVOLUME_MIN) / 40);
813             }
814
815             pan = DSBPAN_LEFT;
816             for (i = 0; i < 7; i++) {
817                 test_buffer8(dso,primary,1,TRUE,0,TRUE,pan,
818                              winetest_interactive &&
819                              !(dscaps.dwFlags & DSCAPS_EMULDRIVER),1.0,0,0,0,0);
820                 pan += ((DSBPAN_RIGHT-DSBPAN_LEFT) / 6);
821             }
822         }
823         ref=IDirectSoundBuffer_Release(primary);
824         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
825            "should have 0\n",ref);
826     }
827
828     /* Set the CooperativeLevel back to normal */
829     /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
830     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
831     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_NORMAL) failed: "
832        "%s\n",DXGetErrorString8(rc));
833
834 EXIT:
835     ref=IDirectSound8_Release(dso);
836     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
837     if (ref!=0)
838         return DSERR_GENERIC;
839
840     return rc;
841 }
842
843 static HRESULT test_primary_3d8(LPGUID lpGuid)
844 {
845     HRESULT rc;
846     LPDIRECTSOUND8 dso=NULL;
847     LPDIRECTSOUNDBUFFER primary=NULL;
848     DSBUFFERDESC bufdesc;
849     DSCAPS dscaps;
850     int ref;
851
852     /* Create the DirectSound object */
853     rc=DirectSoundCreate8(lpGuid,&dso,NULL);
854     ok(rc==DS_OK,"DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc));
855     if (rc!=DS_OK)
856         return rc;
857
858     /* Get the device capabilities */
859     ZeroMemory(&dscaps, sizeof(dscaps));
860     dscaps.dwSize=sizeof(dscaps);
861     rc=IDirectSound8_GetCaps(dso,&dscaps);
862     ok(rc==DS_OK,"IDirectSound8_GetCaps failed: %s\n",DXGetErrorString8(rc));
863     if (rc!=DS_OK)
864         goto EXIT;
865
866     /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
867     /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
868     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
869     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_PRIORITY) failed: "
870        "%s\n",DXGetErrorString8(rc));
871     if (rc!=DS_OK)
872         goto EXIT;
873
874     primary=NULL;
875     ZeroMemory(&bufdesc, sizeof(bufdesc));
876     bufdesc.dwSize=sizeof(bufdesc);
877     bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
878     rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
879     ok(rc==DS_OK && primary!=NULL,"IDirectSound8_CreateSoundBuffer() failed "
880        "to create a primary buffer: %s\n",DXGetErrorString8(rc));
881     if (rc==DS_OK && primary!=NULL) {
882         ref=IDirectSoundBuffer_Release(primary);
883         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
884            "should have 0\n",ref);
885         primary=NULL;
886         ZeroMemory(&bufdesc, sizeof(bufdesc));
887         bufdesc.dwSize=sizeof(bufdesc);
888         bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER|DSBCAPS_CTRL3D;
889         rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
890         ok(rc==DS_OK && primary!=NULL,"IDirectSound8_CreateSoundBuffer() "
891            "failed to create a 3D primary buffer: %s\n",DXGetErrorString8(rc));
892         if (rc==DS_OK && primary!=NULL) {
893             test_buffer8(dso,primary,1,FALSE,0,FALSE,0,
894                          winetest_interactive &&
895                          !(dscaps.dwFlags & DSCAPS_EMULDRIVER),1.0,0,0,0,0);
896             ref=IDirectSoundBuffer_Release(primary);
897             ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
898                "should have 0\n",ref);
899         }
900     }
901     /* Set the CooperativeLevel back to normal */
902     /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
903     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
904     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_NORMAL) failed: "
905        "%s\n",DXGetErrorString8(rc));
906
907 EXIT:
908     ref=IDirectSound8_Release(dso);
909     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
910     if (ref!=0)
911         return DSERR_GENERIC;
912
913     return rc;
914 }
915
916 static HRESULT test_primary_3d_with_listener8(LPGUID lpGuid)
917 {
918     HRESULT rc;
919     LPDIRECTSOUND8 dso=NULL;
920     LPDIRECTSOUNDBUFFER primary=NULL;
921     DSBUFFERDESC bufdesc;
922     DSCAPS dscaps;
923     int ref;
924
925     /* Create the DirectSound object */
926     rc=DirectSoundCreate8(lpGuid,&dso,NULL);
927     ok(rc==DS_OK,"DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc));
928     if (rc!=DS_OK)
929         return rc;
930
931     /* Get the device capabilities */
932     ZeroMemory(&dscaps, sizeof(dscaps));
933     dscaps.dwSize=sizeof(dscaps);
934     rc=IDirectSound8_GetCaps(dso,&dscaps);
935     ok(rc==DS_OK,"IDirectSound8_GetCaps() failed: %s\n",DXGetErrorString8(rc));
936     if (rc!=DS_OK)
937         goto EXIT;
938
939     /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
940     /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
941     rc=IDirectSound8_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
942     ok(rc==DS_OK,"IDirectSound8_SetCooperativeLevel(DSSCL_PRIORITY) failed: "
943        "%s\n",DXGetErrorString8(rc));
944     if (rc!=DS_OK)
945         goto EXIT;
946     primary=NULL;
947     ZeroMemory(&bufdesc, sizeof(bufdesc));
948     bufdesc.dwSize=sizeof(bufdesc);
949     bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER|DSBCAPS_CTRL3D;
950     rc=IDirectSound8_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
951     ok(rc==DS_OK && primary!=NULL,"IDirectSound8_CreateSoundBuffer() failed "
952        "to create a 3D primary buffer %s\n",DXGetErrorString8(rc));
953     if (rc==DS_OK && primary!=NULL) {
954         LPDIRECTSOUND3DLISTENER listener=NULL;
955         rc=IDirectSoundBuffer_QueryInterface(primary,
956                                              &IID_IDirectSound3DListener,
957                                              (void **)&listener);
958         ok(rc==DS_OK && listener!=NULL,"IDirectSoundBuffer_QueryInterface() "
959            "failed to get a 3D listener: %s\n",DXGetErrorString8(rc));
960         if (rc==DS_OK && listener!=NULL) {
961             LPDIRECTSOUNDBUFFER temp_buffer=NULL;
962
963             /* Checking the COM interface */
964             rc=IDirectSoundBuffer_QueryInterface(primary,
965                                                  &IID_IDirectSoundBuffer,
966                                                  (LPVOID *)&temp_buffer);
967             ok(rc==DS_OK && temp_buffer!=NULL,
968                "IDirectSoundBuffer_QueryInterface() failed: %s\n",
969                DXGetErrorString8(rc));
970             ok(temp_buffer==primary,"COM interface broken: 0x%08lx != "
971                "0x%08lx\n",(DWORD)temp_buffer,(DWORD)primary);
972             if (rc==DS_OK && temp_buffer!=NULL) {
973                 ref=IDirectSoundBuffer_Release(temp_buffer);
974                 ok(ref==1,"IDirectSoundBuffer_Release() has %d references, "
975                    "should have 1\n",ref);
976
977                 temp_buffer=NULL;
978                 rc=IDirectSound3DListener_QueryInterface(listener,
979                     &IID_IDirectSoundBuffer,(LPVOID *)&temp_buffer);
980                 ok(rc==DS_OK && temp_buffer!=NULL,
981                    "IDirectSoundBuffer_QueryInterface() failed: %s\n",
982                    DXGetErrorString8(rc));
983                 ok(temp_buffer==primary,"COM interface broken: 0x%08lx != "
984                    "0x%08lx\n",(DWORD)temp_buffer,(DWORD)primary);
985                 ref=IDirectSoundBuffer_Release(temp_buffer);
986                 ok(ref==1,"IDirectSoundBuffer_Release() has %d references, "
987                    "should have 1\n",ref);
988
989                 /* Testing the buffer */
990                 test_buffer8(dso,primary,1,FALSE,0,FALSE,0,
991                              winetest_interactive &&
992                              !(dscaps.dwFlags & DSCAPS_EMULDRIVER),
993                              1.0,0,listener,0,0);
994             }
995
996             /* Testing the reference counting */
997             ref=IDirectSound3DListener_Release(listener);
998             ok(ref==0,"IDirectSound3DListener_Release() listener has %d "
999                "references, should have 0\n",ref);
1000         }
1001
1002         /* Testing the reference counting */
1003         ref=IDirectSoundBuffer_Release(primary);
1004         ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
1005            "should have 0\n",ref);
1006     }
1007
1008 EXIT:
1009     ref=IDirectSound8_Release(dso);
1010     ok(ref==0,"IDirectSound8_Release() has %d references, should have 0\n",ref);
1011     if (ref!=0)
1012 return DSERR_GENERIC;
1013
1014     return rc;
1015 }
1016
1017 static BOOL WINAPI dsenum_callback(LPGUID lpGuid, LPCSTR lpcstrDescription,
1018                                    LPCSTR lpcstrModule, LPVOID lpContext)
1019 {
1020     trace("*** Testing %s - %s ***\n",lpcstrDescription,lpcstrModule);
1021
1022     trace("  Testing the primary buffer\n");
1023     test_primary8(lpGuid);
1024
1025     trace("  Testing 3D primary buffer\n");
1026     test_primary_3d8(lpGuid);
1027
1028     trace("  Testing 3D primary buffer with listener\n");
1029     test_primary_3d_with_listener8(lpGuid);
1030
1031     /* Testing secondary buffers */
1032     test_secondary8(lpGuid,winetest_interactive,0,0,0,0,0,0);
1033     test_secondary8(lpGuid,winetest_interactive,0,0,0,1,0,0);
1034
1035     /* Testing 3D secondary buffers */
1036     test_secondary8(lpGuid,winetest_interactive,1,0,0,0,0,0);
1037     test_secondary8(lpGuid,winetest_interactive,1,1,0,0,0,0);
1038     test_secondary8(lpGuid,winetest_interactive,1,1,0,1,0,0);
1039     test_secondary8(lpGuid,winetest_interactive,1,0,1,0,0,0);
1040     test_secondary8(lpGuid,winetest_interactive,1,0,1,1,0,0);
1041     test_secondary8(lpGuid,winetest_interactive,1,1,1,0,0,0);
1042     test_secondary8(lpGuid,winetest_interactive,1,1,1,1,0,0);
1043     test_secondary8(lpGuid,winetest_interactive,1,1,1,0,1,0);
1044     test_secondary8(lpGuid,winetest_interactive,1,1,1,0,0,1);
1045     test_secondary8(lpGuid,winetest_interactive,1,1,1,0,1,1);
1046
1047     return 1;
1048 }
1049
1050 static void ds3d8_tests()
1051 {
1052     HRESULT rc;
1053     rc=DirectSoundEnumerateA(&dsenum_callback,NULL);
1054     ok(rc==DS_OK,"DirectSoundEnumerateA() failed: %s\n",DXGetErrorString8(rc));
1055 }
1056
1057 START_TEST(ds3d8)
1058 {
1059     HMODULE hDsound;
1060     FARPROC pFunc;
1061
1062     CoInitialize(NULL);
1063
1064     hDsound = LoadLibraryA("dsound.dll");
1065     if (!hDsound) {
1066         trace("dsound.dll not found\n");
1067         return;
1068     }
1069
1070     pFunc = (void*)GetProcAddress(hDsound, "DirectSoundCreate8");
1071     if (!pFunc) {
1072         trace("ds3d8 test skipped\n");
1073         return;
1074     }
1075
1076     ds3d8_tests();
1077 }