Changeset 75317 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Nov 8, 2018 8:12:06 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r75120 r75317 1400 1400 1401 1401 /* Remove the old stream from the device setup. */ 1402 hdaR3RemoveStream(pThis, &pStream->State.Cfg); 1402 rc2 = hdaR3RemoveStream(pThis, &pStream->State.Cfg); 1403 AssertRC(rc2); 1403 1404 1404 1405 /* Add the stream to the device setup. */ … … 2909 2910 hdaR3StreamUpdate(pStream, true /* fInTimer */); 2910 2911 2911 /* Flag indicating whether to kick the timer again for a 2912 * new data processing round. */ 2913 const bool fSinkActive = AudioMixerSinkIsActive(pStream->pMixSink->pMixSink); 2912 /* Flag indicating whether to kick the timer again for a new data processing round. */ 2913 bool fSinkActive = false; 2914 if (pStream->pMixSink) 2915 fSinkActive = AudioMixerSinkIsActive(pStream->pMixSink->pMixSink); 2916 2914 2917 if (fSinkActive) 2915 2918 {
Note:
See TracChangeset
for help on using the changeset viewer.