Changeset 73567 in vbox for trunk/src/VBox
- Timestamp:
- Aug 8, 2018 3:01:36 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124204
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r73566 r73567 1526 1526 if (pSink->enmDir == AUDMIXSINKDIR_INPUT) 1527 1527 { 1528 rc = pConn->pfnStreamCapture(pConn, pStream, &cfProc);1528 rc2 = pConn->pfnStreamCapture(pConn, pStream, &cfProc); 1529 1529 if (RT_FAILURE(rc2)) 1530 1530 { 1531 1531 LogFunc(("%s: Failed capturing stream '%s', rc=%Rrc\n", pSink->pszName, pStream->szName, rc2)); 1532 if (RT_SUCCESS(rc))1533 rc = rc2;1534 1532 continue; 1535 1533 } … … 1544 1542 { 1545 1543 LogFunc(("%s: Failed playing stream '%s', rc=%Rrc\n", pSink->pszName, pStream->szName, rc2)); 1546 if (RT_SUCCESS(rc))1547 rc = rc2;1548 1544 continue; 1549 1545 }
Note:
See TracChangeset
for help on using the changeset viewer.