- Timestamp:
- Sep 26, 2017 9:08:39 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118123
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r68482 r68869 891 891 RTListForEach(&pSink->lstStreams, pMixStream, AUDMIXSTREAM, Node) 892 892 { 893 if (!(pMixStream->pConn->pfnStreamGetStatus(pMixStream->pConn, pMixStream->pStream) & PDMAUDIOSTREAMSTS_FLAG_ENABLED))894 {895 Log3Func(("[%s] Stream '%s' disabled, skipping ...\n", pSink->pszName, pMixStream->pszName));896 continue;897 }898 899 893 const uint32_t cbWritableStream = pMixStream->pConn->pfnStreamGetWritable(pMixStream->pConn, pMixStream->pStream); 900 894 … … 1622 1616 RTListForEach(&pSink->lstStreams, pMixStream, AUDMIXSTREAM, Node) 1623 1617 { 1624 if (!(pMixStream->pConn->pfnStreamGetStatus(pMixStream->pConn, pMixStream->pStream) & PDMAUDIOSTREAMSTS_FLAG_ENABLED))1625 {1626 Log3Func(("[%s] Stream '%s' disabled, skipping ...\n", pSink->pszName, pMixStream->pszName));1627 continue;1628 }1629 1630 1618 uint32_t cbProcessed = 0; 1631 1619 int rc2 = pMixStream->pConn->pfnStreamWrite(pMixStream->pConn, pMixStream->pStream, pvBuf, cbBuf, &cbProcessed);
Note:
See TracChangeset
for help on using the changeset viewer.