儲存庫 vbox 的更動 62590
圖例:
- 未更動
- 新增
- 刪除
-
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));
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器