Changeset 89551 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Jun 8, 2021 1:25:04 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144973
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioDSound.cpp
r89510 r89551 2448 2448 if (cbWritten) 2449 2449 { 2450 uint64_t const msPrev = pStreamDS->msLastTransfer; 2450 uint64_t const msPrev = pStreamDS->msLastTransfer; RT_NOREF(msPrev); 2451 2451 pStreamDS->Out.cbLastTransferred = cbWritten; 2452 2452 pStreamDS->msLastTransfer = RTTimeMilliTS(); … … 2603 2603 if (cbRead) 2604 2604 { 2605 uint64_t const msPrev = pStreamDS->msLastTransfer; 2605 uint64_t const msPrev = pStreamDS->msLastTransfer; RT_NOREF(msPrev); 2606 2606 pStreamDS->msLastTransfer = RTTimeMilliTS(); 2607 2607 LogFlowFunc(("cbRead=%RU32, msLastTransfer=%RU64 msNow=%RU64 cMsDelta=%RU64 {%s}\n", -
trunk/src/VBox/Devices/Audio/DrvHostAudioOss.cpp
r89519 r89551 967 967 968 968 /** 969 * Chardriver registration record.969 * OSS driver registration record. 970 970 */ 971 971 const PDMDRVREG g_DrvHostOSSAudio = -
trunk/src/VBox/Devices/Audio/DrvHostAudioWasApi.cpp
r89510 r89551 2602 2602 * Done. 2603 2603 */ 2604 uint64_t const msPrev = pStreamWas->msLastTransfer; 2604 uint64_t const msPrev = pStreamWas->msLastTransfer; RT_NOREF(msPrev); 2605 2605 if (cbWritten) 2606 2606 pStreamWas->msLastTransfer = msNow; … … 2798 2798 * Done. 2799 2799 */ 2800 uint64_t const msPrev = pStreamWas->msLastTransfer; 2800 uint64_t const msPrev = pStreamWas->msLastTransfer; RT_NOREF(msPrev); 2801 2801 uint64_t const msNow = RTTimeMilliTS(); 2802 2802 if (cbRead)
Note:
See TracChangeset
for help on using the changeset viewer.