2010-02-21 11:53:11 +01:00
|
|
|
/*
|
2010-03-20 15:24:53 +01:00
|
|
|
* Copyright 2010 Maarten Lankhorst for CodeWeavers
|
2010-02-21 11:53:11 +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
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This test is for audio playback specific mechanisms
|
|
|
|
* Tests:
|
|
|
|
* - IAudioClient with eRender and IAudioRenderClient
|
|
|
|
*/
|
|
|
|
|
2011-05-09 21:52:27 +02:00
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
#include "wine/test.h"
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#ifdef STANDALONE
|
|
|
|
#include "initguid.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "unknwn.h"
|
|
|
|
#include "uuids.h"
|
|
|
|
#include "mmdeviceapi.h"
|
|
|
|
#include "audioclient.h"
|
2011-05-02 15:22:31 +02:00
|
|
|
#include "audiopolicy.h"
|
2010-02-21 11:53:11 +01:00
|
|
|
|
2011-11-16 18:46:09 +01:00
|
|
|
static const unsigned int win_formats[][4] = {
|
|
|
|
{ 8000, 8, 1}, { 8000, 8, 2}, { 8000, 16, 1}, { 8000, 16, 2},
|
|
|
|
{11025, 8, 1}, {11025, 8, 2}, {11025, 16, 1}, {11025, 16, 2},
|
|
|
|
{12000, 8, 1}, {12000, 8, 2}, {12000, 16, 1}, {12000, 16, 2},
|
|
|
|
{16000, 8, 1}, {16000, 8, 2}, {16000, 16, 1}, {16000, 16, 2},
|
|
|
|
{22050, 8, 1}, {22050, 8, 2}, {22050, 16, 1}, {22050, 16, 2},
|
|
|
|
{44100, 8, 1}, {44100, 8, 2}, {44100, 16, 1}, {44100, 16, 2},
|
|
|
|
{48000, 8, 1}, {48000, 8, 2}, {48000, 16, 1}, {48000, 16, 2},
|
|
|
|
{96000, 8, 1}, {96000, 8, 2}, {96000, 16, 1}, {96000, 16, 2}
|
|
|
|
};
|
|
|
|
#define NB_WIN_FORMATS (sizeof(win_formats)/sizeof(*win_formats))
|
|
|
|
|
2011-05-02 15:22:31 +02:00
|
|
|
#define NULL_PTR_ERR MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, RPC_X_NULL_REF_POINTER)
|
|
|
|
|
|
|
|
static IMMDeviceEnumerator *mme = NULL;
|
2011-01-10 21:10:44 +01:00
|
|
|
static IMMDevice *dev = NULL;
|
2011-10-05 23:51:47 +02:00
|
|
|
static HRESULT hexcl = S_OK; /* or AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED */
|
2011-01-10 21:10:44 +01:00
|
|
|
|
2011-05-02 15:22:31 +02:00
|
|
|
static inline const char *dbgstr_guid( const GUID *id )
|
|
|
|
{
|
|
|
|
static char ret[256];
|
|
|
|
sprintf(ret, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
|
|
|
|
id->Data1, id->Data2, id->Data3,
|
|
|
|
id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3],
|
|
|
|
id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7] );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
static void test_uninitialized(IAudioClient *ac)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
UINT32 num;
|
|
|
|
REFERENCE_TIME t1;
|
|
|
|
|
|
|
|
HANDLE handle = CreateEventW(NULL, FALSE, FALSE, NULL);
|
|
|
|
IUnknown *unk;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetBufferSize(ac, &num);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized GetBufferSize call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetStreamLatency(ac, &t1);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized GetStreamLatency call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetCurrentPadding(ac, &num);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized GetCurrentPadding call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized Start call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized Stop call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Reset(ac);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized Reset call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_SetEventHandle(ac, handle);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized SetEventHandle call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioStreamVolume, (void**)&unk);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Uninitialized GetService call returns %08x\n", hr);
|
|
|
|
|
|
|
|
CloseHandle(handle);
|
|
|
|
}
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
static void test_audioclient(void)
|
2010-02-21 11:53:11 +01:00
|
|
|
{
|
2011-01-10 21:10:44 +01:00
|
|
|
IAudioClient *ac;
|
2010-02-21 11:53:11 +01:00
|
|
|
IUnknown *unk;
|
|
|
|
HRESULT hr;
|
|
|
|
ULONG ref;
|
|
|
|
WAVEFORMATEX *pwfx, *pwfx2;
|
|
|
|
REFERENCE_TIME t1, t2;
|
2011-01-10 21:10:44 +01:00
|
|
|
HANDLE handle;
|
2010-02-21 11:53:11 +01:00
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
handle = CreateEventW(NULL, FALSE, FALSE, NULL);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
|
|
|
hr = IAudioClient_QueryInterface(ac, &IID_IUnknown, NULL);
|
|
|
|
ok(hr == E_POINTER, "QueryInterface(NULL) returned %08x\n", hr);
|
|
|
|
|
|
|
|
unk = (void*)(LONG_PTR)0x12345678;
|
|
|
|
hr = IAudioClient_QueryInterface(ac, &IID_NULL, (void**)&unk);
|
|
|
|
ok(hr == E_NOINTERFACE, "QueryInterface(IID_NULL) returned %08x\n", hr);
|
|
|
|
ok(!unk, "QueryInterface(IID_NULL) returned non-null pointer %p\n", unk);
|
|
|
|
|
|
|
|
hr = IAudioClient_QueryInterface(ac, &IID_IUnknown, (void**)&unk);
|
|
|
|
ok(hr == S_OK, "QueryInterface(IID_IUnknown) returned %08x\n", hr);
|
|
|
|
if (unk)
|
|
|
|
{
|
|
|
|
ref = IUnknown_Release(unk);
|
|
|
|
ok(ref == 1, "Released count is %u\n", ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IAudioClient_QueryInterface(ac, &IID_IAudioClient, (void**)&unk);
|
|
|
|
ok(hr == S_OK, "QueryInterface(IID_IAudioClient) returned %08x\n", hr);
|
|
|
|
if (unk)
|
|
|
|
{
|
|
|
|
ref = IUnknown_Release(unk);
|
|
|
|
ok(ref == 1, "Released count is %u\n", ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IAudioClient_GetDevicePeriod(ac, NULL, NULL);
|
|
|
|
ok(hr == E_POINTER, "Invalid GetDevicePeriod call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetDevicePeriod(ac, &t1, NULL);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == S_OK, "Valid GetDevicePeriod call returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
|
|
|
hr = IAudioClient_GetDevicePeriod(ac, NULL, &t2);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == S_OK, "Valid GetDevicePeriod call returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
|
|
|
hr = IAudioClient_GetDevicePeriod(ac, &t1, &t2);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == S_OK, "Valid GetDevicePeriod call returns %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
trace("Returned periods: %u.%04u ms %u.%04u ms\n",
|
2010-02-21 11:53:11 +01:00
|
|
|
(UINT)(t1/10000), (UINT)(t1 % 10000),
|
|
|
|
(UINT)(t2/10000), (UINT)(t2 % 10000));
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetMixFormat returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == S_OK, "Valid GetMixFormat returns %08x\n", hr);
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
if (hr == S_OK)
|
|
|
|
{
|
2010-07-29 19:16:17 +02:00
|
|
|
trace("pwfx: %p\n", pwfx);
|
|
|
|
trace("Tag: %04x\n", pwfx->wFormatTag);
|
|
|
|
trace("bits: %u\n", pwfx->wBitsPerSample);
|
|
|
|
trace("chan: %u\n", pwfx->nChannels);
|
|
|
|
trace("rate: %u\n", pwfx->nSamplesPerSec);
|
|
|
|
trace("align: %u\n", pwfx->nBlockAlign);
|
|
|
|
trace("extra: %u\n", pwfx->cbSize);
|
|
|
|
ok(pwfx->wFormatTag == WAVE_FORMAT_EXTENSIBLE, "wFormatTag is %x\n", pwfx->wFormatTag);
|
|
|
|
if (pwfx->wFormatTag == WAVE_FORMAT_EXTENSIBLE)
|
|
|
|
{
|
|
|
|
WAVEFORMATEXTENSIBLE *pwfxe = (void*)pwfx;
|
|
|
|
trace("Res: %u\n", pwfxe->Samples.wReserved);
|
|
|
|
trace("Mask: %x\n", pwfxe->dwChannelMask);
|
|
|
|
trace("Alg: %s\n",
|
|
|
|
IsEqualGUID(&pwfxe->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM)?"PCM":
|
|
|
|
(IsEqualGUID(&pwfxe->SubFormat,
|
|
|
|
&KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)?"FLOAT":"Other"));
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_SHARED, pwfx, &pwfx2);
|
|
|
|
ok(hr == S_OK, "Valid IsFormatSupported(Shared) call returns %08x\n", hr);
|
|
|
|
ok(pwfx2 == NULL, "pwfx2 is non-null\n");
|
|
|
|
CoTaskMemFree(pwfx2);
|
|
|
|
|
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_SHARED, NULL, NULL);
|
|
|
|
ok(hr == E_POINTER, "IsFormatSupported(NULL) call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_SHARED, pwfx, NULL);
|
|
|
|
ok(hr == E_POINTER, "IsFormatSupported(Shared,NULL) call returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_EXCLUSIVE, pwfx, NULL);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok(hr == S_OK || hr == AUDCLNT_E_UNSUPPORTED_FORMAT || hr == AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED,
|
|
|
|
"IsFormatSupported(Exclusive) call returns %08x\n", hr);
|
|
|
|
hexcl = hr;
|
2010-02-21 11:53:11 +01:00
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
pwfx2 = (WAVEFORMATEX*)0xDEADF00D;
|
2010-02-21 11:53:11 +01:00
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_EXCLUSIVE, pwfx, &pwfx2);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok(hr == hexcl, "IsFormatSupported(Exclusive) call returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
ok(pwfx2 == NULL, "pwfx2 non-null on exclusive IsFormatSupported\n");
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
if (hexcl != AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED)
|
|
|
|
hexcl = S_OK;
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
hr = IAudioClient_IsFormatSupported(ac, 0xffffffff, pwfx, NULL);
|
2010-11-11 00:22:05 +01:00
|
|
|
ok(hr == E_INVALIDARG ||
|
|
|
|
hr == AUDCLNT_E_UNSUPPORTED_FORMAT,
|
|
|
|
"IsFormatSupported(0xffffffff) call returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test_uninitialized(ac);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, 3, 0, 5000000, 0, pwfx, NULL);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == AUDCLNT_E_NOT_INITIALIZED, "Initialize with invalid sharemode returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0xffffffff, 5000000, 0, pwfx, NULL);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == E_INVALIDARG, "Initialize with invalid flags returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
|
|
|
/* It seems that if length > 2s or periodicity != 0 the length is ignored and call succeeds
|
2010-03-20 15:24:53 +01:00
|
|
|
* Since we can only initialize successfully once, skip those tests.
|
2010-02-21 11:53:11 +01:00
|
|
|
*/
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000, 0, NULL, NULL);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == E_POINTER, "Initialize with null format returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
2011-07-18 18:19:30 +02:00
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 0, 0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize with 0 buffer size returns %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(hr == S_OK){
|
|
|
|
UINT32 num;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetBufferSize(ac, &num);
|
|
|
|
ok(hr == S_OK, "GetBufferSize from duration 0 returns %08x\n", hr);
|
|
|
|
if(hr == S_OK)
|
|
|
|
trace("Initialize(duration=0) GetBufferSize is %u\n", num);
|
|
|
|
}
|
2011-07-18 18:19:30 +02:00
|
|
|
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
|
2011-09-28 20:31:40 +02:00
|
|
|
if(pwfx->wFormatTag == WAVE_FORMAT_EXTENSIBLE){
|
|
|
|
WAVEFORMATEXTENSIBLE *fmtex = (WAVEFORMATEXTENSIBLE*)pwfx;
|
|
|
|
WAVEFORMATEX *fmt2 = NULL;
|
|
|
|
|
|
|
|
ok(fmtex->dwChannelMask != 0, "Got empty dwChannelMask\n");
|
|
|
|
|
|
|
|
fmtex->dwChannelMask = 0xffff;
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000, 0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize(dwChannelMask = 0xffff) returns %08x\n", hr);
|
|
|
|
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
|
|
|
|
fmtex->dwChannelMask = 0;
|
|
|
|
|
|
|
|
hr = IAudioClient_IsFormatSupported(ac, AUDCLNT_SHAREMODE_SHARED, pwfx, &fmt2);
|
2012-01-07 23:11:46 +01:00
|
|
|
ok(hr == S_OK || broken(hr == S_FALSE /* w7 Realtek HDA */),
|
|
|
|
"IsFormatSupported(dwChannelMask = 0) call returns %08x\n", hr);
|
2011-09-28 20:31:40 +02:00
|
|
|
ok(fmtex->dwChannelMask == 0, "Passed format was modified\n");
|
|
|
|
|
|
|
|
CoTaskMemFree(fmt2);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000, 0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize(dwChannelMask = 0) returns %08x\n", hr);
|
|
|
|
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
|
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "Valid GetMixFormat returns %08x\n", hr);
|
|
|
|
}else
|
|
|
|
skip("Skipping dwChannelMask tests\n");
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000, 0, pwfx, NULL);
|
2010-04-19 11:52:49 +02:00
|
|
|
ok(hr == S_OK, "Valid Initialize returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
if (hr != S_OK)
|
|
|
|
{
|
2011-10-05 23:51:47 +02:00
|
|
|
IAudioClient_Release(ac);
|
2010-02-21 11:53:11 +01:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-17 22:06:47 +01:00
|
|
|
hr = IAudioClient_GetStreamLatency(ac, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetStreamLatency(NULL) call returns %08x\n", hr);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
hr = IAudioClient_GetStreamLatency(ac, &t2);
|
2010-03-17 22:06:47 +01:00
|
|
|
ok(hr == S_OK, "Valid GetStreamLatency call returns %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
trace("Returned latency: %u.%04u ms\n",
|
|
|
|
(UINT)(t2/10000), (UINT)(t2 % 10000));
|
2012-01-07 23:11:46 +01:00
|
|
|
ok(t2 >= t1 || broken(t2 >= t1/2 && pwfx->nSamplesPerSec > 48000),
|
|
|
|
"Latency < default period, delta %ldus\n", (long)((t2-t1)/10));
|
2010-03-17 22:06:47 +01:00
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000, 0, pwfx, NULL);
|
|
|
|
ok(hr == AUDCLNT_E_ALREADY_INITIALIZED, "Calling Initialize twice returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_SetEventHandle(ac, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetEventHandle(NULL) returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_SetEventHandle(ac, handle);
|
2010-03-05 07:00:00 +01:00
|
|
|
ok(hr == AUDCLNT_E_EVENTHANDLE_NOT_EXPECTED ||
|
2010-11-10 00:07:08 +01:00
|
|
|
broken(hr == HRESULT_FROM_WIN32(ERROR_INVALID_NAME)) ||
|
|
|
|
broken(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) /* Some 2k8 */ ||
|
|
|
|
broken(hr == HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME)) /* Some Vista */
|
2010-03-05 07:00:00 +01:00
|
|
|
, "SetEventHandle returns %08x\n", hr);
|
2010-02-21 11:53:11 +01:00
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
hr = IAudioClient_Reset(ac);
|
|
|
|
ok(hr == S_OK, "Reset on an initialized stream returns %08x\n", hr);
|
|
|
|
|
2010-03-17 22:06:47 +01:00
|
|
|
hr = IAudioClient_Reset(ac);
|
|
|
|
ok(hr == S_OK, "Reset on a resetted stream returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
|
|
|
ok(hr == S_FALSE, "Stop on a stopped stream returns %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start on a stopped stream returns %08x\n", hr);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == AUDCLNT_E_NOT_STOPPED, "Start twice returns %08x\n", hr);
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
IAudioClient_Release(ac);
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
CloseHandle(handle);
|
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
}
|
|
|
|
|
2011-11-16 18:46:09 +01:00
|
|
|
static void test_formats(AUDCLNT_SHAREMODE mode)
|
|
|
|
{
|
|
|
|
IAudioClient *ac;
|
|
|
|
HRESULT hr, hrs;
|
|
|
|
WAVEFORMATEX fmt, *pwfx, *pwfx2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fmt.wFormatTag = WAVE_FORMAT_PCM;
|
|
|
|
fmt.cbSize = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < NB_WIN_FORMATS; i++) {
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
fmt.nSamplesPerSec = win_formats[i][0];
|
|
|
|
fmt.wBitsPerSample = win_formats[i][1];
|
|
|
|
fmt.nChannels = win_formats[i][2];
|
|
|
|
fmt.nBlockAlign = fmt.nChannels * fmt.wBitsPerSample / 8;
|
|
|
|
fmt.nAvgBytesPerSec= fmt.nBlockAlign * fmt.nSamplesPerSec;
|
|
|
|
|
|
|
|
pwfx2 = (WAVEFORMATEX*)0xDEADF00D;
|
|
|
|
hr = IAudioClient_IsFormatSupported(ac, mode, &fmt, &pwfx2);
|
|
|
|
hrs = hr;
|
|
|
|
/* Only shared mode suggests something ... GetMixFormat! */
|
|
|
|
ok(hr == S_OK || (mode == AUDCLNT_SHAREMODE_SHARED
|
|
|
|
? hr == S_FALSE || broken(hr == AUDCLNT_E_UNSUPPORTED_FORMAT &&
|
|
|
|
/* 5:1 card exception when asked for 1 channel at mixer rate */
|
|
|
|
pwfx->nChannels > 2 && fmt.nSamplesPerSec == pwfx->nSamplesPerSec)
|
|
|
|
: (hr == AUDCLNT_E_UNSUPPORTED_FORMAT || hr == hexcl)),
|
|
|
|
"IsFormatSupported(%d, %ux%2ux%u) returns %08x\n", mode,
|
|
|
|
fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels, hr);
|
|
|
|
if (hr == S_OK)
|
|
|
|
trace("IsSupported(%s, %ux%2ux%u)\n",
|
|
|
|
mode == AUDCLNT_SHAREMODE_SHARED ? "shared " : "exclus.",
|
|
|
|
fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels);
|
|
|
|
|
|
|
|
/* Change GetMixFormat wBitsPerSample only => S_OK */
|
|
|
|
if (mode == AUDCLNT_SHAREMODE_SHARED
|
|
|
|
&& fmt.nSamplesPerSec == pwfx->nSamplesPerSec
|
|
|
|
&& fmt.nChannels == pwfx->nChannels)
|
|
|
|
ok(hr == S_OK, "Varying BitsPerSample %u\n", fmt.wBitsPerSample);
|
|
|
|
|
|
|
|
ok((hr == S_FALSE)^(pwfx2 == NULL), "hr %x<->suggest %p\n", hr, pwfx2);
|
|
|
|
if (pwfx2 == (WAVEFORMATEX*)0xDEADF00D)
|
|
|
|
pwfx2 = NULL; /* broken in Wine < 1.3.28 */
|
|
|
|
if (pwfx2) {
|
|
|
|
ok(pwfx2->nSamplesPerSec == pwfx->nSamplesPerSec &&
|
|
|
|
pwfx2->nChannels == pwfx->nChannels &&
|
|
|
|
pwfx2->wBitsPerSample == pwfx->wBitsPerSample,
|
|
|
|
"Suggestion %ux%2ux%u differs from GetMixFormat\n",
|
|
|
|
pwfx2->nSamplesPerSec, pwfx2->wBitsPerSample, pwfx2->nChannels);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Vista returns E_INVALIDARG upon AUDCLNT_STREAMFLAGS_RATEADJUST */
|
|
|
|
hr = IAudioClient_Initialize(ac, mode, 0, 5000000, 0, &fmt, NULL);
|
|
|
|
if ((hrs == S_OK) ^ (hr == S_OK))
|
|
|
|
trace("Initialize (%u , %ux%2ux%u) returns %08x unlike IsFormatSupported\n",
|
|
|
|
mode, fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels, hr);
|
|
|
|
if (mode == AUDCLNT_SHAREMODE_SHARED)
|
|
|
|
ok(hrs == S_OK ? hr == S_OK : hr == AUDCLNT_E_UNSUPPORTED_FORMAT,
|
|
|
|
"Initialize(shared, %ux%2ux%u) returns %08x\n",
|
|
|
|
fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels, hr);
|
|
|
|
else if (hrs == AUDCLNT_E_EXCLUSIVE_MODE_NOT_ALLOWED)
|
|
|
|
/* Unsupported format implies "create failed" and shadows "not allowed" */
|
|
|
|
ok(hrs == hexcl && (hr == AUDCLNT_E_ENDPOINT_CREATE_FAILED || hr == hrs),
|
|
|
|
"Initialize(noexcl., %ux%2ux%u) returns %08x(%08x)\n",
|
|
|
|
fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels, hr, hrs);
|
|
|
|
else
|
|
|
|
/* On testbot 48000x16x1 claims support, but does not Initialize.
|
2012-01-07 23:11:46 +01:00
|
|
|
* Some cards Initialize 44100|48000x16x1 yet claim no support. */
|
2011-11-16 18:46:09 +01:00
|
|
|
ok(hrs == S_OK ? hr == S_OK || broken(hr == AUDCLNT_E_ENDPOINT_CREATE_FAILED)
|
|
|
|
: hr == AUDCLNT_E_ENDPOINT_CREATE_FAILED || broken(hr == S_OK &&
|
2012-01-07 23:11:46 +01:00
|
|
|
fmt.nChannels == 1 && pwfx->wBitsPerSample == fmt.wBitsPerSample),
|
2011-11-16 18:46:09 +01:00
|
|
|
"Initialize(exclus., %ux%2ux%u) returns %08x\n",
|
|
|
|
fmt.nSamplesPerSec, fmt.wBitsPerSample, fmt.nChannels, hr);
|
|
|
|
|
|
|
|
/* Bug in native (Vista/w2k8/w7): after Initialize failed, better
|
|
|
|
* Release this ac and Activate a new one.
|
|
|
|
* A second call (with a known working format) would yield
|
|
|
|
* ALREADY_INITIALIZED in shared mode yet be unusable, and in exclusive
|
|
|
|
* mode some entity keeps a lock on the device, causing DEVICE_IN_USE to
|
|
|
|
* all subsequent calls until the audio engine service is restarted. */
|
|
|
|
|
|
|
|
CoTaskMemFree(pwfx2);
|
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
static void test_references(void)
|
|
|
|
{
|
|
|
|
IAudioClient *ac;
|
|
|
|
IAudioRenderClient *rc;
|
|
|
|
ISimpleAudioVolume *sav;
|
2011-05-09 21:52:27 +02:00
|
|
|
IAudioStreamVolume *asv;
|
2011-01-10 21:10:44 +01:00
|
|
|
IAudioClock *acl;
|
|
|
|
WAVEFORMATEX *pwfx;
|
|
|
|
HRESULT hr;
|
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
/* IAudioRenderClient */
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000,
|
|
|
|
0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioRenderClient, (void**)&rc);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(hr != S_OK) {
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
return;
|
|
|
|
}
|
2011-01-10 21:10:44 +01:00
|
|
|
|
|
|
|
IAudioRenderClient_AddRef(rc);
|
|
|
|
ref = IAudioRenderClient_Release(rc);
|
|
|
|
ok(ref != 0, "RenderClient_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ac);
|
|
|
|
ok(ref != 0, "Client_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioRenderClient_Release(rc);
|
|
|
|
ok(ref == 0, "RenderClient_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
/* ISimpleAudioVolume */
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000,
|
|
|
|
0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
hr = IAudioClient_GetService(ac, &IID_ISimpleAudioVolume, (void**)&sav);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
ISimpleAudioVolume_AddRef(sav);
|
|
|
|
ref = ISimpleAudioVolume_Release(sav);
|
|
|
|
ok(ref != 0, "SimpleAudioVolume_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ac);
|
|
|
|
ok(ref != 0, "Client_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = ISimpleAudioVolume_Release(sav);
|
|
|
|
ok(ref == 0, "SimpleAudioVolume_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
/* IAudioClock */
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000,
|
|
|
|
0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioClock, (void**)&acl);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
IAudioClock_AddRef(acl);
|
|
|
|
ref = IAudioClock_Release(acl);
|
|
|
|
ok(ref != 0, "AudioClock_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ac);
|
|
|
|
ok(ref != 0, "Client_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClock_Release(acl);
|
|
|
|
ok(ref == 0, "AudioClock_Release gave wrong refcount: %u\n", ref);
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
/* IAudioStreamVolume */
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000,
|
|
|
|
0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-06-03 19:48:57 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-05-09 21:52:27 +02:00
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioStreamVolume, (void**)&asv);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
IAudioStreamVolume_AddRef(asv);
|
|
|
|
ref = IAudioStreamVolume_Release(asv);
|
|
|
|
ok(ref != 0, "AudioStreamVolume_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ac);
|
|
|
|
ok(ref != 0, "Client_Release gave wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioStreamVolume_Release(asv);
|
|
|
|
ok(ref == 0, "AudioStreamVolume_Release gave wrong refcount: %u\n", ref);
|
2011-01-10 21:10:44 +01:00
|
|
|
}
|
|
|
|
|
2011-01-10 21:10:50 +01:00
|
|
|
static void test_event(void)
|
|
|
|
{
|
|
|
|
HANDLE event;
|
|
|
|
HRESULT hr;
|
|
|
|
IAudioClient *ac;
|
|
|
|
WAVEFORMATEX *pwfx;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_EVENTCALLBACK, 5000000,
|
|
|
|
0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-01-10 21:10:50 +01:00
|
|
|
event = CreateEventW(NULL, FALSE, FALSE, NULL);
|
|
|
|
ok(event != NULL, "CreateEvent failed\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == AUDCLNT_E_EVENTHANDLE_NOT_SET, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_SetEventHandle(ac, event);
|
|
|
|
ok(hr == S_OK, "SetEventHandle failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok(hr == S_OK, "Stop failed: %08x\n", hr);
|
2011-01-10 21:10:50 +01:00
|
|
|
|
|
|
|
/* test releasing a playing stream */
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
|
|
|
|
CloseHandle(event);
|
|
|
|
}
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
static void test_padding(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IAudioClient *ac;
|
|
|
|
IAudioRenderClient *arc;
|
|
|
|
WAVEFORMATEX *pwfx;
|
|
|
|
REFERENCE_TIME minp, defp;
|
|
|
|
BYTE *buf;
|
|
|
|
UINT32 psize, pad, written;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
2011-11-08 19:40:59 +01:00
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
2011-04-22 22:25:43 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetDevicePeriod(ac, &defp, &minp);
|
|
|
|
ok(hr == S_OK, "GetDevicePeriod failed: %08x\n", hr);
|
|
|
|
ok(defp != 0, "Default period is 0\n");
|
|
|
|
ok(minp != 0, "Minimum period is 0\n");
|
|
|
|
ok(minp <= defp, "Mininum period is greater than default period\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioRenderClient, (void**)&arc);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
2011-06-03 19:48:57 +02:00
|
|
|
psize = (defp / 10000000.) * pwfx->nSamplesPerSec * 10;
|
2011-04-22 22:25:43 +02:00
|
|
|
|
|
|
|
written = 0;
|
|
|
|
hr = IAudioClient_GetCurrentPadding(ac, &pad);
|
|
|
|
ok(hr == S_OK, "GetCurrentPadding failed: %08x\n", hr);
|
|
|
|
ok(pad == written, "GetCurrentPadding returned %u, should be %u\n", pad, written);
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_GetBuffer(arc, psize, &buf);
|
|
|
|
ok(hr == S_OK, "GetBuffer failed: %08x\n", hr);
|
|
|
|
ok(buf != NULL, "NULL buffer returned\n");
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
hr = IAudioClient_Reset(ac);
|
|
|
|
ok(hr == AUDCLNT_E_BUFFER_OPERATION_PENDING, "Reset failed: %08x\n", hr);
|
|
|
|
|
2011-04-22 22:25:43 +02:00
|
|
|
hr = IAudioRenderClient_ReleaseBuffer(arc, psize,
|
|
|
|
AUDCLNT_BUFFERFLAGS_SILENT);
|
|
|
|
ok(hr == S_OK, "ReleaseBuffer failed: %08x\n", hr);
|
|
|
|
written += psize;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetCurrentPadding(ac, &pad);
|
|
|
|
ok(hr == S_OK, "GetCurrentPadding failed: %08x\n", hr);
|
|
|
|
ok(pad == written, "GetCurrentPadding returned %u, should be %u\n", pad, written);
|
|
|
|
|
2011-06-03 19:48:57 +02:00
|
|
|
psize = (minp / 10000000.) * pwfx->nSamplesPerSec * 10;
|
2011-04-22 22:25:43 +02:00
|
|
|
|
|
|
|
hr = IAudioRenderClient_GetBuffer(arc, psize, &buf);
|
|
|
|
ok(hr == S_OK, "GetBuffer failed: %08x\n", hr);
|
|
|
|
ok(buf != NULL, "NULL buffer returned\n");
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_ReleaseBuffer(arc, psize,
|
|
|
|
AUDCLNT_BUFFERFLAGS_SILENT);
|
|
|
|
ok(hr == S_OK, "ReleaseBuffer failed: %08x\n", hr);
|
|
|
|
written += psize;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetCurrentPadding(ac, &pad);
|
|
|
|
ok(hr == S_OK, "GetCurrentPadding failed: %08x\n", hr);
|
|
|
|
ok(pad == written, "GetCurrentPadding returned %u, should be %u\n", pad, written);
|
|
|
|
|
|
|
|
/* overfull buffer. requested 1/2s buffer size, so try
|
|
|
|
* to get a 1/2s buffer, which should fail */
|
|
|
|
psize = pwfx->nSamplesPerSec / 2.;
|
|
|
|
hr = IAudioRenderClient_GetBuffer(arc, psize, &buf);
|
|
|
|
ok(hr == AUDCLNT_E_BUFFER_TOO_LARGE, "GetBuffer gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_ReleaseBuffer(arc, psize, 0);
|
|
|
|
ok(hr == AUDCLNT_E_OUT_OF_ORDER, "ReleaseBuffer gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetCurrentPadding(ac, &pad);
|
|
|
|
ok(hr == S_OK, "GetCurrentPadding failed: %08x\n", hr);
|
|
|
|
ok(pad == written, "GetCurrentPadding returned %u, should be %u\n", pad, written);
|
|
|
|
|
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
|
|
|
IAudioRenderClient_Release(arc);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
}
|
|
|
|
|
2011-04-27 16:12:52 +02:00
|
|
|
static void test_clock(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IAudioClient *ac;
|
|
|
|
IAudioClock *acl;
|
|
|
|
IAudioRenderClient *arc;
|
|
|
|
UINT64 freq, pos, pcpos, last;
|
|
|
|
BYTE *data;
|
|
|
|
WAVEFORMATEX *pwfx;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, pwfx, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioClock, (void**)&acl);
|
|
|
|
ok(hr == S_OK, "GetService(IAudioClock) failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetFrequency(acl, &freq);
|
|
|
|
ok(hr == S_OK, "GetFrequency failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, NULL, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetPosition wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
pcpos = 0;
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, &pcpos);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos == 0, "GetPosition returned non-zero pos before being started\n");
|
|
|
|
ok(pcpos != 0, "GetPosition returned zero pcpos\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioRenderClient, (void**)&arc);
|
|
|
|
ok(hr == S_OK, "GetService(IAudioRenderClient) failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_GetBuffer(arc, pwfx->nSamplesPerSec / 2., &data);
|
|
|
|
ok(hr == S_OK, "GetBuffer failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_ReleaseBuffer(arc, pwfx->nSamplesPerSec / 2., AUDCLNT_BUFFERFLAGS_SILENT);
|
|
|
|
ok(hr == S_OK, "ReleaseBuffer failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos == 0, "GetPosition returned non-zero pos before being started\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
Sleep(100);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos > 0, "Position should have been further along...\n");
|
|
|
|
last = pos;
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
|
|
|
ok(hr == S_OK, "Stop failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos >= last, "Position should have been further along...\n");
|
|
|
|
last = pos;
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
Sleep(100);
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
|
|
|
ok(hr == S_OK, "Stop failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos >= last, "Position should have been further along...\n");
|
|
|
|
last = pos;
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos == last, "Position should have been further along...\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_Reset(ac);
|
|
|
|
ok(hr == S_OK, "Reset failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos == 0, "GetPosition returned non-zero pos after Reset\n");
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_GetBuffer(arc, pwfx->nSamplesPerSec / 2., &data);
|
|
|
|
ok(hr == S_OK, "GetBuffer failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioRenderClient_ReleaseBuffer(arc, pwfx->nSamplesPerSec / 2., AUDCLNT_BUFFERFLAGS_SILENT);
|
|
|
|
ok(hr == S_OK, "ReleaseBuffer failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos == 0, "GetPosition returned non-zero pos after Reset\n");
|
|
|
|
last = pos;
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
Sleep(100);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos > last, "Position should have been further along...\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ac);
|
|
|
|
ok(hr == S_OK, "Stop failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClock_GetPosition(acl, &pos, NULL);
|
|
|
|
ok(hr == S_OK, "GetPosition failed: %08x\n", hr);
|
|
|
|
ok(pos >= last, "Position should have been further along...\n");
|
|
|
|
|
2011-06-03 19:48:57 +02:00
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
|
2011-04-27 16:12:52 +02:00
|
|
|
IAudioClock_Release(acl);
|
2011-06-20 16:31:51 +02:00
|
|
|
IAudioRenderClient_Release(arc);
|
2011-04-27 16:12:52 +02:00
|
|
|
IAudioClient_Release(ac);
|
|
|
|
}
|
|
|
|
|
2011-05-02 15:22:31 +02:00
|
|
|
static void test_session(void)
|
|
|
|
{
|
2011-10-05 23:51:47 +02:00
|
|
|
IAudioClient *ses1_ac1, *ses1_ac2, *cap_ac;
|
|
|
|
IAudioSessionControl2 *ses1_ctl, *ses1_ctl2, *cap_ctl = NULL;
|
2011-05-02 15:22:31 +02:00
|
|
|
IMMDevice *cap_dev;
|
|
|
|
GUID ses1_guid;
|
|
|
|
AudioSessionState state;
|
|
|
|
WAVEFORMATEX *pwfx;
|
|
|
|
ULONG ref;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = CoCreateGuid(&ses1_guid);
|
|
|
|
ok(hr == S_OK, "CoCreateGuid failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ses1_ac1);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
2011-10-24 14:28:08 +02:00
|
|
|
if (FAILED(hr)) return;
|
2011-05-02 15:22:31 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ses1_ac1, &pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ses1_ac1, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, pwfx, &ses1_guid);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ses1_ac2);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(FAILED(hr)){
|
|
|
|
skip("Unable to open the same device twice. Skipping session tests\n");
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ses1_ac1);
|
|
|
|
ok(ref == 0, "AudioClient wasn't released: %u\n", ref);
|
2011-10-24 14:28:08 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-05-02 15:22:31 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ses1_ac2, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, pwfx, &ses1_guid);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(mme, eCapture,
|
|
|
|
eMultimedia, &cap_dev);
|
|
|
|
if(hr == S_OK){
|
|
|
|
hr = IMMDevice_Activate(cap_dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&cap_ac);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok((hr == S_OK)^(cap_ac == NULL), "Activate %08x &out pointer\n", hr);
|
2011-05-02 15:22:31 +02:00
|
|
|
ok(hr == S_OK, "Activate failed: %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
IMMDevice_Release(cap_dev);
|
|
|
|
}
|
|
|
|
if(hr == S_OK){
|
|
|
|
WAVEFORMATEX *cap_pwfx;
|
2011-05-02 15:22:31 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(cap_ac, &cap_pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(cap_ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, cap_pwfx, &ses1_guid);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok(hr == S_OK, "Initialize failed for capture in rendering session: %08x\n", hr);
|
|
|
|
CoTaskMemFree(cap_pwfx);
|
|
|
|
}
|
|
|
|
if(hr == S_OK){
|
2011-05-02 15:22:31 +02:00
|
|
|
hr = IAudioClient_GetService(cap_ac, &IID_IAudioSessionControl, (void**)&cap_ctl);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(FAILED(hr))
|
|
|
|
cap_ctl = NULL;
|
2011-05-02 15:22:31 +02:00
|
|
|
}else
|
2011-10-05 23:51:47 +02:00
|
|
|
skip("No capture session: %08x; skipping capture device in render session tests\n", hr);
|
2011-05-02 15:22:31 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ses1_ac1, &IID_IAudioSessionControl2, (void**)&ses1_ctl);
|
|
|
|
ok(hr == E_NOINTERFACE, "GetService gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ses1_ac1, &IID_IAudioSessionControl, (void**)&ses1_ctl);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ses1_ac1, &IID_IAudioSessionControl, (void**)&ses1_ctl2);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
ok(ses1_ctl == ses1_ctl2, "Got different controls: %p %p\n", ses1_ctl, ses1_ctl2);
|
|
|
|
ref = IAudioSessionControl_Release(ses1_ctl2);
|
|
|
|
ok(ref != 0, "AudioSessionControl was destroyed\n");
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ses1_ac2, &IID_IAudioSessionControl, (void**)&ses1_ctl2);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetState gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
if(cap_ctl){
|
2011-05-02 15:22:31 +02:00
|
|
|
hr = IAudioSessionControl_GetState(cap_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(ses1_ac1);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateActive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateActive, "Got wrong state: %d\n", state);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
if(cap_ctl){
|
2011-05-02 15:22:31 +02:00
|
|
|
hr = IAudioSessionControl_GetState(cap_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(ses1_ac1);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
if(cap_ctl){
|
2011-05-02 15:22:31 +02:00
|
|
|
hr = IAudioSessionControl_GetState(cap_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioClient_Start(cap_ac);
|
|
|
|
ok(hr == S_OK, "Start failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(cap_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateActive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioClient_Stop(cap_ac);
|
|
|
|
ok(hr == S_OK, "Stop failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
hr = IAudioSessionControl_GetState(cap_ctl, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
ref = IAudioSessionControl_Release(cap_ctl);
|
|
|
|
ok(ref == 0, "AudioSessionControl wasn't released: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(cap_ac);
|
|
|
|
ok(ref == 0, "AudioClient wasn't released: %u\n", ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = IAudioSessionControl_Release(ses1_ctl);
|
|
|
|
ok(ref == 0, "AudioSessionControl wasn't released: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ses1_ac1);
|
|
|
|
ok(ref == 0, "AudioClient wasn't released: %u\n", ref);
|
|
|
|
|
|
|
|
ref = IAudioClient_Release(ses1_ac2);
|
|
|
|
ok(ref == 1, "AudioClient had wrong refcount: %u\n", ref);
|
|
|
|
|
|
|
|
/* we've released all of our IAudioClient references, so check GetState */
|
|
|
|
hr = IAudioSessionControl_GetState(ses1_ctl2, &state);
|
|
|
|
ok(hr == S_OK, "GetState failed: %08x\n", hr);
|
|
|
|
ok(state == AudioSessionStateInactive, "Got wrong state: %d\n", state);
|
|
|
|
|
|
|
|
ref = IAudioSessionControl_Release(ses1_ctl2);
|
|
|
|
ok(ref == 0, "AudioSessionControl wasn't released: %u\n", ref);
|
|
|
|
|
|
|
|
CoTaskMemFree(pwfx);
|
|
|
|
}
|
|
|
|
|
2011-05-09 21:52:27 +02:00
|
|
|
static void test_streamvolume(void)
|
|
|
|
{
|
|
|
|
IAudioClient *ac;
|
|
|
|
IAudioStreamVolume *asv;
|
|
|
|
WAVEFORMATEX *fmt;
|
|
|
|
UINT32 chans, i;
|
|
|
|
HRESULT hr;
|
|
|
|
float vol, *vols;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &fmt);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED, 0, 5000000,
|
|
|
|
0, fmt, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioStreamVolume, (void**)&asv);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelCount(asv, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelCount(asv, &chans);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(chans == fmt->nChannels, "GetChannelCount gave wrong number of channels: %d\n", chans);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, fmt->nChannels, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, fmt->nChannels, &vol);
|
|
|
|
ok(hr == E_INVALIDARG, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, 0, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, 0, &vol);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "Channel volume was not 1: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetChannelVolume(asv, fmt->nChannels, -1.f);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetChannelVolume(asv, 0, -1.f);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetChannelVolume(asv, 0, 2.f);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetChannelVolume(asv, 0, 0.2f);
|
|
|
|
ok(hr == S_OK, "SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, 0, &vol);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.2f) < 0.05f, "Channel volume wasn't 0.2: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetAllVolumes(asv, 0, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetAllVolumes(asv, fmt->nChannels, NULL);
|
|
|
|
ok(hr == E_POINTER, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
vols = HeapAlloc(GetProcessHeap(), 0, fmt->nChannels * sizeof(float));
|
|
|
|
ok(vols != NULL, "HeapAlloc failed\n");
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetAllVolumes(asv, fmt->nChannels - 1, vols);
|
|
|
|
ok(hr == E_INVALIDARG, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetAllVolumes(asv, fmt->nChannels, vols);
|
|
|
|
ok(hr == S_OK, "GetAllVolumes failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vols[0] - 0.2f) < 0.05f, "Channel 0 volume wasn't 0.2: %f\n", vol);
|
|
|
|
for(i = 1; i < fmt->nChannels; ++i)
|
|
|
|
ok(vols[i] == 1.f, "Channel %d volume is not 1: %f\n", i, vols[i]);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetAllVolumes(asv, 0, NULL);
|
|
|
|
ok(hr == E_POINTER, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetAllVolumes(asv, fmt->nChannels, NULL);
|
|
|
|
ok(hr == E_POINTER, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetAllVolumes(asv, fmt->nChannels - 1, vols);
|
|
|
|
ok(hr == E_INVALIDARG, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetAllVolumes(asv, fmt->nChannels, vols);
|
|
|
|
ok(hr == S_OK, "SetAllVolumes failed: %08x\n", hr);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, vols);
|
|
|
|
IAudioStreamVolume_Release(asv);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
CoTaskMemFree(fmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_channelvolume(void)
|
|
|
|
{
|
|
|
|
IAudioClient *ac;
|
|
|
|
IChannelAudioVolume *acv;
|
|
|
|
WAVEFORMATEX *fmt;
|
|
|
|
UINT32 chans, i;
|
|
|
|
HRESULT hr;
|
|
|
|
float vol, *vols;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &fmt);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_NOPERSIST, 5000000, 0, fmt, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IChannelAudioVolume, (void**)&acv);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelCount(acv, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelCount(acv, &chans);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(chans == fmt->nChannels, "GetChannelCount gave wrong number of channels: %d\n", chans);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(acv, fmt->nChannels, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(acv, fmt->nChannels, &vol);
|
|
|
|
ok(hr == E_INVALIDARG, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(acv, 0, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetChannelCount gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(acv, 0, &vol);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "Channel volume was not 1: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(acv, fmt->nChannels, -1.f, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(acv, 0, -1.f, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(acv, 0, 2.f, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetChannelVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(acv, 0, 0.2f, NULL);
|
|
|
|
ok(hr == S_OK, "SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(acv, 0, &vol);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.2f) < 0.05f, "Channel volume wasn't 0.2: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetAllVolumes(acv, 0, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetAllVolumes(acv, fmt->nChannels, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
vols = HeapAlloc(GetProcessHeap(), 0, fmt->nChannels * sizeof(float));
|
|
|
|
ok(vols != NULL, "HeapAlloc failed\n");
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetAllVolumes(acv, fmt->nChannels - 1, vols);
|
|
|
|
ok(hr == E_INVALIDARG, "GetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetAllVolumes(acv, fmt->nChannels, vols);
|
|
|
|
ok(hr == S_OK, "GetAllVolumes failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vols[0] - 0.2f) < 0.05f, "Channel 0 volume wasn't 0.2: %f\n", vol);
|
|
|
|
for(i = 1; i < fmt->nChannels; ++i)
|
|
|
|
ok(vols[i] == 1.f, "Channel %d volume is not 1: %f\n", i, vols[i]);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetAllVolumes(acv, 0, NULL, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetAllVolumes(acv, fmt->nChannels, NULL, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetAllVolumes(acv, fmt->nChannels - 1, vols, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetAllVolumes gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetAllVolumes(acv, fmt->nChannels, vols, NULL);
|
|
|
|
ok(hr == S_OK, "SetAllVolumes failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(acv, 0, 1.0f, NULL);
|
|
|
|
ok(hr == S_OK, "SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, vols);
|
|
|
|
IChannelAudioVolume_Release(acv);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
CoTaskMemFree(fmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_simplevolume(void)
|
|
|
|
{
|
|
|
|
IAudioClient *ac;
|
|
|
|
ISimpleAudioVolume *sav;
|
|
|
|
WAVEFORMATEX *fmt;
|
|
|
|
HRESULT hr;
|
|
|
|
float vol;
|
|
|
|
BOOL mute;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &fmt);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_NOPERSIST, 5000000, 0, fmt, NULL);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_ISimpleAudioVolume, (void**)&sav);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetMasterVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "Master volume wasn't 1: %f\n", vol);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, -1.f, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetMasterVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 2.f, NULL);
|
|
|
|
ok(hr == E_INVALIDARG, "SetMasterVolume gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 0.2f, NULL);
|
|
|
|
ok(hr == S_OK, "SetMasterVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.2f) < 0.05f, "Master volume wasn't 0.2: %f\n", vol);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMute(sav, NULL);
|
|
|
|
ok(hr == NULL_PTR_ERR, "GetMute gave wrong error: %08x\n", hr);
|
|
|
|
|
|
|
|
mute = TRUE;
|
|
|
|
hr = ISimpleAudioVolume_GetMute(sav, &mute);
|
2011-06-20 16:31:51 +02:00
|
|
|
ok(hr == S_OK, "GetMute failed: %08x\n", hr);
|
|
|
|
ok(mute == FALSE, "Session is already muted\n");
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMute(sav, TRUE, NULL);
|
2011-06-20 16:31:51 +02:00
|
|
|
ok(hr == S_OK, "SetMute failed: %08x\n", hr);
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
mute = FALSE;
|
|
|
|
hr = ISimpleAudioVolume_GetMute(sav, &mute);
|
2011-06-20 16:31:51 +02:00
|
|
|
ok(hr == S_OK, "GetMute failed: %08x\n", hr);
|
|
|
|
ok(mute == TRUE, "Session should have been muted\n");
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.2f) < 0.05f, "Master volume wasn't 0.2: %f\n", vol);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 1.f, NULL);
|
|
|
|
ok(hr == S_OK, "SetMasterVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
mute = FALSE;
|
|
|
|
hr = ISimpleAudioVolume_GetMute(sav, &mute);
|
2011-06-20 16:31:51 +02:00
|
|
|
ok(hr == S_OK, "GetMute failed: %08x\n", hr);
|
|
|
|
ok(mute == TRUE, "Session should have been muted\n");
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMute(sav, FALSE, NULL);
|
2011-06-20 16:31:51 +02:00
|
|
|
ok(hr == S_OK, "SetMute failed: %08x\n", hr);
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
ISimpleAudioVolume_Release(sav);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
CoTaskMemFree(fmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_volume_dependence(void)
|
|
|
|
{
|
|
|
|
IAudioClient *ac, *ac2;
|
|
|
|
ISimpleAudioVolume *sav;
|
|
|
|
IChannelAudioVolume *cav;
|
|
|
|
IAudioStreamVolume *asv;
|
|
|
|
WAVEFORMATEX *fmt;
|
|
|
|
HRESULT hr;
|
|
|
|
float vol;
|
|
|
|
GUID session;
|
|
|
|
UINT32 nch;
|
|
|
|
|
|
|
|
hr = CoCreateGuid(&session);
|
|
|
|
ok(hr == S_OK, "CoCreateGuid failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
2011-05-09 21:52:27 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &fmt);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_NOPERSIST, 5000000, 0, fmt, &session);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_ISimpleAudioVolume, (void**)&sav);
|
|
|
|
ok(hr == S_OK, "GetService (SimpleAudioVolume) failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IChannelAudioVolume, (void**)&cav);
|
|
|
|
ok(hr == S_OK, "GetService (ChannelAudioVolme) failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_IAudioStreamVolume, (void**)&asv);
|
|
|
|
ok(hr == S_OK, "GetService (AudioStreamVolume) failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_SetChannelVolume(asv, 0, 0.2f);
|
|
|
|
ok(hr == S_OK, "ASV_SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(cav, 0, 0.4f, NULL);
|
|
|
|
ok(hr == S_OK, "CAV_SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 0.6f, NULL);
|
|
|
|
ok(hr == S_OK, "SAV_SetMasterVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv, 0, &vol);
|
|
|
|
ok(hr == S_OK, "ASV_GetChannelVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.2) < 0.05f, "ASV_GetChannelVolume gave wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(cav, 0, &vol);
|
|
|
|
ok(hr == S_OK, "CAV_GetChannelVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.4) < 0.05f, "CAV_GetChannelVolume gave wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, &vol);
|
|
|
|
ok(hr == S_OK, "SAV_GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.6) < 0.05f, "SAV_GetMasterVolume gave wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac2);
|
|
|
|
if(SUCCEEDED(hr)){
|
|
|
|
IChannelAudioVolume *cav2;
|
|
|
|
IAudioStreamVolume *asv2;
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac2, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_NOPERSIST, 5000000, 0, fmt, &session);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac2, &IID_IChannelAudioVolume, (void**)&cav2);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac2, &IID_IAudioStreamVolume, (void**)&asv2);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelVolume(cav2, 0, &vol);
|
|
|
|
ok(hr == S_OK, "CAV_GetChannelVolume failed: %08x\n", hr);
|
|
|
|
ok(fabsf(vol - 0.4) < 0.05f, "CAV_GetChannelVolume gave wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelVolume(asv2, 0, &vol);
|
|
|
|
ok(hr == S_OK, "ASV_GetChannelVolume failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "ASV_GetChannelVolume gave wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_GetChannelCount(cav2, &nch);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(nch == fmt->nChannels, "Got wrong channel count, expected %u: %u\n", fmt->nChannels, nch);
|
|
|
|
|
|
|
|
hr = IAudioStreamVolume_GetChannelCount(asv2, &nch);
|
|
|
|
ok(hr == S_OK, "GetChannelCount failed: %08x\n", hr);
|
|
|
|
ok(nch == fmt->nChannels, "Got wrong channel count, expected %u: %u\n", fmt->nChannels, nch);
|
|
|
|
|
|
|
|
IAudioStreamVolume_Release(asv2);
|
|
|
|
IChannelAudioVolume_Release(cav2);
|
|
|
|
IAudioClient_Release(ac2);
|
|
|
|
}else
|
|
|
|
skip("Unable to open the same device twice. Skipping session volume control tests\n");
|
|
|
|
|
|
|
|
hr = IChannelAudioVolume_SetChannelVolume(cav, 0, 1.f, NULL);
|
|
|
|
ok(hr == S_OK, "CAV_SetChannelVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 1.f, NULL);
|
|
|
|
ok(hr == S_OK, "SAV_SetMasterVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
CoTaskMemFree(fmt);
|
|
|
|
ISimpleAudioVolume_Release(sav);
|
|
|
|
IChannelAudioVolume_Release(cav);
|
|
|
|
IAudioStreamVolume_Release(asv);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
}
|
|
|
|
|
2011-06-06 15:49:48 +02:00
|
|
|
static void test_session_creation(void)
|
|
|
|
{
|
|
|
|
IMMDevice *cap_dev;
|
|
|
|
IAudioClient *ac;
|
|
|
|
IAudioSessionManager *sesm;
|
|
|
|
ISimpleAudioVolume *sav;
|
|
|
|
GUID session_guid;
|
|
|
|
float vol;
|
|
|
|
HRESULT hr;
|
|
|
|
WAVEFORMATEX *fmt;
|
|
|
|
|
|
|
|
CoCreateGuid(&session_guid);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioSessionManager,
|
|
|
|
CLSCTX_INPROC_SERVER, NULL, (void**)&sesm);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok((hr == S_OK)^(sesm == NULL), "Activate %08x &out pointer\n", hr);
|
2011-06-06 15:49:48 +02:00
|
|
|
ok(hr == S_OK, "Activate failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionManager_GetSimpleAudioVolume(sesm, &session_guid,
|
|
|
|
FALSE, &sav);
|
|
|
|
ok(hr == S_OK, "GetSimpleAudioVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = ISimpleAudioVolume_SetMasterVolume(sav, 0.6f, NULL);
|
|
|
|
ok(hr == S_OK, "SetMasterVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
/* Release completely to show session persistence */
|
|
|
|
ISimpleAudioVolume_Release(sav);
|
|
|
|
IAudioSessionManager_Release(sesm);
|
|
|
|
|
|
|
|
/* test if we can create a capture audioclient in the session we just
|
|
|
|
* created from a SessionManager derived from a render device */
|
|
|
|
hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(mme, eCapture,
|
|
|
|
eMultimedia, &cap_dev);
|
|
|
|
if(hr == S_OK){
|
|
|
|
WAVEFORMATEX *cap_pwfx;
|
|
|
|
IAudioClient *cap_ac;
|
|
|
|
ISimpleAudioVolume *cap_sav;
|
|
|
|
IAudioSessionManager *cap_sesm;
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(cap_dev, &IID_IAudioSessionManager,
|
|
|
|
CLSCTX_INPROC_SERVER, NULL, (void**)&cap_sesm);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok((hr == S_OK)^(cap_sesm == NULL), "Activate %08x &out pointer\n", hr);
|
2011-06-06 15:49:48 +02:00
|
|
|
ok(hr == S_OK, "Activate failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioSessionManager_GetSimpleAudioVolume(cap_sesm, &session_guid,
|
|
|
|
FALSE, &cap_sav);
|
|
|
|
ok(hr == S_OK, "GetSimpleAudioVolume failed: %08x\n", hr);
|
|
|
|
|
|
|
|
vol = 0.5f;
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(cap_sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "Got wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
ISimpleAudioVolume_Release(cap_sav);
|
|
|
|
IAudioSessionManager_Release(cap_sesm);
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(cap_dev, &IID_IAudioClient,
|
|
|
|
CLSCTX_INPROC_SERVER, NULL, (void**)&cap_ac);
|
|
|
|
ok(hr == S_OK, "Activate failed: %08x\n", hr);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
IMMDevice_Release(cap_dev);
|
|
|
|
|
2011-06-06 15:49:48 +02:00
|
|
|
hr = IAudioClient_GetMixFormat(cap_ac, &cap_pwfx);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(cap_ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
0, 5000000, 0, cap_pwfx, &session_guid);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
CoTaskMemFree(cap_pwfx);
|
2011-06-06 15:49:48 +02:00
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
if(hr == S_OK){
|
|
|
|
hr = IAudioClient_GetService(cap_ac, &IID_ISimpleAudioVolume,
|
|
|
|
(void**)&cap_sav);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
|
|
|
}
|
|
|
|
if(hr == S_OK){
|
|
|
|
vol = 0.5f;
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(cap_sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(vol == 1.f, "Got wrong volume: %f\n", vol);
|
|
|
|
|
|
|
|
ISimpleAudioVolume_Release(cap_sav);
|
|
|
|
}
|
2011-06-06 15:49:48 +02:00
|
|
|
|
|
|
|
IAudioClient_Release(cap_ac);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
|
|
|
NULL, (void**)&ac);
|
2011-10-05 23:51:47 +02:00
|
|
|
ok((hr == S_OK)^(ac == NULL), "Activate %08x &out pointer\n", hr);
|
2011-06-06 15:49:48 +02:00
|
|
|
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
2011-11-08 19:40:59 +01:00
|
|
|
if(hr != S_OK)
|
|
|
|
return;
|
2011-06-06 15:49:48 +02:00
|
|
|
|
|
|
|
hr = IAudioClient_GetMixFormat(ac, &fmt);
|
|
|
|
ok(hr == S_OK, "GetMixFormat failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_Initialize(ac, AUDCLNT_SHAREMODE_SHARED,
|
|
|
|
AUDCLNT_STREAMFLAGS_NOPERSIST, 5000000, 0, fmt, &session_guid);
|
|
|
|
ok(hr == S_OK, "Initialize failed: %08x\n", hr);
|
|
|
|
|
|
|
|
hr = IAudioClient_GetService(ac, &IID_ISimpleAudioVolume, (void**)&sav);
|
|
|
|
ok(hr == S_OK, "GetService failed: %08x\n", hr);
|
2011-10-05 23:51:47 +02:00
|
|
|
if(hr == S_OK){
|
|
|
|
vol = 0.5f;
|
|
|
|
hr = ISimpleAudioVolume_GetMasterVolume(sav, &vol);
|
|
|
|
ok(hr == S_OK, "GetMasterVolume failed: %08x\n", hr);
|
|
|
|
ok(fabs(vol - 0.6f) < 0.05f, "Got wrong volume: %f\n", vol);
|
2011-06-06 15:49:48 +02:00
|
|
|
|
2011-10-05 23:51:47 +02:00
|
|
|
ISimpleAudioVolume_Release(sav);
|
|
|
|
}
|
2011-06-06 15:49:48 +02:00
|
|
|
|
|
|
|
CoTaskMemFree(fmt);
|
|
|
|
IAudioClient_Release(ac);
|
|
|
|
}
|
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
START_TEST(render)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
|
|
|
hr = CoCreateInstance(&CLSID_MMDeviceEnumerator, NULL, CLSCTX_INPROC_SERVER, &IID_IMMDeviceEnumerator, (void**)&mme);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
skip("mmdevapi not available: 0x%08x\n", hr);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IMMDeviceEnumerator_GetDefaultAudioEndpoint(mme, eRender, eMultimedia, &dev);
|
|
|
|
ok(hr == S_OK || hr == E_NOTFOUND, "GetDefaultAudioEndpoint failed: 0x%08x\n", hr);
|
|
|
|
if (hr != S_OK || !dev)
|
|
|
|
{
|
|
|
|
if (hr == E_NOTFOUND)
|
|
|
|
skip("No sound card available\n");
|
|
|
|
else
|
|
|
|
skip("GetDefaultAudioEndpoint returns 0x%08x\n", hr);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-01-10 21:10:44 +01:00
|
|
|
test_audioclient();
|
2011-11-16 18:46:09 +01:00
|
|
|
test_formats(AUDCLNT_SHAREMODE_EXCLUSIVE);
|
|
|
|
test_formats(AUDCLNT_SHAREMODE_SHARED);
|
2011-01-10 21:10:44 +01:00
|
|
|
test_references();
|
2011-01-10 21:10:50 +01:00
|
|
|
test_event();
|
2011-04-22 22:25:43 +02:00
|
|
|
test_padding();
|
2011-04-27 16:12:52 +02:00
|
|
|
test_clock();
|
2011-05-02 15:22:31 +02:00
|
|
|
test_session();
|
2011-05-09 21:52:27 +02:00
|
|
|
test_streamvolume();
|
|
|
|
test_channelvolume();
|
|
|
|
test_simplevolume();
|
|
|
|
test_volume_dependence();
|
2011-06-06 15:49:48 +02:00
|
|
|
test_session_creation();
|
2011-01-10 21:10:44 +01:00
|
|
|
|
2010-02-21 11:53:11 +01:00
|
|
|
IMMDevice_Release(dev);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (mme)
|
|
|
|
IMMDeviceEnumerator_Release(mme);
|
|
|
|
CoUninitialize();
|
|
|
|
}
|