Changeset 87173 in vbox for trunk/src/VBox
- Timestamp:
- Jan 5, 2021 8:16:55 AM (4 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r87159 r87173 1534 1534 /* 1535 1535 * Warning: Do *not* use pfnConn->pfnEnable() for enabling/disabling streams here, as this will unconditionally (re-)enable 1536 * streams, which would violate / run against the (global) VM settings. See #9882.1536 * streams, which would violate / run against the (global) VM settings. See @bugref{9882}. 1537 1537 */ 1538 1538 -
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r87159 r87173 461 461 * it already is. 462 462 * 463 * See #9882.463 * See @bugref{9882}. 464 464 */ 465 465 const bool fEnabled = ( pStream->enmDir == PDMAUDIODIR_IN … … 967 967 } 968 968 969 /* If output is disabled on a per-driver level, send data to the bit bucket instead. See #9882. */969 /* If output is disabled on a per-driver level, send data to the bit bucket instead. See @bugref{9882}. */ 970 970 if (!pThis->Out.fEnabled) 971 971 { … … 2766 2766 * - recording audio data would return silence instead 2767 2767 * 2768 * See #9882.2768 * See @bugref{9882}. 2769 2769 */ 2770 2770 int rc2 = drvAudioStreamControlInternalBackend(pThis, pStream, … … 2905 2905 uint32_t cbReadable = 0; 2906 2906 2907 /* All input streams for this driver disabled? See #9882. */2907 /* All input streams for this driver disabled? See @bugref{9882}. */ 2908 2908 const bool fDisabled = !pThis->In.fEnabled; 2909 2909
Note:
See TracChangeset
for help on using the changeset viewer.