- Timestamp:
- Sep 23, 2016 12:23:44 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r63965 r63971 476 476 /** @todo Check if stream already is assigned to (another) sink. */ 477 477 478 /* If the sink is running, make sure that the added stream also is enabled. */ 479 if (pSink->fStatus & AUDMIXSINK_STS_RUNNING) 478 /* If the sink is running and not in pending disable mode, 479 * make sure that the added stream also is enabled. */ 480 if ( (pSink->fStatus & AUDMIXSINK_STS_RUNNING) 481 && !(pSink->fStatus & AUDMIXSINK_STS_PENDING_DISABLE)) 482 { 480 483 rc = audioMixerStreamCtlInternal(pStream, PDMAUDIOSTREAMCMD_ENABLE, AUDMIXSTRMCTL_FLAG_NONE); 484 } 481 485 482 486 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.