VirtualBox

Changeset 82580 in vbox for trunk/src/VBox/Devices/Audio


Ignore:
Timestamp:
Dec 13, 2019 2:00:40 PM (5 years ago)
Author:
vboxsync
Message:

Audio: Logging tweaks (driver names); no functional changes.

Location:
trunk/src/VBox/Devices/Audio
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostALSAAudio.cpp

    r82255 r82580  
    11641164    AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER);
    11651165
    1166     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "ALSA audio driver");
     1166    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "ALSA");
    11671167
    11681168    pBackendCfg->cbStreamIn  = sizeof(ALSAAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp

    r82255 r82580  
    21842184    RT_BZERO(pBackendCfg, sizeof(PDMAUDIOBACKENDCFG));
    21852185
    2186     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Core Audio driver");
     2186    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Core Audio");
    21872187
    21882188    pBackendCfg->cbStreamIn  = sizeof(COREAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp

    r82463 r82580  
    21832183    pBackendCfg->cbStreamIn  = sizeof(DSOUNDSTREAM);
    21842184
    2185     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DirectSound audio driver");
     2185    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DirectSound");
    21862186
    21872187    pBackendCfg->cMaxStreamsIn  = UINT32_MAX;
  • trunk/src/VBox/Devices/Audio/DrvHostDebugAudio.cpp

    r82255 r82580  
    7171    AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER);
    7272
    73     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Debug audio driver");
     73    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "DebugAudio");
    7474
    7575    pBackendCfg->cbStreamOut    = sizeof(DEBUGAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostNullAudio.cpp

    r82255 r82580  
    8989    AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER);
    9090
    91     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "NULL audio driver");
     91    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "NULL audio");
    9292
    9393    pBackendCfg->cbStreamOut    = sizeof(NULLAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostOSSAudio.cpp

    r82255 r82580  
    557557    RT_NOREF(pInterface);
    558558
    559     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "OSS audio driver");
     559    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "OSS");
    560560
    561561    pBackendCfg->cbStreamIn  = sizeof(OSSAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp

    r82255 r82580  
    11281128    RT_ZERO(Cfg);
    11291129
    1130     RTStrPrintf2(Cfg.szName, sizeof(Cfg.szName), "PulseAudio driver");
     1130    RTStrPrintf2(Cfg.szName, sizeof(Cfg.szName), "PulseAudio");
    11311131
    11321132    Cfg.cbStreamOut    = sizeof(PULSEAUDIOSTREAM);
  • trunk/src/VBox/Devices/Audio/DrvHostValidationKit.cpp

    r82458 r82580  
    8383    AssertPtrReturn(pBackendCfg, VERR_INVALID_POINTER);
    8484
    85     RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Validation Kit audio driver");
     85    RTStrPrintf2(pBackendCfg->szName, sizeof(pBackendCfg->szName), "Validation Kit");
    8686
    8787    pBackendCfg->cbStreamOut    = sizeof(VAKITAUDIOSTREAM);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette