Changeset 88940 in vbox
- Timestamp:
- May 7, 2021 7:27:14 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144275
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r88920 r88940 793 793 return; 794 794 795 /** @todo wrong critsect for audioMixerRemoveSinkInternal... */ 795 796 int rc2 = RTCritSectEnter(&pSink->CritSect); 796 797 AssertRC(rc2); -
trunk/src/VBox/Devices/Audio/DevHda.cpp
r88934 r88940 4665 4665 for (uint8_t i = 0; i < HDA_MAX_STREAMS; i++) 4666 4666 hdaR3StreamDestroy(&pThis->aStreams[i], &pThisCC->aStreams[i]); 4667 4668 /* We don't always go via PowerOff, so make sure the mixer is destroyed. */ 4669 if (pThisCC->pMixer) 4670 { 4671 AudioMixerDestroy(pThisCC->pMixer, pDevIns); 4672 pThisCC->pMixer = NULL; 4673 } 4667 4674 4668 4675 DEVHDA_UNLOCK(pDevIns, pThis); -
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r88939 r88940 4069 4069 Assert(RTListIsEmpty(&pThisCC->lstDrv)); 4070 4070 4071 /* We don't always go via PowerOff, so make sure the mixer is destroyed. */ 4072 if (pThisCC->pMixer) 4073 { 4074 AudioMixerDestroy(pThisCC->pMixer, pDevIns); 4075 pThisCC->pMixer = NULL; 4076 } 4077 4071 4078 return VINF_SUCCESS; 4072 4079 } -
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r88936 r88940 3013 3013 RTListNodeRemove(&pDrv->Node); 3014 3014 RTMemFree(pDrv); 3015 } 3016 3017 /* We don't always go via PowerOff, so make sure the mixer is destroyed. */ 3018 if (pThis->pMixer) 3019 { 3020 AudioMixerDestroy(pThis->pMixer, pDevIns); 3021 pThis->pMixer = NULL; 3015 3022 } 3016 3023
Note:
See TracChangeset
for help on using the changeset viewer.