Changeset 98017 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 6, 2023 7:13:36 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixBuffer-Convert.cpp.h
r96407 r98017 61 61 while (idxDst-- > 0) 62 62 { 63 int 8_t idxSrc = pState->aidxChannelMap[idxDst];63 intptr_t idxSrc = pState->aidxChannelMap[idxDst]; 64 64 if (idxSrc >= 0) 65 65 pDst[idxDst] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[idxSrc]); … … 147 147 while (idxDst-- > 0) 148 148 { 149 int 8_t idxSrc = pState->aidxChannelMap[idxDst];149 intptr_t idxSrc = pState->aidxChannelMap[idxDst]; 150 150 if (idxSrc >= 0) 151 151 pi32Dst[idxDst] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[idxSrc]); … … 235 235 while (idxDst-- > 0) 236 236 { 237 int 8_t idxSrc = pState->aidxChannelMap[idxDst];237 intptr_t idxSrc = pState->aidxChannelMap[idxDst]; 238 238 if (idxSrc >= 0) 239 239 audioMixBufBlendSample(&pi32Dst[idxDst], RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[idxSrc]));
Note:
See TracChangeset
for help on using the changeset viewer.