Changeset 88958 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 10, 2021 6:57:45 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144294
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r88929 r88958 493 493 if ( !RTStrICmp(ValueUnion.psz, "pulseaudio") 494 494 || !RTStrICmp(ValueUnion.psz, "pa")) 495 pDrvReg = &g_Drv VKATPulseAudio;495 pDrvReg = &g_DrvHostPulseAudio; 496 496 #endif 497 497 #ifdef VBOX_WITH_AUDIO_ALSA 498 498 if ( !RTStrICmp(ValueUnion.psz, "alsa")) 499 pDrvReg = &g_Drv VKATAlsa;499 pDrvReg = &g_DrvHostALSAAudio; 500 500 #endif 501 501 #ifdef VBOX_WITH_AUDIO_OSS 502 502 if ( !RTStrICmp(ValueUnion.psz, "oss")) 503 pDrvReg = &g_Drv VKATOss;503 pDrvReg = &g_DrvHostOSSAudio; 504 504 #endif 505 505 /** @todo Add more backends here. */ … … 587 587 /* If no backend is specified, go with the ALSA one by default. */ 588 588 if (pDrvReg == NULL) 589 pDrvReg = &g_Drv VKATAlsa;589 pDrvReg = &g_DrvHostALSAAudio; 590 590 591 591 PPDMIHOSTAUDIO pDrvAudio;
Note:
See TracChangeset
for help on using the changeset viewer.