Changeset 55920 in vbox for trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
- Timestamp:
- May 18, 2015 7:11:51 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
r55335 r55920 147 147 } 148 148 149 audioMixBufDestroy(&pGstStrmIn->MixBuf);149 AudioMixBufDestroy(&pGstStrmIn->MixBuf); 150 150 } 151 151 … … 153 153 { 154 154 AssertPtrReturnVoid(pHstStrmIn); 155 audioMixBufDestroy(&pHstStrmIn->MixBuf);155 AudioMixBufDestroy(&pHstStrmIn->MixBuf); 156 156 } 157 157 … … 167 167 } 168 168 169 audioMixBufDestroy(&pGstStrmOut->MixBuf);169 AudioMixBufDestroy(&pGstStrmOut->MixBuf); 170 170 } 171 171 … … 226 226 { 227 227 AssertPtrReturnVoid(pHstStrmOut); 228 audioMixBufDestroy(&pHstStrmOut->MixBuf);228 AudioMixBufDestroy(&pHstStrmOut->MixBuf); 229 229 } 230 230 … … 438 438 || !pGstStrmOut->State.fEmpty) 439 439 { 440 cSamples = audioMixBufMixed(&pGstStrmOut->MixBuf);440 cSamples = AudioMixBufMixed(&pGstStrmOut->MixBuf); 441 441 cMinSamplesMixed = RT_MIN(cMinSamplesMixed, cSamples); 442 442 … … 473 473 { 474 474 if ( cSamplesMin == UINT32_MAX 475 || cSamplesMin > audioMixBufSize(&pHstStrmOut->MixBuf))475 || cSamplesMin > AudioMixBufSize(&pHstStrmOut->MixBuf)) 476 476 { 477 477 LogFlowFunc(("Error: cSamplesMin=%RU32\n", cSamplesMin));
Note:
See TracChangeset
for help on using the changeset viewer.