Changeset 67444 in vbox
- Timestamp:
- Jun 16, 2017 2:12:16 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r67436 r67444 1438 1438 AssertPtr(pConn); 1439 1439 1440 uint32_t c Proc = 0;1440 uint32_t csProc = 0; 1441 1441 1442 1442 int rc2 = pConn->pfnStreamIterate(pConn, pStream); … … 1445 1445 if (pSink->enmDir == AUDMIXSINKDIR_INPUT) 1446 1446 { 1447 rc = pConn->pfnStreamCapture(pConn, pStream, &c Proc);1447 rc = pConn->pfnStreamCapture(pConn, pStream, &csProc); 1448 1448 if (RT_FAILURE(rc2)) 1449 1449 { … … 1454 1454 } 1455 1455 1456 if (c Proc)1456 if (csProc) 1457 1457 pSink->fStatus |= AUDMIXSINK_STS_DIRTY; 1458 1458 } 1459 1459 else if (pSink->enmDir == AUDMIXSINKDIR_OUTPUT) 1460 1460 { 1461 rc2 = pConn->pfnStreamPlay(pConn, pStream, &c Proc);1461 rc2 = pConn->pfnStreamPlay(pConn, pStream, &csProc); 1462 1462 if (RT_FAILURE(rc2)) 1463 1463 { … … 1493 1493 } 1494 1494 1495 Log3Func(("\t%s: cPlayed/cCaptured=%RU32, rc2=%Rrc\n", pStream->szName, c Proc, rc2));1495 Log3Func(("\t%s: cPlayed/cCaptured=%RU32, rc2=%Rrc\n", pStream->szName, csProc, rc2)); 1496 1496 } 1497 1497
Note:
See TracChangeset
for help on using the changeset viewer.