Changeset 73421 in vbox for trunk/include/VBox
- Timestamp:
- Aug 1, 2018 12:46:06 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r73402 r73421 1006 1006 struct 1007 1007 { 1008 /** "Jitter value" between written and played back bytes. */ 1009 int64_t cbJitterWrittenPlayed; 1008 1010 /** File for writing stream writes. */ 1009 1011 PPDMAUDIOFILE pFileStreamWrite; … … 1040 1042 /** Context of this stream. */ 1041 1043 PDMAUDIOSTREAMCTX enmCtx; 1042 /** Timestamp (in ms) since last iteration. */1043 uint64_t tsLastIterated Ms;1044 /** Timestamp (in ms) since last playback / capture. */1045 uint64_t tsLastPlayedCaptured Ms;1046 /** Timestamp (in ms) since last read (input streams) or1044 /** Timestamp (in ns) since last iteration. */ 1045 uint64_t tsLastIteratedNs; 1046 /** Timestamp (in ns) since last playback / capture. */ 1047 uint64_t tsLastPlayedCapturedNs; 1048 /** Timestamp (in ns) since last read (input streams) or 1047 1049 * write (output streams). */ 1048 uint64_t tsLastReadWritten Ms;1050 uint64_t tsLastReadWrittenNs; 1049 1051 /** For output streams this indicates whether the stream has reached 1050 1052 * its playback threshold, e.g. is playing audio.
Note:
See TracChangeset
for help on using the changeset viewer.