Changeset 73402 in vbox for trunk/include
- Timestamp:
- Jul 31, 2018 8:52:00 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124020
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r73370 r73402 973 973 typedef struct PDMAUDIOSTREAMIN 974 974 { 975 /** Timestamp (in ms) since last read. */976 uint64_t tsLastReadMS;977 975 #ifdef VBOX_WITH_STATISTICS 978 STAMCOUNTER StatBytesElapsed; 979 STAMCOUNTER StatBytesTotalRead; 980 STAMCOUNTER StatFramesCaptured; 976 struct 977 { 978 STAMCOUNTER BytesElapsed; 979 STAMCOUNTER BytesTotalRead; 980 STAMCOUNTER FramesCaptured; 981 } Stats; 981 982 #endif 982 983 struct … … 995 996 typedef struct PDMAUDIOSTREAMOUT 996 997 { 997 /** Timestamp (in ms) since last write. */998 uint64_t tsLastWriteMS;999 998 #ifdef VBOX_WITH_STATISTICS 1000 STAMCOUNTER StatBytesElapsed; 1001 STAMCOUNTER StatBytesTotalWritten; 1002 STAMCOUNTER StatFramesPlayed; 999 struct 1000 { 1001 STAMCOUNTER BytesElapsed; 1002 STAMCOUNTER BytesTotalWritten; 1003 STAMCOUNTER FramesPlayed; 1004 } Stats; 1003 1005 #endif 1004 1006 struct
Note:
See TracChangeset
for help on using the changeset viewer.