Changeset 62328 in vbox
- Timestamp:
- Jul 19, 2016 2:58:22 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108864
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmaudioifs.h
r62176 r62328 27 27 #define ___VBox_vmm_pdmaudioifs_h 28 28 29 #include <VBox/types.h>30 29 #include <iprt/circbuf.h> 31 30 #include <iprt/critsect.h> 32 31 #include <iprt/list.h> 32 33 #include <VBox/types.h> 34 #ifdef VBOX_WITH_STATISTICS 35 # include <VBox/vmm/stam.h> 36 #endif 33 37 34 38 #ifdef VBOX_WITH_AUDIO_50 … … 557 561 typedef struct PDMAUDIOSTREAMIN 558 562 { 563 /** Timestamp (in ms) since last read. */ 564 uint64_t tsLastReadMS; 565 #ifdef VBOX_WITH_STATISTICS 566 STAMCOUNTER StatBytesElapsed; 567 STAMCOUNTER StatBytesTotalRead; 568 STAMCOUNTER StatSamplesCaptured; 569 #endif 559 570 } PDMAUDIOSTREAMIN, *PPDMAUDIOSTREAMIN; 560 571 … … 565 576 typedef struct PDMAUDIOSTREAMOUT 566 577 { 578 /** Timestamp (in ms) since last write. */ 579 uint64_t tsLastWriteMS; 580 #ifdef VBOX_WITH_STATISTICS 581 STAMCOUNTER StatBytesElapsed; 582 STAMCOUNTER StatBytesTotalWritten; 583 STAMCOUNTER StatSamplesPlayed; 584 #endif 567 585 } PDMAUDIOSTREAMOUT, *PPDMAUDIOSTREAMOUT; 568 586
Note:
See TracChangeset
for help on using the changeset viewer.