Changeset 82580 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Dec 13, 2019 2:00:40 PM (5 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp
r82255 r82580 1164 1164 AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER); 1165 1165 1166 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "ALSA audio driver");1166 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "ALSA"); 1167 1167 1168 1168 pBackendCfg->cbStreamIn = sizeof(ALSAAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp
r82255 r82580 2184 2184 RT_BZERO(pBackendCfg, sizeof(PDMAUDIOBACKENDCFG)); 2185 2185 2186 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Core Audio driver");2186 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Core Audio"); 2187 2187 2188 2188 pBackendCfg->cbStreamIn = sizeof(COREAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r82463 r82580 2183 2183 pBackendCfg->cbStreamIn = sizeof(DSOUNDSTREAM); 2184 2184 2185 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DirectSound audio driver");2185 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DirectSound"); 2186 2186 2187 2187 pBackendCfg->cMaxStreamsIn = UINT32_MAX; -
trunk/src/VBox/Devices/Audio/DrvHostDebugAudio.cpp
r82255 r82580 71 71 AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER); 72 72 73 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Debug audio driver");73 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DebugAudio"); 74 74 75 75 pBackendCfg->cbStreamOut = sizeof(DEBUGAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostNullAudio.cpp
r82255 r82580 89 89 AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER); 90 90 91 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "NULL audio driver");91 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "NULL audio"); 92 92 93 93 pBackendCfg->cbStreamOut = sizeof(NULLAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostOSSAudio.cpp
r82255 r82580 557 557 RT_NOREF(pInterface); 558 558 559 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "OSS audio driver");559 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "OSS"); 560 560 561 561 pBackendCfg->cbStreamIn = sizeof(OSSAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r82255 r82580 1128 1128 RT_ZERO(Cfg); 1129 1129 1130 RTStrPrintf2(Cfg.szName, sizeof(Cfg.szName), "PulseAudio driver");1130 RTStrPrintf2(Cfg.szName, sizeof(Cfg.szName), "PulseAudio"); 1131 1131 1132 1132 Cfg.cbStreamOut = sizeof(PULSEAUDIOSTREAM); -
trunk/src/VBox/Devices/Audio/DrvHostValidationKit.cpp
r82458 r82580 83 83 AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER); 84 84 85 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Validation Kit audio driver");85 RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Validation Kit"); 86 86 87 87 pBackendCfg->cbStreamOut = sizeof(VAKITAUDIOSTREAM);
Note:
See TracChangeset
for help on using the changeset viewer.