Changeset 89448 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 1, 2021 11:35:12 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixBuffer.cpp
r89440 r89448 1109 1109 pState->cbDstFrame = PDMAudioPropsFrameSize(pProps); 1110 1110 audioMixBufInitChannelMap(pState->aidxChannelMap, &pMixBuf->Props, pProps); 1111 AssertReturn(cDstCh > 0 && cDstCh < PDMAUDIO_MAX_CHANNELS, VERR_OUT_OF_RANGE);1112 AssertReturn(cSrcCh > 0 && cSrcCh < PDMAUDIO_MAX_CHANNELS, VERR_OUT_OF_RANGE);1111 AssertReturn(cDstCh > 0 && cDstCh <= PDMAUDIO_MAX_CHANNELS, VERR_OUT_OF_RANGE); 1112 AssertReturn(cSrcCh > 0 && cSrcCh <= PDMAUDIO_MAX_CHANNELS, VERR_OUT_OF_RANGE); 1113 1113 1114 1114 if (PDMAudioPropsIsSigned(pProps))
Note:
See TracChangeset
for help on using the changeset viewer.