Changeset 62590 in vbox
- Timestamp:
- Jul 27, 2016 1:04:42 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109159
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r62580 r62590 645 645 /** Context of this stream. */ 646 646 PDMAUDIOSTREAMCTX enmCtx; 647 /** Timestamp (in ms) since last iteration. */ 648 uint64_t tsLastIterateMS; 647 649 /** Union for input/output specifics. */ 648 650 union -
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r62580 r62590 718 718 ("Writing to disabled guest output stream \"%s\" not possible\n", pGstStream->szName)); 719 719 720 pGstStream->Out.tsLastWriteMS = RTTimeMilliTS(); 721 720 722 if (!AudioMixBufFreeBytes(&pGstStream->MixBuf)) 721 723 { … … 898 900 899 901 } while (0); 902 903 /* Update timestamps. */ 904 pHstStream->tsLastIterateMS = RTTimeMilliTS(); 905 pGstStream->tsLastIterateMS = RTTimeMilliTS(); 900 906 901 907 if (RT_FAILURE(rc)) … … 1384 1390 AssertMsg(pHstStream->fStatus & PDMAUDIOSTRMSTS_FLAG_ENABLED, 1385 1391 ("Reading from disabled host input stream '%s' not possible\n", pHstStream->szName)); 1392 1393 pGstStream->In.tsLastReadMS = RTTimeMilliTS(); 1386 1394 1387 1395 Log3Func(("%s\n", pStream->szName));
Note:
See TracChangeset
for help on using the changeset viewer.