2002-12-05 20:19:41 +01:00
|
|
|
/*
|
2004-06-18 01:03:11 +02:00
|
|
|
* Tests basic sound playback in DirectSound.
|
|
|
|
* In particular we test each standard Windows sound format to make sure
|
|
|
|
* we handle the sound card/driver quirks correctly.
|
2002-12-05 20:19:41 +01:00
|
|
|
*
|
2004-06-18 01:03:11 +02:00
|
|
|
* Part of this test involves playing test tones. But this only makes
|
|
|
|
* sense if someone is going to carefully listen to it, and would only
|
|
|
|
* bother everyone else.
|
|
|
|
* So this is only done if the test is being run in interactive mode.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2002-2004 Francois Gouget
|
2007-05-24 20:42:14 +02:00
|
|
|
* Copyright (c) 2007 Maarten Lankhorst
|
2002-12-05 20:19:41 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-12-05 20:19:41 +01:00
|
|
|
*/
|
|
|
|
|
2003-06-28 00:22:15 +02:00
|
|
|
#include <windows.h>
|
|
|
|
|
2002-12-05 20:19:41 +01:00
|
|
|
#include "wine/test.h"
|
|
|
|
#include "dsound.h"
|
2004-07-30 20:42:51 +02:00
|
|
|
#include "dsconf.h"
|
2007-11-05 23:23:28 +01:00
|
|
|
#include "mmreg.h"
|
|
|
|
#include "initguid.h"
|
|
|
|
#include "ks.h"
|
|
|
|
#include "ksmedia.h"
|
2002-12-05 20:19:41 +01:00
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
#include "dsound_test.h"
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2008-07-08 16:17:17 +02:00
|
|
|
DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
|
|
|
|
|
2007-01-15 15:00:39 +01:00
|
|
|
static HRESULT (WINAPI *pDirectSoundEnumerateA)(LPDSENUMCALLBACKA,LPVOID)=NULL;
|
|
|
|
static HRESULT (WINAPI *pDirectSoundCreate)(LPCGUID,LPDIRECTSOUND*,
|
|
|
|
LPUNKNOWN)=NULL;
|
|
|
|
|
2008-04-23 02:12:28 +02:00
|
|
|
static BOOL gotdx8;
|
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
static void IDirectSound_test(LPDIRECTSOUND dso, BOOL initialized,
|
|
|
|
LPCGUID lpGuid)
|
2004-07-12 21:45:28 +02:00
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
DSCAPS dscaps;
|
|
|
|
int ref;
|
|
|
|
IUnknown * unknown;
|
|
|
|
IDirectSound * ds;
|
|
|
|
IDirectSound8 * ds8;
|
2009-11-20 10:11:42 +01:00
|
|
|
DWORD speaker_config, new_speaker_config, ref_speaker_config;
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* Try to Query for objects */
|
|
|
|
rc=IDirectSound_QueryInterface(dso,&IID_IUnknown,(LPVOID*)&unknown);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_QueryInterface(IID_IUnknown) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (rc==DS_OK)
|
|
|
|
IDirectSound_Release(unknown);
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_QueryInterface(dso,&IID_IDirectSound,(LPVOID*)&ds);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_QueryInterface(IID_IDirectSound) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (rc==DS_OK)
|
|
|
|
IDirectSound_Release(ds);
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_QueryInterface(dso,&IID_IDirectSound8,(LPVOID*)&ds8);
|
|
|
|
ok(rc==E_NOINTERFACE,"IDirectSound_QueryInterface(IID_IDirectSound8) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have failed: %08x\n",rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (rc==DS_OK)
|
|
|
|
IDirectSound8_Release(ds8);
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
if (initialized == FALSE) {
|
2006-11-12 19:51:37 +01:00
|
|
|
/* try uninitialized object */
|
2004-07-19 22:06:22 +02:00
|
|
|
rc=IDirectSound_GetCaps(dso,0);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_UNINITIALIZED,"IDirectSound_GetCaps(NULL) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
|
2004-07-12 21:45:28 +02:00
|
|
|
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_UNINITIALIZED,"IDirectSound_GetCaps() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
|
|
|
|
rc=IDirectSound_Compact(dso);
|
|
|
|
ok(rc==DSERR_UNINITIALIZED,"IDirectSound_Compact() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
|
|
|
|
rc=IDirectSound_GetSpeakerConfig(dso,&speaker_config);
|
|
|
|
ok(rc==DSERR_UNINITIALIZED,"IDirectSound_GetSpeakerConfig() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_UNINITIALIZED, returned: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
|
|
|
|
rc=IDirectSound_Initialize(dso,lpGuid);
|
2005-03-05 12:15:27 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED||rc==E_FAIL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_Initialize() failed: %08x\n",rc);
|
2004-10-25 23:45:51 +02:00
|
|
|
if (rc==DSERR_NODRIVER) {
|
|
|
|
trace(" No Driver\n");
|
2005-05-06 21:33:32 +02:00
|
|
|
goto EXIT;
|
2005-03-05 12:15:27 +01:00
|
|
|
} else if (rc==E_FAIL) {
|
|
|
|
trace(" No Device\n");
|
2005-05-06 21:33:32 +02:00
|
|
|
goto EXIT;
|
2004-10-25 23:45:51 +02:00
|
|
|
} else if (rc==DSERR_ALLOCATED) {
|
2005-03-30 12:21:44 +02:00
|
|
|
trace(" Already In Use\n");
|
2005-05-06 21:33:32 +02:00
|
|
|
goto EXIT;
|
2004-10-25 23:45:51 +02:00
|
|
|
}
|
2004-07-12 21:45:28 +02:00
|
|
|
}
|
|
|
|
|
2005-05-06 21:33:32 +02:00
|
|
|
rc=IDirectSound_Initialize(dso,lpGuid);
|
|
|
|
ok(rc==DSERR_ALREADYINITIALIZED, "IDirectSound_Initialize() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_ALREADYINITIALIZED: %08x\n", rc);
|
2005-05-06 21:33:32 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* DSOUND: Error: Invalid caps buffer */
|
|
|
|
rc=IDirectSound_GetCaps(dso,0);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM,"IDirectSound_GetCaps(NULL) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
ZeroMemory(&dscaps, sizeof(dscaps));
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* DSOUND: Error: Invalid caps buffer */
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM,"IDirectSound_GetCaps() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
dscaps.dwSize=sizeof(dscaps);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* DSOUND: Running on a certified driver */
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetCaps() failed: %08x\n",rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_Compact(dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DSERR_PRIOLEVELNEEDED,"IDirectSound_Compact() failed: %08x\n", rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_Compact(dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_Compact() failed: %08x\n",rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_GetSpeakerConfig(dso,0);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM,"IDirectSound_GetSpeakerConfig(NULL) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_GetSpeakerConfig(dso,&speaker_config);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetSpeakerConfig() failed: %08x\n", rc);
|
2009-11-20 10:11:42 +01:00
|
|
|
ref_speaker_config = speaker_config;
|
2004-07-21 05:23:13 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
speaker_config = DSSPEAKER_COMBINED(DSSPEAKER_STEREO,
|
|
|
|
DSSPEAKER_GEOMETRY_WIDE);
|
2009-11-20 10:11:42 +01:00
|
|
|
if (speaker_config == ref_speaker_config)
|
|
|
|
speaker_config = DSSPEAKER_COMBINED(DSSPEAKER_STEREO,
|
|
|
|
DSSPEAKER_GEOMETRY_NARROW);
|
|
|
|
if(rc==DS_OK) {
|
|
|
|
rc=IDirectSound_SetSpeakerConfig(dso,speaker_config);
|
|
|
|
ok(rc==DS_OK,"IDirectSound_SetSpeakerConfig() failed: %08x\n", rc);
|
|
|
|
}
|
2004-07-30 20:42:51 +02:00
|
|
|
if (rc==DS_OK) {
|
|
|
|
rc=IDirectSound_GetSpeakerConfig(dso,&new_speaker_config);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetSpeakerConfig() failed: %08x\n", rc);
|
2004-08-23 19:50:31 +02:00
|
|
|
if (rc==DS_OK && speaker_config!=new_speaker_config)
|
|
|
|
trace("IDirectSound_GetSpeakerConfig() failed to set speaker "
|
2006-10-10 01:07:36 +02:00
|
|
|
"config: expected 0x%08x, got 0x%08x\n",
|
2004-07-30 20:42:51 +02:00
|
|
|
speaker_config,new_speaker_config);
|
2009-11-20 10:11:42 +01:00
|
|
|
IDirectSound_SetSpeakerConfig(dso,ref_speaker_config);
|
2004-07-21 05:23:13 +02:00
|
|
|
}
|
|
|
|
|
2005-05-06 21:33:32 +02:00
|
|
|
EXIT:
|
2004-07-30 20:42:51 +02:00
|
|
|
ref=IDirectSound_Release(dso);
|
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
2004-07-12 21:45:28 +02:00
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void IDirectSound_tests(void)
|
2004-07-12 21:45:28 +02:00
|
|
|
{
|
|
|
|
HRESULT rc;
|
2004-07-30 20:42:51 +02:00
|
|
|
LPDIRECTSOUND dso=NULL;
|
2006-08-18 07:14:12 +02:00
|
|
|
LPCLASSFACTORY cf=NULL;
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
trace("Testing IDirectSound\n");
|
|
|
|
|
2006-08-18 07:14:12 +02:00
|
|
|
rc=CoGetClassObject(&CLSID_DirectSound, CLSCTX_INPROC_SERVER, NULL,
|
|
|
|
&IID_IClassFactory, (void**)&cf);
|
|
|
|
ok(rc==S_OK,"CoGetClassObject(CLSID_DirectSound, IID_IClassFactory) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"failed: %08x\n", rc);
|
2006-08-18 07:14:12 +02:00
|
|
|
|
|
|
|
rc=CoGetClassObject(&CLSID_DirectSound, CLSCTX_INPROC_SERVER, NULL,
|
|
|
|
&IID_IUnknown, (void**)&cf);
|
|
|
|
ok(rc==S_OK,"CoGetClassObject(CLSID_DirectSound, IID_IUnknown) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"failed: %08x\n", rc);
|
2006-08-18 07:14:12 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* try the COM class factory method of creation with no device specified */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSound, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IDirectSound, (void**)&dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==S_OK,"CoCreateInstance(CLSID_DirectSound) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (dso)
|
|
|
|
IDirectSound_test(dso, FALSE, NULL);
|
|
|
|
|
|
|
|
/* try the COM class factory method of creation with default playback
|
|
|
|
* device specified */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSound, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IDirectSound, (void**)&dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==S_OK,"CoCreateInstance(CLSID_DirectSound) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (dso)
|
|
|
|
IDirectSound_test(dso, FALSE, &DSDEVID_DefaultPlayback);
|
|
|
|
|
|
|
|
/* try the COM class factory method of creation with default voice
|
|
|
|
* playback device specified */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSound, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IDirectSound, (void**)&dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==S_OK,"CoCreateInstance(CLSID_DirectSound) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (dso)
|
|
|
|
IDirectSound_test(dso, FALSE, &DSDEVID_DefaultVoicePlayback);
|
|
|
|
|
|
|
|
/* try the COM class factory method of creation with a bad
|
|
|
|
* IID specified */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSound, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&CLSID_DirectSoundPrivate, (void**)&dso);
|
|
|
|
ok(rc==E_NOINTERFACE,
|
|
|
|
"CoCreateInstance(CLSID_DirectSound,CLSID_DirectSoundPrivate) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have failed: %08x\n",rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
|
|
|
|
/* try the COM class factory method of creation with a bad
|
|
|
|
* GUID and IID specified */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSoundPrivate, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IDirectSound, (void**)&dso);
|
|
|
|
ok(rc==REGDB_E_CLASSNOTREG,
|
|
|
|
"CoCreateInstance(CLSID_DirectSoundPrivate,IID_IDirectSound) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have failed: %08x\n",rc);
|
2004-07-12 21:45:28 +02:00
|
|
|
|
2004-07-21 05:23:13 +02:00
|
|
|
/* try with no device specified */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(NULL,&dso,NULL);
|
2005-03-05 12:15:27 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED||rc==E_FAIL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate(NULL) failed: %08x\n",rc);
|
2004-10-19 23:10:41 +02:00
|
|
|
if (rc==S_OK && dso)
|
2004-07-30 20:42:51 +02:00
|
|
|
IDirectSound_test(dso, TRUE, NULL);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
|
|
|
/* try with default playback device specified */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(&DSDEVID_DefaultPlayback,&dso,NULL);
|
2005-03-05 12:15:27 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED||rc==E_FAIL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate(DSDEVID_DefaultPlayback) failed: %08x\n", rc);
|
2004-10-19 23:10:41 +02:00
|
|
|
if (rc==DS_OK && dso)
|
2004-07-30 20:42:51 +02:00
|
|
|
IDirectSound_test(dso, TRUE, NULL);
|
2004-07-21 05:23:13 +02:00
|
|
|
|
|
|
|
/* try with default voice playback device specified */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(&DSDEVID_DefaultVoicePlayback,&dso,NULL);
|
2005-03-05 12:15:27 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED||rc==E_FAIL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate(DSDEVID_DefaultVoicePlayback) failed: %08x\n", rc);
|
2004-10-19 23:10:41 +02:00
|
|
|
if (rc==DS_OK && dso)
|
2004-07-30 20:42:51 +02:00
|
|
|
IDirectSound_test(dso, TRUE, NULL);
|
|
|
|
|
|
|
|
/* try with a bad device specified */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(&DSDEVID_DefaultVoiceCapture,&dso,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_NODRIVER,"DirectSoundCreate(DSDEVID_DefaultVoiceCapture) "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have failed: %08x\n",rc);
|
2005-05-06 21:33:32 +02:00
|
|
|
if (rc==DS_OK && dso)
|
|
|
|
IDirectSound_Release(dso);
|
2004-07-12 21:45:28 +02:00
|
|
|
}
|
2003-01-03 00:08:57 +01:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
static HRESULT test_dsound(LPGUID lpGuid)
|
2003-01-03 00:08:57 +01:00
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
2003-09-02 01:59:03 +02:00
|
|
|
int ref;
|
2003-06-28 00:22:15 +02:00
|
|
|
|
|
|
|
/* DSOUND: Error: Invalid interface buffer */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,0,NULL);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(rc==DSERR_INVALIDPARAM,"DirectSoundCreate() should have returned "
|
2008-07-08 17:49:20 +02:00
|
|
|
"DSERR_INVALIDPARAM, returned: %08x\n",rc);
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2005-03-05 12:15:27 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED||rc==E_FAIL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2003-01-03 00:08:57 +01:00
|
|
|
if (rc!=DS_OK)
|
2004-06-18 01:03:11 +02:00
|
|
|
return rc;
|
2003-01-03 00:08:57 +01:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* Try the enumerated device */
|
|
|
|
IDirectSound_test(dso, TRUE, lpGuid);
|
2004-07-04 02:13:44 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
/* Try the COM class factory method of creation with enumerated device */
|
|
|
|
rc=CoCreateInstance(&CLSID_DirectSound, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IDirectSound, (void**)&dso);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==S_OK,"CoCreateInstance(CLSID_DirectSound) failed: %08x\n", rc);
|
2004-07-30 20:42:51 +02:00
|
|
|
if (dso)
|
|
|
|
IDirectSound_test(dso, FALSE, lpGuid);
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
/* Create a DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"DirectSoundCreate() failed: %08x\n",rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc==DS_OK) {
|
2004-06-18 01:03:11 +02:00
|
|
|
LPDIRECTSOUND dso1=NULL;
|
|
|
|
|
|
|
|
/* Create a second DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso1,NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"DirectSoundCreate() failed: %08x\n",rc);
|
2004-06-18 01:03:11 +02:00
|
|
|
if (rc==DS_OK) {
|
|
|
|
/* Release the second DirectSound object */
|
|
|
|
ref=IDirectSound_Release(dso1);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have "
|
|
|
|
"0\n",ref);
|
2005-09-12 12:30:05 +02:00
|
|
|
ok(dso!=dso1,"DirectSound objects should be unique: dso=%p,dso1=%p\n",dso,dso1);
|
2004-06-18 01:03:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Release the first DirectSound object */
|
|
|
|
ref=IDirectSound_Release(dso);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",
|
2004-07-30 20:42:51 +02:00
|
|
|
ref);
|
2004-06-18 01:03:11 +02:00
|
|
|
if (ref!=0)
|
|
|
|
return DSERR_GENERIC;
|
2003-09-02 01:59:03 +02:00
|
|
|
} else
|
2004-06-18 01:03:11 +02:00
|
|
|
return rc;
|
2004-07-04 02:13:44 +02:00
|
|
|
|
2004-07-14 01:35:09 +02:00
|
|
|
/* Create a DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"DirectSoundCreate() failed: %08x\n",rc);
|
2004-07-14 01:35:09 +02:00
|
|
|
if (rc==DS_OK) {
|
|
|
|
LPDIRECTSOUNDBUFFER secondary;
|
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
WAVEFORMATEX wfx;
|
|
|
|
|
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,11025,8,1);
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
2004-07-19 21:34:44 +02:00
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2 | DSBCAPS_CTRL3D;
|
2005-02-16 17:09:02 +01:00
|
|
|
bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
|
|
|
|
wfx.nBlockAlign);
|
2004-07-14 01:35:09 +02:00
|
|
|
bufdesc.lpwfxFormat=&wfx;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2010-09-30 11:31:11 +02:00
|
|
|
ok((rc==DS_OK && secondary!=NULL) || broken(rc == DSERR_CONTROLUNAVAIL), /* vmware drivers on w2k */
|
2004-08-13 21:44:29 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a secondary "
|
2008-07-08 17:49:20 +02:00
|
|
|
"buffer %08x\n",rc);
|
2004-07-14 01:35:09 +02:00
|
|
|
if (rc==DS_OK && secondary!=NULL) {
|
2004-07-19 21:34:44 +02:00
|
|
|
LPDIRECTSOUND3DBUFFER buffer3d;
|
2004-07-30 20:42:51 +02:00
|
|
|
rc=IDirectSound_QueryInterface(secondary, &IID_IDirectSound3DBuffer,
|
|
|
|
(void **)&buffer3d);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(rc==DS_OK && buffer3d!=NULL,"IDirectSound_QueryInterface() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"failed: %08x\n",rc);
|
2004-07-19 21:34:44 +02:00
|
|
|
if (rc==DS_OK && buffer3d!=NULL) {
|
|
|
|
ref=IDirectSound3DBuffer_AddRef(buffer3d);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==2,"IDirectSound3DBuffer_AddRef() has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 2\n",ref);
|
2004-07-19 21:34:44 +02:00
|
|
|
}
|
|
|
|
ref=IDirectSoundBuffer_AddRef(secondary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==2,"IDirectSoundBuffer_AddRef() has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 2\n",ref);
|
2004-07-14 01:35:09 +02:00
|
|
|
}
|
|
|
|
/* release with buffer */
|
|
|
|
ref=IDirectSound_Release(dso);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",
|
2004-07-30 20:42:51 +02:00
|
|
|
ref);
|
2004-07-14 01:35:09 +02:00
|
|
|
if (ref!=0)
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
} else
|
|
|
|
return rc;
|
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
return DS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT test_primary(LPGUID lpGuid)
|
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
|
|
|
LPDIRECTSOUNDBUFFER primary=NULL,second=NULL,third=NULL;
|
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
DSCAPS dscaps;
|
2004-08-25 04:09:00 +02:00
|
|
|
WAVEFORMATEX wfx;
|
2004-06-18 01:03:11 +02:00
|
|
|
int ref;
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2004-10-21 21:51:10 +02:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc!=DS_OK)
|
2004-06-18 01:03:11 +02:00
|
|
|
return rc;
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
/* Get the device capabilities */
|
|
|
|
ZeroMemory(&dscaps, sizeof(dscaps));
|
|
|
|
dscaps.dwSize=sizeof(dscaps);
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetCaps() failed: %08x\n",rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
2003-06-28 00:22:15 +02:00
|
|
|
/* DSOUND: Error: Invalid buffer description pointer */
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,0,0,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_INVALIDPARAM,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have failed: %08x\n", rc);
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2008-06-24 19:29:50 +02:00
|
|
|
/* DSOUND: Error: NULL pointer is invalid */
|
2003-06-28 00:22:15 +02:00
|
|
|
/* DSOUND: Error: Invalid buffer description pointer */
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,0,&primary,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_INVALIDPARAM && primary==0,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have failed: rc=%08x,"
|
|
|
|
"dsbo=%p\n",rc,primary);
|
2003-06-28 00:22:15 +02:00
|
|
|
|
|
|
|
/* DSOUND: Error: Invalid size */
|
|
|
|
/* DSOUND: Error: Invalid buffer description */
|
2008-06-24 19:29:50 +02:00
|
|
|
primary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc)-1;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM && primary==0,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have failed: rc=%08x,"
|
|
|
|
"primary=%p\n",rc,primary);
|
2008-06-24 19:29:50 +02:00
|
|
|
|
|
|
|
/* DSOUND: Error: DSBCAPS_PRIMARYBUFFER flag with non-NULL lpwfxFormat */
|
|
|
|
/* DSOUND: Error: Invalid buffer description pointer */
|
|
|
|
primary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
|
|
|
|
bufdesc.lpwfxFormat=&wfx;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM && primary==0,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have failed: rc=%08x,"
|
|
|
|
"primary=%p\n",rc,primary);
|
2008-06-24 19:29:50 +02:00
|
|
|
|
|
|
|
/* DSOUND: Error: No DSBCAPS_PRIMARYBUFFER flag with NULL lpwfxFormat */
|
|
|
|
/* DSOUND: Error: Invalid buffer description pointer */
|
|
|
|
primary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=0;
|
|
|
|
bufdesc.lpwfxFormat=NULL;
|
2003-06-28 00:22:15 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DSERR_INVALIDPARAM && primary==0,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have failed: rc=%08x,"
|
|
|
|
"primary=%p\n",rc,primary);
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2003-02-15 01:01:17 +01:00
|
|
|
/* We must call SetCooperativeLevel before calling CreateSoundBuffer */
|
2003-06-28 00:22:15 +02:00
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
|
2003-02-15 01:01:17 +01:00
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2003-02-15 01:01:17 +01:00
|
|
|
if (rc!=DS_OK)
|
2004-06-18 01:03:11 +02:00
|
|
|
goto EXIT;
|
2003-02-15 01:01:17 +01:00
|
|
|
|
2003-01-03 00:08:57 +01:00
|
|
|
/* Testing the primary buffer */
|
2004-08-25 04:09:00 +02:00
|
|
|
primary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER|DSBCAPS_CTRLVOLUME;
|
|
|
|
bufdesc.lpwfxFormat = &wfx;
|
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,11025,8,2);
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM,"IDirectSound_CreateSoundBuffer() should have "
|
2008-07-08 17:49:20 +02:00
|
|
|
"returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
|
2004-08-25 04:09:00 +02:00
|
|
|
if (rc==DS_OK && primary!=NULL)
|
|
|
|
IDirectSoundBuffer_Release(primary);
|
|
|
|
|
2003-06-28 00:22:15 +02:00
|
|
|
primary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
2003-01-03 00:08:57 +01:00
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
2004-07-17 01:42:44 +02:00
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER|DSBCAPS_CTRLVOLUME;
|
2003-06-28 00:22:15 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
2005-06-05 19:55:08 +02:00
|
|
|
ok((rc==DS_OK && primary!=NULL) || (rc==DSERR_CONTROLUNAVAIL),
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a primary buffer: %08x\n",rc);
|
2005-06-05 19:55:08 +02:00
|
|
|
if (rc==DSERR_CONTROLUNAVAIL)
|
|
|
|
trace(" No Primary\n");
|
|
|
|
else if (rc==DS_OK && primary!=NULL) {
|
2004-07-17 01:42:44 +02:00
|
|
|
LONG vol;
|
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
/* Try to create a second primary buffer */
|
2004-07-30 20:42:51 +02:00
|
|
|
/* DSOUND: Error: The primary buffer already exists.
|
|
|
|
* Any changes made to the buffer description will be ignored. */
|
2004-06-18 01:03:11 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&second,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DS_OK && second==primary,
|
2004-08-13 21:44:29 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() should have returned original "
|
2008-07-08 17:49:20 +02:00
|
|
|
"primary buffer: %08x\n",rc);
|
2004-06-18 01:03:11 +02:00
|
|
|
ref=IDirectSoundBuffer_Release(second);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==1,"IDirectSoundBuffer_Release() primary has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 1\n",ref);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
|
|
|
/* Try to duplicate a primary buffer */
|
|
|
|
/* DSOUND: Error: Can't duplicate primary buffers */
|
|
|
|
rc=IDirectSound_DuplicateSoundBuffer(dso,primary,&third);
|
|
|
|
/* rc=0x88780032 */
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(rc!=DS_OK,"IDirectSound_DuplicateSoundBuffer() primary buffer "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have failed %08x\n",rc);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
2004-07-17 01:42:44 +02:00
|
|
|
rc=IDirectSoundBuffer_GetVolume(primary,&vol);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer_GetVolume() failed: %08x\n", rc);
|
2004-07-17 01:42:44 +02:00
|
|
|
|
2004-07-30 20:42:51 +02:00
|
|
|
if (winetest_interactive) {
|
2004-08-23 19:50:31 +02:00
|
|
|
trace("Playing a 5 seconds reference tone at the current "
|
|
|
|
"volume.\n");
|
2004-07-17 01:42:44 +02:00
|
|
|
if (rc==DS_OK)
|
2006-10-10 01:07:36 +02:00
|
|
|
trace("(the current volume is %d according to DirectSound)\n",
|
2004-07-30 20:42:51 +02:00
|
|
|
vol);
|
2004-06-18 01:03:11 +02:00
|
|
|
trace("All subsequent tones should be identical to this one.\n");
|
|
|
|
trace("Listen for stutter, changes in pitch, volume, etc.\n");
|
|
|
|
}
|
2006-01-06 12:16:41 +01:00
|
|
|
test_buffer(dso,&primary,1,FALSE,0,FALSE,0,winetest_interactive &&
|
2005-02-25 20:17:11 +01:00
|
|
|
!(dscaps.dwFlags & DSCAPS_EMULDRIVER),5.0,0,0,0,0,FALSE,0);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
|
|
|
ref=IDirectSoundBuffer_Release(primary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 0\n",ref);
|
2003-01-03 00:08:57 +01:00
|
|
|
}
|
2003-09-15 22:08:26 +02:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
/* Set the CooperativeLevel back to normal */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
EXIT:
|
|
|
|
ref=IDirectSound_Release(dso);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (ref!=0)
|
2004-06-18 01:03:11 +02:00
|
|
|
return DSERR_GENERIC;
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-08-09 20:50:06 +02:00
|
|
|
/*
|
|
|
|
* Test the primary buffer at different formats while keeping the
|
|
|
|
* secondary buffer at a constant format.
|
|
|
|
*/
|
|
|
|
static HRESULT test_primary_secondary(LPGUID lpGuid)
|
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
|
|
|
LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
|
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
DSCAPS dscaps;
|
|
|
|
WAVEFORMATEX wfx, wfx2;
|
|
|
|
int f,ref;
|
|
|
|
|
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2004-10-21 21:51:10 +02:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* Get the device capabilities */
|
|
|
|
ZeroMemory(&dscaps, sizeof(dscaps));
|
|
|
|
dscaps.dwSize=sizeof(dscaps);
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetCaps() failed: %08x\n",rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
|
|
|
/* We must call SetCooperativeLevel before creating primary buffer */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
|
|
|
ok(rc==DS_OK && primary!=NULL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a primary buffer %08x\n",rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
|
|
|
if (rc==DS_OK && primary!=NULL) {
|
|
|
|
for (f=0;f<NB_FORMATS;f++) {
|
2004-08-23 19:50:31 +02:00
|
|
|
/* We must call SetCooperativeLevel to be allowed to call
|
|
|
|
* SetFormat */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to
|
|
|
|
* DSSCL_PRIORITY */
|
2004-08-09 20:50:06 +02:00
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,formats[f][0],formats[f][1],
|
|
|
|
formats[f][2]);
|
|
|
|
wfx2=wfx;
|
|
|
|
rc=IDirectSoundBuffer_SetFormat(primary,&wfx);
|
2008-04-23 02:12:28 +02:00
|
|
|
|
|
|
|
if (wfx.wBitsPerSample <= 16)
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer_SetFormat(%s) failed: %08x\n",
|
|
|
|
format_string(&wfx), rc);
|
2008-04-23 02:12:28 +02:00
|
|
|
else
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK || rc == E_INVALIDARG, "SetFormat (%s) failed: %08x\n",
|
|
|
|
format_string(&wfx), rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
2006-11-07 00:37:42 +01:00
|
|
|
/* There is no guarantee that SetFormat will actually change the
|
2004-08-09 20:50:06 +02:00
|
|
|
* format to what we asked for. It depends on what the soundcard
|
|
|
|
* supports. So we must re-query the format.
|
|
|
|
*/
|
|
|
|
rc=IDirectSoundBuffer_GetFormat(primary,&wfx,sizeof(wfx),NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer_GetFormat() failed: %08x\n", rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (rc==DS_OK &&
|
|
|
|
(wfx.wFormatTag!=wfx2.wFormatTag ||
|
|
|
|
wfx.nSamplesPerSec!=wfx2.nSamplesPerSec ||
|
|
|
|
wfx.wBitsPerSample!=wfx2.wBitsPerSample ||
|
|
|
|
wfx.nChannels!=wfx2.nChannels)) {
|
2006-10-10 01:07:36 +02:00
|
|
|
trace("Requested primary format tag=0x%04x %dx%dx%d "
|
|
|
|
"avg.B/s=%d align=%d\n",
|
2004-08-09 20:50:06 +02:00
|
|
|
wfx2.wFormatTag,wfx2.nSamplesPerSec,wfx2.wBitsPerSample,
|
|
|
|
wfx2.nChannels,wfx2.nAvgBytesPerSec,wfx2.nBlockAlign);
|
2006-10-10 01:07:36 +02:00
|
|
|
trace("Got tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
|
2004-08-09 20:50:06 +02:00
|
|
|
wfx.wFormatTag,wfx.nSamplesPerSec,wfx.wBitsPerSample,
|
|
|
|
wfx.nChannels,wfx.nAvgBytesPerSec,wfx.nBlockAlign);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the CooperativeLevel back to normal */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
|
|
|
init_format(&wfx2,WAVE_FORMAT_PCM,11025,16,2);
|
|
|
|
|
|
|
|
secondary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
|
2005-02-16 17:09:02 +01:00
|
|
|
bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
|
|
|
|
wfx.nBlockAlign);
|
2004-08-09 20:50:06 +02:00
|
|
|
bufdesc.lpwfxFormat=&wfx2;
|
2004-08-12 05:29:39 +02:00
|
|
|
if (winetest_interactive) {
|
2006-10-10 01:07:36 +02:00
|
|
|
trace(" Testing a primary buffer at %dx%dx%d with a "
|
|
|
|
"secondary buffer at %dx%dx%d\n",
|
2004-08-12 05:29:39 +02:00
|
|
|
wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels,
|
|
|
|
wfx2.nSamplesPerSec,wfx2.wBitsPerSample,wfx2.nChannels);
|
|
|
|
}
|
2004-08-09 20:50:06 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2010-09-30 11:31:11 +02:00
|
|
|
ok((rc==DS_OK && secondary!=NULL) || broken(rc == DSERR_CONTROLUNAVAIL), /* vmware drivers on w2k */
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a secondary buffer %08x\n",rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
|
|
|
if (rc==DS_OK && secondary!=NULL) {
|
2006-01-06 12:16:41 +01:00
|
|
|
test_buffer(dso,&secondary,0,FALSE,0,FALSE,0,
|
2005-02-25 20:17:11 +01:00
|
|
|
winetest_interactive,1.0,0,NULL,0,0,FALSE,0);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
|
|
|
ref=IDirectSoundBuffer_Release(secondary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
|
2004-08-09 20:50:06 +02:00
|
|
|
"should have 0\n",ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ref=IDirectSoundBuffer_Release(primary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
|
2004-08-09 20:50:06 +02:00
|
|
|
"should have 0\n",ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the CooperativeLevel back to normal */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2004-08-09 20:50:06 +02:00
|
|
|
|
|
|
|
EXIT:
|
|
|
|
ref=IDirectSound_Release(dso);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
2004-08-09 20:50:06 +02:00
|
|
|
if (ref!=0)
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
static HRESULT test_secondary(LPGUID lpGuid)
|
2003-09-02 01:59:03 +02:00
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
2004-06-18 01:03:11 +02:00
|
|
|
LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
|
2003-09-02 01:59:03 +02:00
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
DSCAPS dscaps;
|
2005-02-10 21:26:20 +01:00
|
|
|
WAVEFORMATEX wfx, wfx1;
|
2004-08-09 20:52:18 +02:00
|
|
|
DWORD f;
|
|
|
|
int ref;
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2004-10-21 21:51:10 +02:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc!=DS_OK)
|
2004-06-18 01:03:11 +02:00
|
|
|
return rc;
|
2003-09-02 01:59:03 +02:00
|
|
|
|
|
|
|
/* Get the device capabilities */
|
|
|
|
ZeroMemory(&dscaps, sizeof(dscaps));
|
|
|
|
dscaps.dwSize=sizeof(dscaps);
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetCaps() failed: %08x\n",rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
2003-01-03 00:08:57 +01:00
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
/* We must call SetCooperativeLevel before creating primary buffer */
|
2003-09-02 01:59:03 +02:00
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (rc!=DS_OK)
|
2004-06-18 01:03:11 +02:00
|
|
|
goto EXIT;
|
2003-09-15 22:08:26 +02:00
|
|
|
|
2003-06-28 00:22:15 +02:00
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
2003-05-22 05:39:32 +02:00
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
2003-06-28 00:22:15 +02:00
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DS_OK && primary!=NULL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a primary buffer %08x\n",rc);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
|
|
|
if (rc==DS_OK && primary!=NULL) {
|
2005-02-10 21:26:20 +01:00
|
|
|
rc=IDirectSoundBuffer_GetFormat(primary,&wfx1,sizeof(wfx1),NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer8_Getformat() failed: %08x\n", rc);
|
2005-02-10 21:26:20 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT1;
|
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
for (f=0;f<NB_FORMATS;f++) {
|
2007-11-05 23:23:28 +01:00
|
|
|
WAVEFORMATEXTENSIBLE wfxe;
|
2004-07-30 20:42:51 +02:00
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,formats[f][0],formats[f][1],
|
|
|
|
formats[f][2]);
|
2004-06-18 01:03:11 +02:00
|
|
|
secondary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
|
2005-02-16 17:09:02 +01:00
|
|
|
bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
|
|
|
|
wfx.nBlockAlign);
|
2004-08-25 04:09:00 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM,"IDirectSound_CreateSoundBuffer() "
|
2008-07-08 17:49:20 +02:00
|
|
|
"should have returned DSERR_INVALIDPARAM, returned: %08x\n", rc);
|
2004-08-25 04:09:00 +02:00
|
|
|
if (rc==DS_OK && secondary!=NULL)
|
|
|
|
IDirectSoundBuffer_Release(secondary);
|
|
|
|
|
|
|
|
secondary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
|
2005-02-16 17:09:02 +01:00
|
|
|
bufdesc.dwBufferBytes=align(wfx.nAvgBytesPerSec*BUFFER_LEN/1000,
|
|
|
|
wfx.nBlockAlign);
|
2004-06-18 01:03:11 +02:00
|
|
|
bufdesc.lpwfxFormat=&wfx;
|
2007-11-05 23:23:28 +01:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2008-04-23 02:12:28 +02:00
|
|
|
if (gotdx8 || wfx.wBitsPerSample <= 16)
|
|
|
|
{
|
|
|
|
if (wfx.wBitsPerSample > 16)
|
2008-09-09 20:44:46 +02:00
|
|
|
ok(((rc == DSERR_CONTROLUNAVAIL || rc == DSERR_INVALIDCALL || rc == DSERR_INVALIDPARAM /* 2003 */) && !secondary)
|
|
|
|
|| rc == DS_OK, /* driver dependent? */
|
|
|
|
"IDirectSound_CreateSoundBuffer() "
|
2008-07-08 20:48:44 +02:00
|
|
|
"should have returned (DSERR_CONTROLUNAVAIL or DSERR_INVALIDCALL) "
|
|
|
|
"and NULL, returned: %08x %p\n", rc, secondary);
|
2008-04-23 02:12:28 +02:00
|
|
|
else
|
2010-09-30 11:31:11 +02:00
|
|
|
ok((rc==DS_OK && secondary!=NULL) || broken(rc == DSERR_CONTROLUNAVAIL), /* vmware drivers on w2k */
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a secondary buffer %08x\n",rc);
|
2008-04-23 02:12:28 +02:00
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
else
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==E_INVALIDARG, "Creating %d bpp buffer on dx < 8 returned: %p %08x\n",
|
|
|
|
wfx.wBitsPerSample, secondary, rc);
|
2008-04-23 02:12:28 +02:00
|
|
|
|
|
|
|
if (!gotdx8)
|
|
|
|
{
|
|
|
|
skip("Not doing the WAVE_FORMAT_EXTENSIBLE tests\n");
|
|
|
|
/* Apparently they succeed with bogus values,
|
|
|
|
* which means that older dsound doesn't look at them
|
|
|
|
*/
|
|
|
|
goto no_wfe;
|
|
|
|
}
|
|
|
|
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
|
|
|
IDirectSoundBuffer_Release(secondary);
|
|
|
|
secondary = NULL;
|
|
|
|
|
|
|
|
bufdesc.lpwfxFormat=(WAVEFORMATEX*)&wfxe;
|
|
|
|
wfxe.Format = wfx;
|
|
|
|
wfxe.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
|
|
|
|
wfxe.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
|
|
|
|
wfxe.Format.cbSize = 1;
|
|
|
|
wfxe.Samples.wValidBitsPerSample = wfx.wBitsPerSample;
|
|
|
|
wfxe.dwChannelMask = (wfx.nChannels == 1 ? KSAUDIO_SPEAKER_MONO : KSAUDIO_SPEAKER_STEREO);
|
|
|
|
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2008-09-09 20:44:46 +02:00
|
|
|
ok((rc==DSERR_INVALIDPARAM || rc==DSERR_INVALIDCALL /* 2003 */) && !secondary,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
|
|
|
rc, secondary);
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
2008-09-09 20:44:46 +02:00
|
|
|
{
|
2007-11-05 23:23:28 +01:00
|
|
|
IDirectSoundBuffer_Release(secondary);
|
2008-09-09 20:44:46 +02:00
|
|
|
secondary=NULL;
|
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
|
|
|
|
wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx) + 1;
|
|
|
|
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2008-09-19 07:26:57 +02:00
|
|
|
ok(((rc==DSERR_CONTROLUNAVAIL || rc==DSERR_INVALIDCALL || rc==DSERR_INVALIDPARAM)
|
|
|
|
&& !secondary)
|
|
|
|
|| rc==DS_OK, /* 2003 / 2008 */
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
|
|
|
rc, secondary);
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
2008-09-09 20:44:46 +02:00
|
|
|
{
|
2007-11-05 23:23:28 +01:00
|
|
|
IDirectSoundBuffer_Release(secondary);
|
2008-09-09 20:44:46 +02:00
|
|
|
secondary=NULL;
|
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
|
|
|
|
wfxe.Format.cbSize = sizeof(wfxe) - sizeof(wfx);
|
|
|
|
wfxe.SubFormat = GUID_NULL;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2008-07-08 20:48:44 +02:00
|
|
|
ok((rc==DSERR_INVALIDPARAM || rc==DSERR_INVALIDCALL) && !secondary,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
|
|
|
rc, secondary);
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
2008-09-09 20:44:46 +02:00
|
|
|
{
|
2007-11-05 23:23:28 +01:00
|
|
|
IDirectSoundBuffer_Release(secondary);
|
2008-09-09 20:44:46 +02:00
|
|
|
secondary=NULL;
|
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
wfxe.SubFormat = KSDATAFORMAT_SUBTYPE_PCM;
|
|
|
|
|
|
|
|
++wfxe.Samples.wValidBitsPerSample;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
|
|
|
ok(rc==DSERR_INVALIDPARAM && !secondary,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
|
|
|
rc, secondary);
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
2008-09-09 20:44:46 +02:00
|
|
|
{
|
2007-11-05 23:23:28 +01:00
|
|
|
IDirectSoundBuffer_Release(secondary);
|
2008-09-09 20:44:46 +02:00
|
|
|
secondary=NULL;
|
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
--wfxe.Samples.wValidBitsPerSample;
|
|
|
|
|
|
|
|
wfxe.Samples.wValidBitsPerSample = 0;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
|
|
|
ok(rc==DS_OK && secondary,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() returned: %08x %p\n",
|
|
|
|
rc, secondary);
|
2007-11-05 23:23:28 +01:00
|
|
|
if (secondary)
|
2008-09-09 20:44:46 +02:00
|
|
|
{
|
2007-11-05 23:23:28 +01:00
|
|
|
IDirectSoundBuffer_Release(secondary);
|
2008-09-09 20:44:46 +02:00
|
|
|
secondary=NULL;
|
|
|
|
}
|
2007-11-05 23:23:28 +01:00
|
|
|
wfxe.Samples.wValidBitsPerSample = wfxe.Format.wBitsPerSample;
|
|
|
|
|
2004-06-18 01:03:11 +02:00
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2004-07-30 20:42:51 +02:00
|
|
|
ok(rc==DS_OK && secondary!=NULL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a secondary buffer %08x\n",rc);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
2008-04-23 02:12:28 +02:00
|
|
|
no_wfe:
|
2004-06-18 01:03:11 +02:00
|
|
|
if (rc==DS_OK && secondary!=NULL) {
|
2007-11-05 23:23:28 +01:00
|
|
|
if (winetest_interactive) {
|
|
|
|
trace(" Testing a secondary buffer at %dx%dx%d "
|
|
|
|
"with a primary buffer at %dx%dx%d\n",
|
|
|
|
wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels,
|
|
|
|
wfx1.nSamplesPerSec,wfx1.wBitsPerSample,wfx1.nChannels);
|
|
|
|
}
|
2006-01-06 12:16:41 +01:00
|
|
|
test_buffer(dso,&secondary,0,FALSE,0,FALSE,0,
|
2005-02-25 20:17:11 +01:00
|
|
|
winetest_interactive,1.0,0,NULL,0,0,FALSE,0);
|
2004-06-18 01:03:11 +02:00
|
|
|
|
|
|
|
ref=IDirectSoundBuffer_Release(secondary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 0\n",ref);
|
2004-06-18 01:03:11 +02:00
|
|
|
}
|
|
|
|
}
|
2005-02-10 21:26:20 +01:00
|
|
|
EXIT1:
|
2004-06-18 01:03:11 +02:00
|
|
|
ref=IDirectSoundBuffer_Release(primary);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
|
2004-07-30 20:42:51 +02:00
|
|
|
"should have 0\n",ref);
|
2003-05-22 05:39:32 +02:00
|
|
|
}
|
2004-06-18 01:03:11 +02:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
/* Set the CooperativeLevel back to normal */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
EXIT:
|
|
|
|
ref=IDirectSound_Release(dso);
|
2004-08-13 21:44:29 +02:00
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
2003-09-02 01:59:03 +02:00
|
|
|
if (ref!=0)
|
2004-06-18 01:03:11 +02:00
|
|
|
return DSERR_GENERIC;
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
return rc;
|
|
|
|
}
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2005-02-16 17:09:02 +01:00
|
|
|
static HRESULT test_block_align(LPGUID lpGuid)
|
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
|
|
|
LPDIRECTSOUNDBUFFER secondary=NULL;
|
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
DSBCAPS dsbcaps;
|
|
|
|
WAVEFORMATEX wfx;
|
2007-05-24 20:42:14 +02:00
|
|
|
DWORD pos, pos2;
|
2005-02-16 17:09:02 +01:00
|
|
|
int ref;
|
|
|
|
|
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2005-02-16 17:09:02 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2005-02-16 17:09:02 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,11025,16,2);
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2;
|
|
|
|
bufdesc.dwBufferBytes=wfx.nAvgBytesPerSec + 1;
|
|
|
|
bufdesc.lpwfxFormat=&wfx;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2010-09-30 11:31:11 +02:00
|
|
|
ok(rc == DS_OK || broken(rc == DSERR_CONTROLUNAVAIL), /* vmware drivers on w2k */
|
|
|
|
"IDirectSound_CreateSoundBuffer() should have returned DS_OK, returned: %08x\n", rc);
|
2005-02-16 17:09:02 +01:00
|
|
|
|
|
|
|
if (rc==DS_OK && secondary!=NULL) {
|
2005-02-18 13:51:43 +01:00
|
|
|
ZeroMemory(&dsbcaps, sizeof(dsbcaps));
|
|
|
|
dsbcaps.dwSize = sizeof(dsbcaps);
|
2005-02-16 17:09:02 +01:00
|
|
|
rc=IDirectSoundBuffer_GetCaps(secondary,&dsbcaps);
|
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer_GetCaps() should have returned DS_OK, "
|
2008-07-08 17:49:20 +02:00
|
|
|
"returned: %08x\n", rc);
|
2007-05-24 20:42:14 +02:00
|
|
|
if (rc==DS_OK && wfx.nBlockAlign > 1)
|
|
|
|
{
|
2005-02-18 13:51:43 +01:00
|
|
|
ok(dsbcaps.dwBufferBytes==(wfx.nAvgBytesPerSec + wfx.nBlockAlign),
|
2006-10-10 01:07:36 +02:00
|
|
|
"Buffer size not a multiple of nBlockAlign: requested %d, "
|
|
|
|
"got %d, should be %d\n", bufdesc.dwBufferBytes,
|
2005-02-18 13:51:43 +01:00
|
|
|
dsbcaps.dwBufferBytes, wfx.nAvgBytesPerSec + wfx.nBlockAlign);
|
2007-05-24 20:42:14 +02:00
|
|
|
|
|
|
|
rc = IDirectSoundBuffer_SetCurrentPosition(secondary, 0);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc == DS_OK, "Could not set position to 0: %08x\n", rc);
|
2007-05-24 20:42:14 +02:00
|
|
|
rc = IDirectSoundBuffer_GetCurrentPosition(secondary, &pos, NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc == DS_OK, "Could not get position: %08x\n", rc);
|
2007-05-24 20:42:14 +02:00
|
|
|
rc = IDirectSoundBuffer_SetCurrentPosition(secondary, 1);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc == DS_OK, "Could not set position to 1: %08x\n", rc);
|
2007-05-24 20:42:14 +02:00
|
|
|
rc = IDirectSoundBuffer_GetCurrentPosition(secondary, &pos2, NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc == DS_OK, "Could not get new position: %08x\n", rc);
|
2007-05-24 20:42:14 +02:00
|
|
|
ok(pos == pos2, "Positions not the same! Old position: %d, new position: %d\n", pos, pos2);
|
|
|
|
}
|
2005-02-16 17:09:02 +01:00
|
|
|
ref=IDirectSoundBuffer_Release(secondary);
|
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() secondary has %d references, "
|
|
|
|
"should have 0\n",ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref=IDirectSound_Release(dso);
|
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
|
|
|
if (ref!=0)
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-02-25 20:17:11 +01:00
|
|
|
static struct fmt {
|
|
|
|
int bits;
|
|
|
|
int channels;
|
|
|
|
} fmts[] = { { 8, 1 }, { 8, 2 }, { 16, 1 }, {16, 2 } };
|
|
|
|
|
|
|
|
static HRESULT test_frequency(LPGUID lpGuid)
|
|
|
|
{
|
|
|
|
HRESULT rc;
|
|
|
|
LPDIRECTSOUND dso=NULL;
|
|
|
|
LPDIRECTSOUNDBUFFER primary=NULL,secondary=NULL;
|
|
|
|
DSBUFFERDESC bufdesc;
|
|
|
|
DSCAPS dscaps;
|
|
|
|
WAVEFORMATEX wfx, wfx1;
|
|
|
|
DWORD f, r;
|
|
|
|
int ref;
|
|
|
|
int rates[] = { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100,
|
|
|
|
48000, 96000 };
|
|
|
|
|
|
|
|
/* Create the DirectSound object */
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundCreate(lpGuid,&dso,NULL);
|
2005-02-25 20:17:11 +01:00
|
|
|
ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED,
|
2008-07-08 17:49:20 +02:00
|
|
|
"DirectSoundCreate() failed: %08x\n",rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* Get the device capabilities */
|
|
|
|
ZeroMemory(&dscaps, sizeof(dscaps));
|
|
|
|
dscaps.dwSize=sizeof(dscaps);
|
|
|
|
rc=IDirectSound_GetCaps(dso,&dscaps);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_GetCaps() failed: %08x\n",rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
|
|
|
/* We must call SetCooperativeLevel before creating primary buffer */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_PRIORITY);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT;
|
|
|
|
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_PRIMARYBUFFER;
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&primary,NULL);
|
|
|
|
ok(rc==DS_OK && primary!=NULL,
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a primary buffer %08x\n",rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
|
|
|
|
if (rc==DS_OK && primary!=NULL) {
|
|
|
|
rc=IDirectSoundBuffer_GetFormat(primary,&wfx1,sizeof(wfx1),NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSoundBuffer8_Getformat() failed: %08x\n", rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
if (rc!=DS_OK)
|
|
|
|
goto EXIT1;
|
|
|
|
|
|
|
|
for (f=0;f<sizeof(fmts)/sizeof(fmts[0]);f++) {
|
|
|
|
for (r=0;r<sizeof(rates)/sizeof(rates[0]);r++) {
|
|
|
|
init_format(&wfx,WAVE_FORMAT_PCM,11025,fmts[f].bits,
|
|
|
|
fmts[f].channels);
|
|
|
|
secondary=NULL;
|
|
|
|
ZeroMemory(&bufdesc, sizeof(bufdesc));
|
|
|
|
bufdesc.dwSize=sizeof(bufdesc);
|
|
|
|
bufdesc.dwFlags=DSBCAPS_GETCURRENTPOSITION2|DSBCAPS_CTRLFREQUENCY;
|
|
|
|
bufdesc.dwBufferBytes=align((wfx.nAvgBytesPerSec*rates[r]/11025)*
|
|
|
|
BUFFER_LEN/1000,wfx.nBlockAlign);
|
|
|
|
bufdesc.lpwfxFormat=&wfx;
|
|
|
|
if (winetest_interactive) {
|
2006-10-10 01:07:36 +02:00
|
|
|
trace(" Testing a secondary buffer at %dx%dx%d "
|
|
|
|
"with a primary buffer at %dx%dx%d\n",
|
2005-02-25 20:17:11 +01:00
|
|
|
wfx.nSamplesPerSec,wfx.wBitsPerSample,wfx.nChannels,
|
|
|
|
wfx1.nSamplesPerSec,wfx1.wBitsPerSample,wfx1.nChannels);
|
|
|
|
}
|
|
|
|
rc=IDirectSound_CreateSoundBuffer(dso,&bufdesc,&secondary,NULL);
|
2010-09-30 11:31:11 +02:00
|
|
|
ok((rc==DS_OK && secondary!=NULL) || broken(rc == DSERR_CONTROLUNAVAIL), /* vmware drivers on w2k */
|
2008-07-08 17:49:20 +02:00
|
|
|
"IDirectSound_CreateSoundBuffer() failed to create a secondary buffer %08x\n",rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
|
|
|
|
if (rc==DS_OK && secondary!=NULL) {
|
2006-01-06 12:16:41 +01:00
|
|
|
test_buffer(dso,&secondary,0,FALSE,0,FALSE,0,
|
2005-02-25 20:17:11 +01:00
|
|
|
winetest_interactive,1.0,0,NULL,0,0,TRUE,rates[r]);
|
|
|
|
|
|
|
|
ref=IDirectSoundBuffer_Release(secondary);
|
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() has %d references, "
|
|
|
|
"should have 0\n",ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EXIT1:
|
|
|
|
ref=IDirectSoundBuffer_Release(primary);
|
|
|
|
ok(ref==0,"IDirectSoundBuffer_Release() primary has %d references, "
|
|
|
|
"should have 0\n",ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the CooperativeLevel back to normal */
|
|
|
|
/* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
|
|
|
|
rc=IDirectSound_SetCooperativeLevel(dso,get_hwnd(),DSSCL_NORMAL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"IDirectSound_SetCooperativeLevel() failed: %08x\n", rc);
|
2005-02-25 20:17:11 +01:00
|
|
|
|
|
|
|
EXIT:
|
|
|
|
ref=IDirectSound_Release(dso);
|
|
|
|
ok(ref==0,"IDirectSound_Release() has %d references, should have 0\n",ref);
|
|
|
|
if (ref!=0)
|
|
|
|
return DSERR_GENERIC;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-04-20 07:01:36 +02:00
|
|
|
static unsigned int number;
|
|
|
|
|
2003-09-02 01:59:03 +02:00
|
|
|
static BOOL WINAPI dsenum_callback(LPGUID lpGuid, LPCSTR lpcstrDescription,
|
2004-06-18 01:03:11 +02:00
|
|
|
LPCSTR lpcstrModule, LPVOID lpContext)
|
2003-09-02 01:59:03 +02:00
|
|
|
{
|
2004-10-19 23:10:41 +02:00
|
|
|
HRESULT rc;
|
2004-08-23 19:50:31 +02:00
|
|
|
trace("*** Testing %s - %s ***\n",lpcstrDescription,lpcstrModule);
|
2008-04-20 07:01:36 +02:00
|
|
|
|
|
|
|
/* Don't test the primary device */
|
|
|
|
if (!number++)
|
|
|
|
{
|
|
|
|
ok (!lpcstrModule[0], "lpcstrModule(%s) != NULL\n", lpcstrModule);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-10-19 23:10:41 +02:00
|
|
|
rc = test_dsound(lpGuid);
|
|
|
|
if (rc == DSERR_NODRIVER)
|
2004-10-21 21:51:10 +02:00
|
|
|
trace(" No Driver\n");
|
|
|
|
else if (rc == DSERR_ALLOCATED)
|
|
|
|
trace(" Already In Use\n");
|
2005-02-23 13:43:38 +01:00
|
|
|
else if (rc == E_FAIL)
|
|
|
|
trace(" No Device\n");
|
2004-10-19 23:10:41 +02:00
|
|
|
else {
|
2005-02-16 17:09:02 +01:00
|
|
|
test_block_align(lpGuid);
|
2004-10-19 23:10:41 +02:00
|
|
|
test_primary(lpGuid);
|
|
|
|
test_primary_secondary(lpGuid);
|
|
|
|
test_secondary(lpGuid);
|
2005-02-25 20:17:11 +01:00
|
|
|
test_frequency(lpGuid);
|
2004-10-19 23:10:41 +02:00
|
|
|
}
|
2003-06-28 00:22:15 +02:00
|
|
|
|
2002-12-05 20:19:41 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-06-20 16:18:03 +02:00
|
|
|
static void dsound_tests(void)
|
2002-12-05 20:19:41 +01:00
|
|
|
{
|
|
|
|
HRESULT rc;
|
2007-01-15 15:00:39 +01:00
|
|
|
rc=pDirectSoundEnumerateA(&dsenum_callback,NULL);
|
2008-07-08 17:49:20 +02:00
|
|
|
ok(rc==DS_OK,"DirectSoundEnumerateA() failed: %08x\n",rc);
|
2002-12-05 20:19:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
START_TEST(dsound)
|
|
|
|
{
|
2007-01-15 15:00:39 +01:00
|
|
|
HMODULE hDsound;
|
|
|
|
|
2004-07-12 21:45:28 +02:00
|
|
|
CoInitialize(NULL);
|
|
|
|
|
2007-08-30 14:50:32 +02:00
|
|
|
hDsound = LoadLibrary("dsound.dll");
|
|
|
|
if (hDsound)
|
|
|
|
{
|
2008-09-21 18:59:34 +02:00
|
|
|
BOOL ret;
|
|
|
|
|
2007-08-30 14:50:32 +02:00
|
|
|
ok( FreeLibrary(hDsound), "FreeLibrary(1) returned %d\n", GetLastError());
|
2008-09-21 18:59:34 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
|
|
|
ret = FreeLibrary(hDsound);
|
|
|
|
ok( ret ||
|
|
|
|
broken(!ret && GetLastError() == ERROR_MOD_NOT_FOUND) || /* NT4 */
|
|
|
|
broken(!ret && GetLastError() == ERROR_INVALID_HANDLE), /* Win9x */
|
|
|
|
"FreeLibrary(2) returned %d\n", GetLastError());
|
2007-08-30 14:50:32 +02:00
|
|
|
ok(!FreeLibrary(hDsound), "DirectSound DLL still loaded\n");
|
|
|
|
}
|
|
|
|
|
2007-01-15 15:00:39 +01:00
|
|
|
hDsound = LoadLibrary("dsound.dll");
|
|
|
|
if (hDsound)
|
|
|
|
{
|
|
|
|
|
|
|
|
pDirectSoundEnumerateA = (void*)GetProcAddress(hDsound,
|
|
|
|
"DirectSoundEnumerateA");
|
|
|
|
pDirectSoundCreate = (void*)GetProcAddress(hDsound,
|
|
|
|
"DirectSoundCreate");
|
2005-03-05 11:49:08 +01:00
|
|
|
|
2008-04-23 02:12:28 +02:00
|
|
|
gotdx8 = !!GetProcAddress(hDsound, "DirectSoundCreate8");
|
|
|
|
|
2007-01-15 15:00:39 +01:00
|
|
|
IDirectSound_tests();
|
|
|
|
dsound_tests();
|
|
|
|
|
|
|
|
FreeLibrary(hDsound);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
skip("dsound.dll not found!\n");
|
2005-01-09 17:34:00 +01:00
|
|
|
|
|
|
|
CoUninitialize();
|
2002-12-05 20:19:41 +01:00
|
|
|
}
|