VirtualBox

Changeset 73567 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 8, 2018 3:01:36 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
124204
Message:

Audio/Mixer: No need to propagate playback/capturing errors for attached streams to the outside, as this does not affect the mixer sink's operation as such in audioMixerSinkUpdateInternal().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/AudioMixer.cpp

    r73566 r73567  
    15261526            if (pSink->enmDir == AUDMIXSINKDIR_INPUT)
    15271527            {
    1528                 rc = pConn->pfnStreamCapture(pConn, pStream, &cfProc);
     1528                rc2 = pConn->pfnStreamCapture(pConn, pStream, &cfProc);
    15291529                if (RT_FAILURE(rc2))
    15301530                {
    15311531                    LogFunc(("%s: Failed capturing stream '%s', rc=%Rrc\n", pSink->pszName, pStream->szName, rc2));
    1532                     if (RT_SUCCESS(rc))
    1533                         rc = rc2;
    15341532                    continue;
    15351533                }
     
    15441542                {
    15451543                    LogFunc(("%s: Failed playing stream '%s', rc=%Rrc\n", pSink->pszName, pStream->szName, rc2));
    1546                     if (RT_SUCCESS(rc))
    1547                         rc = rc2;
    15481544                    continue;
    15491545                }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette