1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
|
// ------------------------------------------------------------------------------
//
// Copyright (C) Microsoft. All rights reserved.
//
// File Name:
//
// TestResourceBuild.cpp
//
// Abstract:
//
// TAEF BuildResourceList implementation
//
// ------------------------------------------------------------------------------
#include "PreComp.h"
#include <TestResource.h>
#include <PropertyHelper.h>
using namespace WEX::Common;
using namespace WEX::Logging;
using namespace WEX::TestExecution;
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// CreateTestResource
//
// Create the test resource with MMDevice, device id, device name, data flow, connector type, connector id, mode,
// list of formats
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT CreateTestResource
(
ResourceList& resourceList,
DeviceDescriptor descriptor
)
{
HRESULT hr = S_OK;
CComHeapPtr<CHalfApp> spHalfApp;
wil::com_ptr_nothrow<ITestResource> spTestResource;
GUID ResourceGUID;
CComBSTR szResourceName;
// Create HalfApp
spHalfApp.Attach(new CHalfApp(descriptor));
if (!VERIFY_IS_NOT_NULL(spHalfApp)) {
hr = E_OUTOFMEMORY;
return hr;
}
// Create PinTestResource
if (!VERIFY_SUCCEEDED(hr = CoCreateGuid(&ResourceGUID))) {
return hr;
}
if (!VERIFY_SUCCEEDED(hr = CPinTestResource::CreateInstance(
spHalfApp, ResourceGUID, &spTestResource))) {
return hr;
}
// Add to resource list
spHalfApp.Detach();
if (!VERIFY_SUCCEEDED(hr = resourceList.Add(spTestResource.get()))) {
return hr;
}
if (!VERIFY_SUCCEEDED(hr = spTestResource->GetValue(CComBSTR(TestResourceProperty::c_szName), &szResourceName))) {
return hr;
}
Log::Comment(String().Format(L"Test Resource (%s) added", (PCWSTR)szResourceName));
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// GetProcessingModesForConnector
//
// For host/keyword detector pin, processing mode info is cached in property store and can be directly read. For offload
// pin, query for ks processing mode property. For loopback pin, it doesn't support any processing modes, return GUID_NULL.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT GetProcessingModesForConnector
(
IMMDevice* pDevice,
UINT uConnectorId,
EndpointConnectorType eConnectorType,
ULONG *pCount,
AUDIO_SIGNALPROCESSINGMODE **ppModes
)
{
HRESULT hr = S_OK;
*pCount = 0;
*ppModes = NULL;
if (eConnectorType == eHostProcessConnector || eConnectorType == eKeywordDetectorConnector) {
if (!VERIFY_SUCCEEDED(hr = GetCachedProcessingModes(pDevice, eConnectorType, pCount, ppModes))) {
return hr;
}
}
else if (eConnectorType == eOffloadConnector) {
if (!VERIFY_SUCCEEDED(hr = GetProcessingModes(pDevice, uConnectorId, pCount, ppModes))) {
return hr;
}
}
else if (eConnectorType == eLoopbackConnector) {
// Loopback pin doesn't support any processing modes, so put 1 GUID_NULL
CComHeapPtr<AUDIO_SIGNALPROCESSINGMODE> spModes;
if (!spModes.Allocate(1))
return E_OUTOFMEMORY;
spModes[0] = GUID_NULL;
*pCount = 1;
*ppModes = spModes.Detach();
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// GetDefaultFormatForConnector
//
// Read audio engine device format from property store as default format.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT GetDefaultFormatForConnector
(
IMMDevice* pDevice,
EndpointConnectorType eConnectorType,
WAVEFORMATEX **ppDefaultFormat
)
{
HRESULT hr = S_OK;
*ppDefaultFormat = NULL;
if (!VERIFY_SUCCEEDED(hr = GetCachedDefaultFormat(pDevice, eConnectorType, ppDefaultFormat))){
return hr;
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// GetSupportedFormatsForConnector
//
// For host/keyword detector pin, supported formats info is cached in property store and can be directly read. For offload
// pin, provide with a predefined list of formats and check whether format is supported. For loopback pin, it matches the format
// of host pin so put 0 format record.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT GetSupportedFormatRecordsForConnector
(
IMMDevice* pDevice,
UINT uConnectorId,
EndpointConnectorType eConnectorType,
AUDIO_SIGNALPROCESSINGMODE mode,
STACKWISE_DATAFLOW dataFlow,
ULONG *pCount,
FORMAT_RECORD **ppFormatRecords
)
{
HRESULT hr = S_OK;
*pCount = 0;
*ppFormatRecords = NULL;
if (eConnectorType == eHostProcessConnector || eConnectorType == eKeywordDetectorConnector) {
if (!VERIFY_SUCCEEDED(hr = GetCachedSupportedFormatRecords(pDevice, eConnectorType, mode, pCount, ppFormatRecords))) {
return hr;
}
}
else if (eConnectorType == eOffloadConnector) {
if (!VERIFY_SUCCEEDED(hr = GetSupportedFormatRecords(pDevice, uConnectorId, eConnectorType, mode, dataFlow, pCount, ppFormatRecords))) {
return hr;
}
}
else if (eConnectorType == eLoopbackConnector) {
*pCount = 0;
*ppFormatRecords = NULL;
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// GetPreferredFormatForConnector
//
// If KSPROPERTY_PIN_PROPOSEDATAFORMAT2 is supported, use the proposed format for mode as preferred format for mode.
// Otherwise, use default format as preferred format.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT GetPreferredFormatForConnector
(
IMMDevice* pDevice,
UINT uConnectorId,
EndpointConnectorType eConnectorType,
AUDIO_SIGNALPROCESSINGMODE mode,
WAVEFORMATEX **ppPreferredFormat
)
{
HRESULT hr = S_OK;
wil::unique_cotaskmem_ptr<WAVEFORMATEX> pDefaultFormat;
wil::unique_cotaskmem_ptr<WAVEFORMATEX> pProposedFormat;
*ppPreferredFormat = NULL;
// Get default format for connector
if (!VERIFY_SUCCEEDED(hr = GetDefaultFormatForConnector(pDevice, eConnectorType, wil::out_param(pDefaultFormat)))) {
return hr;
}
// Return the processing mode specific format proposed by the driver
hr = GetProposedFormatForProcessingMode(pDevice, uConnectorId, mode, wil::out_param(pProposedFormat));
if (hr == S_OK) {
CloneWaveFormat(pProposedFormat.get(), ppPreferredFormat);
}
else {
CloneWaveFormat(pDefaultFormat.get(), ppPreferredFormat);
hr = S_OK;
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// GetPreferredFormatPeriodicityCharacteristicsForConnector
//
// Get periodicity characteristics for format. For host/keyword detector pin, periodicity info is cached along with format
// in property store and can be searched from supported format list. For offload pin, it should be calculate from
// DiscoverPeriodicityCharacteristicsForFormat.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT GetPreferredFormatPeriodicityCharacteristicsForConnector
(
IMMDevice* pDevice,
EndpointConnectorType eConnectorType,
AUDIO_SIGNALPROCESSINGMODE mode,
STACKWISE_DATAFLOW dataFlow,
WAVEFORMATEX *pPreferredFormat,
ULONG cFormatRecords,
PFORMAT_RECORD pFormatRecords,
UINT32 *pDefaultPeriodicityInFrames,
UINT32 *pFundamentalPeriodicityInFrames,
UINT32 *pMinPeriodicityInFrames,
UINT32 *pMaxPeriodicityInFrames,
UINT32 *pMaxPeriodicityInFramesExtended
)
{
HRESULT hr = S_OK;
bool bFormatInList = false;
for (ULONG i = 0; i < cFormatRecords; i++) {
if (CompareWaveFormat((WAVEFORMATEX *)&pFormatRecords[i].wfxEx, pPreferredFormat)) {
bFormatInList = true;
*pDefaultPeriodicityInFrames = pFormatRecords[i].defaultPeriodInFrames;
*pFundamentalPeriodicityInFrames = pFormatRecords[i].fundamentalPeriodInFrames;
*pMinPeriodicityInFrames = pFormatRecords[i].minPeriodInFrames;
*pMaxPeriodicityInFrames = pFormatRecords[i].maxPeriodInFrames;
*pMaxPeriodicityInFramesExtended = pFormatRecords[i].maxPeriodInFramesExtended;
break;
}
}
if (eConnectorType == eHostProcessConnector || eConnectorType == eKeywordDetectorConnector) {
if (!VERIFY_IS_TRUE(bFormatInList)) {
hr = E_NOTFOUND;
return hr;
}
}
else if (eConnectorType == eOffloadConnector || eConnectorType == eLoopbackConnector) {
if (!VERIFY_SUCCEEDED(hr = DiscoverPeriodicityCharacteristicsForFormat(pDevice, eConnectorType, mode, pPreferredFormat, dataFlow, pDefaultPeriodicityInFrames, pFundamentalPeriodicityInFrames, pMinPeriodicityInFrames, pMaxPeriodicityInFrames, pMaxPeriodicityInFramesExtended))) {
return hr;
}
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// AddTestResourceForConnector
//
// For each connector, read connector id, get all processing modes, identify default and preferred format for each mode
// and also enumerate a list of supported formats for each mode. Store all the infos in test resource.
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT AddTestResourceForConnector
(
ResourceList& resourceList,
LPWSTR deviceId,
LPWSTR deviceName,
IMMDevice* pDevice,
EndpointConnectorType eConnectorType,
STACKWISE_DATAFLOW dataFlow
)
{
HRESULT hr = S_OK;
bool bHasConnector = false;
UINT uConnectorId;
ULONG cModes = 0;
CComHeapPtr<AUDIO_SIGNALPROCESSINGMODE> spModes;
AUDIO_SIGNALPROCESSINGMODE mode;
ULONG cFormatRecords = 0;
CComHeapPtr<FORMAT_RECORD> spFormatRecords;
wil::unique_cotaskmem_ptr<WAVEFORMATEX> pPreferredFormat;
UINT32 u32DefaultPeriodicityInFrames;
UINT32 u32FundamentalPeriodicityInFrames;
UINT32 u32MinPeriodicityInFrames;
UINT32 u32MaxPeriodicityInFrames;
UINT32 u32MaxPeriodicityInFramesExtended;
bool isAVStream = false;
// Get connector id
if (!VERIFY_SUCCEEDED(hr = GetConnectorId(pDevice, eConnectorType, &bHasConnector, &uConnectorId))) {
return hr;
}
if (!bHasConnector) {
return hr;
}
Log::Comment(String().Format(L"Adding Test Resource for pin [%u]:", (uConnectorId & PARTID_MASK)));
// Get all signal processing modes for connector
if (!VERIFY_SUCCEEDED(hr = GetProcessingModesForConnector(pDevice, uConnectorId, eConnectorType, &cModes, &spModes))) {
return hr;
}
// Loop through each mode, get preferred format and list of formats and create test resource for each mode
for (ULONG i = 0; i < cModes; i++) {
mode = spModes[i];
if (!VERIFY_SUCCEEDED(hr = GetSupportedFormatRecordsForConnector(pDevice, uConnectorId, eConnectorType, mode, dataFlow, &cFormatRecords, &spFormatRecords))) {
return hr;
}
if (!VERIFY_SUCCEEDED(hr = GetPreferredFormatForConnector(pDevice, uConnectorId, eConnectorType, mode, wil::out_param(pPreferredFormat)))) {
return hr;
}
if (!VERIFY_SUCCEEDED(hr = GetPreferredFormatPeriodicityCharacteristicsForConnector(pDevice, eConnectorType, mode, dataFlow, pPreferredFormat.get(), cFormatRecords, spFormatRecords, &u32DefaultPeriodicityInFrames, &u32FundamentalPeriodicityInFrames, &u32MinPeriodicityInFrames, &u32MaxPeriodicityInFrames, &u32MaxPeriodicityInFramesExtended))) {
return hr;
}
// Check if audio endpoint is AVStream
if (!VERIFY_SUCCEEDED(hr = IsAVStream(pDevice, &isAVStream))) {
return hr;
}
DeviceDescriptor descriptor = { 0 };
descriptor.pDevice = pDevice;
descriptor.pwstrAudioEndpointId = deviceId;
descriptor.pwstrAudioEndpointFriendlyName = deviceName;
descriptor.dataFlow = dataFlow;
descriptor.eConnectorType = eConnectorType;
descriptor.uConnectorId = uConnectorId;
descriptor.mode = mode;
descriptor.cModes = cModes;
descriptor.pModes = spModes;
descriptor.cFormatRecords = cFormatRecords;
descriptor.pFormatRecords = spFormatRecords;
descriptor.pPreferredFormat = pPreferredFormat.get();
descriptor.u32DefaultPeriodicityInFrames = u32DefaultPeriodicityInFrames;
descriptor.u32FundamentalPeriodicityInFrames = u32FundamentalPeriodicityInFrames;
descriptor.u32MinPeriodicityInFrames = u32MinPeriodicityInFrames;
descriptor.u32MaxPeriodicityInFrames = u32MaxPeriodicityInFrames;
descriptor.bIsAVStream = isAVStream;
if (!VERIFY_SUCCEEDED(hr = CreateTestResource(resourceList, descriptor))) {
return hr;
}
}
return hr;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// AddTestResourcesForDevice
//
// Identify the existence of all pin types and add test resources for each pin
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
HRESULT AddTestResourcesForDevice
(
ResourceList& resourceList,
LPWSTR deviceId,
LPWSTR deviceName,
STACKWISE_DATAFLOW dataFlow
)
{
HRESULT hr = S_OK;
wil::com_ptr_nothrow<IMMDeviceEnumerator> spEnumerator;
wil::com_ptr_nothrow<IMMDevice> spDevice;
Log::Comment(String().Format(L"Adding Test Resource for Device [%s]:", deviceName));
// Read the default device format from the property store
if (!VERIFY_SUCCEEDED(hr = CoCreateInstance(__uuidof(MMDeviceEnumerator), nullptr, CLSCTX_ALL, __uuidof(IMMDeviceEnumerator), (void **)&spEnumerator))) {
return hr;
}
if (!VERIFY_SUCCEEDED(hr = spEnumerator->GetDevice(deviceId, &spDevice))) {
return hr;
}
// Identify existence of host pin. Add test resources for host pin.
if (!VERIFY_SUCCEEDED(hr = AddTestResourceForConnector(resourceList, deviceId, deviceName, spDevice.get(), eHostProcessConnector, dataFlow))) {
return hr;
}
// Identify existence of offload pin. Add test resources for offload pin.
if (!VERIFY_SUCCEEDED(hr = AddTestResourceForConnector(resourceList, deviceId, deviceName, spDevice.get(), eOffloadConnector, dataFlow))) {
return hr;
}
// Identify existence of loopback pin. Add test resources for loopback pin.
if (!VERIFY_SUCCEEDED(hr = AddTestResourceForConnector(resourceList, deviceId, deviceName, spDevice.get(), eLoopbackConnector, capture ))) {
return hr;
}
/*
// Identify existence of keyword detector pin. Add test resources for keyword detector pin.
if (!VERIFY_SUCCEEDED(hr = AddTestResourceForConnector(resourceList, deviceId, deviceName, spDevice.get(), eKeywordDetectorConnector, dataFlow))) {
return hr;
}
*/
return hr;
}
HRESULT __cdecl BuildResourceList(ResourceList& resourceList)
{
HRESULT hr = S_OK;
wil::com_ptr_nothrow<IMMDeviceEnumerator> spEnumerator;
wil::com_ptr_nothrow<IMMDeviceCollection> spRenderEndpoints;
wil::com_ptr_nothrow<IMMDeviceCollection> spCaptureEndpoints;
wil::com_ptr_nothrow<IMMDevice> spEndpoint;
UINT cRenderDevices = 0;
UINT cCaptureDevices = 0;
UINT i = 0;
wil::unique_cotaskmem_string id;
wil::unique_cotaskmem_string friendlyName;
SetVerifyOutput verifySettings(VerifyOutputSettings::LogOnlyFailures);
DisableVerifyExceptions disable;
VERIFY_SUCCEEDED(::CoInitializeEx(NULL, COINIT_MULTITHREADED));
Log::Comment(L"In BuildResourceList");
// Create IMMDevice Enumerator
VERIFY_SUCCEEDED(CoCreateInstance(__uuidof(MMDeviceEnumerator), nullptr, CLSCTX_ALL, __uuidof(IMMDeviceEnumerator), (void **)&spEnumerator));
// Enumerate all render endpoints
VERIFY_SUCCEEDED(spEnumerator->EnumAudioEndpoints(eRender, DEVICE_STATE_ACTIVE, &spRenderEndpoints));
VERIFY_SUCCEEDED(spRenderEndpoints->GetCount(&cRenderDevices));
// Enumerate all capture endpoints
VERIFY_SUCCEEDED(spEnumerator->EnumAudioEndpoints(eCapture, DEVICE_STATE_ACTIVE, &spCaptureEndpoints));
VERIFY_SUCCEEDED(spCaptureEndpoints->GetCount(&cCaptureDevices));
if (!VERIFY_IS_TRUE(cRenderDevices | cCaptureDevices))
{
hr = E_FAIL;
Log::Comment(L"No device was found!");
goto Exit;
}
Log::Comment(String().Format(L"Found %d viable rendering device!", cRenderDevices));
// Add test resources for render endpoints
if (cRenderDevices) {
for (i = 0; i < cRenderDevices; i++) {
VERIFY_SUCCEEDED(spRenderEndpoints->Item(i, &spEndpoint));
VERIFY_SUCCEEDED(spEndpoint->GetId(&id));
VERIFY_SUCCEEDED(GetEndpointFriendlyName(spEndpoint.get(), &friendlyName));
Log::Comment(String().Format(L"\\\\ Device: %s (%s)", friendlyName.get(), id.get()));
VERIFY_SUCCEEDED(AddTestResourcesForDevice(resourceList, id.get(), friendlyName.get(), render));
}
}
Log::Comment(String().Format(L"Found %d viable capture device!", cCaptureDevices));
// Add test resources for capture endpoints
if (cCaptureDevices) {
for (i = 0; i < cCaptureDevices; i++) {
VERIFY_SUCCEEDED(spCaptureEndpoints->Item(i, &spEndpoint));
VERIFY_SUCCEEDED(spEndpoint->GetId(&id));
VERIFY_SUCCEEDED(GetEndpointFriendlyName(spEndpoint.get(), &friendlyName));
Log::Comment(String().Format(L"\\\\ Device: %s (%s)", friendlyName.get(), id.get()));
VERIFY_SUCCEEDED(AddTestResourcesForDevice(resourceList, id.get(), friendlyName.get(), capture));
}
}
Log::Comment(L"Resource enumeration complete.");
Log::Comment(String().Format(L"Enumerated %u resources", resourceList.Count()));
Exit:
return hr;
}
|