Changeset 54942 in vbox
- Timestamp:
- Mar 25, 2015 3:09:28 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99190
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r54941 r54942 1482 1482 1483 1483 static DECLCALLBACK(int) drvAudioEnableOut(PPDMIAUDIOCONNECTOR pInterface, 1484 PPDMAUDIOGSTSTRMOUT pGst VoiceOut, bool fEnable)1484 PPDMAUDIOGSTSTRMOUT pGstStrmOut, bool fEnable) 1485 1485 { 1486 1486 AssertPtrReturn(pInterface, VERR_INVALID_POINTER); 1487 /* pGst VoiceOut is optional. */1487 /* pGstStrmOut is optional. */ 1488 1488 1489 1489 PDRVAUDIO pThis = PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface); 1490 1490 1491 if (pGst VoiceOut)1492 { 1493 PPDMAUDIOHSTSTRMOUT pHstStrmOut = pGst VoiceOut->pHstStrmOut;1491 if (pGstStrmOut) 1492 { 1493 PPDMAUDIOHSTSTRMOUT pHstStrmOut = pGstStrmOut->pHstStrmOut; 1494 1494 AssertPtr(pHstStrmOut); 1495 1495 1496 if (pGstVoiceOut->State.fActive != fEnable) 1496 LogFlowFunc(("%s: fEnable=%RTbool\n", pGstStrmOut->MixBuf.pszName, fEnable)); 1497 1498 if (pGstStrmOut->State.fActive != fEnable) 1497 1499 { 1498 1500 if (fEnable) … … 1524 1526 } 1525 1527 1526 pGst VoiceOut->State.fActive = fEnable;1528 pGstStrmOut->State.fActive = fEnable; 1527 1529 } 1528 1530 } … … 1544 1546 AssertPtr(pHstStrmIn); 1545 1547 1546 LogFlowFunc(("%s -> %s, fEnable=%RTbool\n", 1547 pHstStrmIn->MixBuf.pszName, pGstStrmIn->MixBuf.pszName, fEnable)); 1548 LogFlowFunc(("%s: fEnable=%RTbool\n", pGstStrmIn->MixBuf.pszName, fEnable)); 1548 1549 1549 1550 if (pGstStrmIn->State.fActive != fEnable)
Note:
See TracChangeset
for help on using the changeset viewer.