- Timestamp:
- Dec 21, 2023 2:08:52 PM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioWasApi.cpp
r102638 r102678 1291 1291 { 1292 1292 if ( pDevEntry2->cwcDevId == cwcDevId 1293 /* Note: We have to compare the device interface here as well, as a cached device entry might 1294 * have a stale audio interface for the same device. In such a case a new device entry will be created below. */ 1295 && pDevEntry2->pIDevice == pIDevice 1293 1296 && pDevEntry2->enmDir == pCfgReq->enmDir 1294 1297 && RTUtf16Cmp(pDevEntry2->wszDevId, pDevEntry->wszDevId) == 0) … … 1298 1301 pDevEntry = NULL; 1299 1302 1300 Log 8Func(("Lost race adding device '%ls': %p\n", pDevEntry2->wszDevId, pDevEntry2));1303 LogRel2(("WasAPI: Lost race adding device '%ls': %p\n", pDevEntry2->wszDevId, pDevEntry2)); 1301 1304 return drvHostAudioWasCacheLookupOrCreateConfig(pThis, pDevEntry2, pCfgReq, fOnWorker, ppDevCfg); 1302 1305 } … … 1304 1307 RTListPrepend(&pThis->CacheHead, &pDevEntry->ListEntry); 1305 1308 1306 Log 8Func(("Added device '%ls' to cache: %p\n", pDevEntry->wszDevId, pDevEntry));1309 LogRel2(("WasAPI: Added device '%ls' to cache: %p\n", pDevEntry->wszDevId, pDevEntry)); 1307 1310 return drvHostAudioWasCacheLookupOrCreateConfig(pThis, pDevEntry, pCfgReq, fOnWorker, ppDevCfg); 1308 1311 }
Note:
See TracChangeset
for help on using the changeset viewer.