Changeset 59086 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Dec 11, 2015 9:54:59 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r58983 r59086 1832 1832 LogFlowFunc(("%s: fEnable=%RTbool\n", pGstStrmIn->MixBuf.pszName, fEnable)); 1833 1833 1834 if (pGstStrmIn->State.fActive != fEnable) /* Only process real state changes. */ 1835 { 1836 rc = drvAudioControlHstIn(pThis, pHstStrmIn, 1837 fEnable ? PDMAUDIOSTREAMCMD_ENABLE : PDMAUDIOSTREAMCMD_DISABLE); 1838 if (RT_SUCCESS(rc)) 1839 pGstStrmIn->State.fActive = fEnable; 1840 1841 LogFlowFunc(("%s: fEnable=%RTbool, rc=%Rrc\n", pGstStrmIn->MixBuf.pszName, fEnable, rc)); 1842 } 1834 rc = drvAudioControlHstIn(pThis, pHstStrmIn, 1835 fEnable ? PDMAUDIOSTREAMCMD_ENABLE : PDMAUDIOSTREAMCMD_DISABLE); 1836 if (RT_SUCCESS(rc)) 1837 pGstStrmIn->State.fActive = fEnable; 1838 1839 LogFlowFunc(("%s: fEnable=%RTbool, rc=%Rrc\n", pGstStrmIn->MixBuf.pszName, fEnable, rc)); 1843 1840 } 1844 1841
Note:
See TracChangeset
for help on using the changeset viewer.