Changeset 89073 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- May 17, 2021 7:43:09 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144413
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r89072 r89073 1071 1071 if (pcbRead) 1072 1072 { 1073 pWaveFile->offCur += *pcbRead;1073 pWaveFile->offCur += (uint32_t)*pcbRead; 1074 1074 if (cbBuf > *pcbRead) 1075 1075 rc = VINF_EOF; … … 1078 1078 } 1079 1079 else 1080 pWaveFile->offCur += cbBuf;1081 } 1082 return rc; 1083 } 1084 1080 pWaveFile->offCur += (uint32_t)cbBuf; 1081 } 1082 return rc; 1083 } 1084
Note:
See TracChangeset
for help on using the changeset viewer.