Changeset 73701 in vbox
- Timestamp:
- Aug 16, 2018 7:38:13 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
r73545 r73701 152 152 RT_BZERO(pvBuf, cbToClear); 153 153 } 154 else 154 else /* Unsigned formats. */ 155 155 { 156 156 switch (pPCMProps->cBytes) … … 165 165 { 166 166 uint16_t *p = (uint16_t *)pvBuf; 167 uint16_t s = 0x 8000;167 uint16_t s = 0x0080; 168 168 169 169 for (uint32_t i = 0; i < DrvAudioHlpBytesToFrames((uint32_t)cbToClear, pPCMProps); i++) … … 178 178 { 179 179 uint32_t *p = (uint32_t *)pvBuf; 180 uint32_t s = 0x 80000000;180 uint32_t s = 0x00000080; 181 181 182 182 for (uint32_t i = 0; i < DrvAudioHlpBytesToFrames((uint32_t)cbToClear, pPCMProps); i++)
Note:
See TracChangeset
for help on using the changeset viewer.