Changeset 88170 in vbox for trunk/src/VBox/Devices/Audio/DevHDA.h
- Timestamp:
- Mar 18, 2021 1:38:31 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143321
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.h
r88164 r88170 31 31 #include "HDAStream.h" 32 32 #include "HDAStreamMap.h" 33 #include "HDAStreamPeriod.h"34 33 35 34 #ifdef DEBUG_andy … … 119 118 /** Current IRQ level. */ 120 119 uint8_t u8IRQL; 121 #ifdef VBOX_STRICT122 /** Wall clock (WALCLK) stale count.123 * This indicates the number of set wall clock values which did not actually124 * move the counter forward (stale). */125 uint8_t u8WalClkStaleCnt;126 #else127 uint8_t bPadding1;128 #endif129 uint8_t bPadding2;130 120 /** The device timer Hz rate. Defaults to HDA_TIMER_HZ_DEFAULT. */ 131 121 uint16_t uTimerHz; … … 139 129 * The actual buffer size in bytes will depend on the actual stream configuration. */ 140 130 uint16_t cbCircBufOutMs; 141 uint16_t au16Padding3[3]; 142 /** Last updated wall clock (WALCLK) counter. */ 143 uint64_t u64WalClk; 131 /** The start time of the wall clock (WALCLK), measured on the virtual sync clock. */ 132 uint64_t tsWalClkStart; 144 133 /** The CORB buffer. */ 145 134 uint32_t au32CorbBuf[HDA_CORB_SIZE];
Note:
See TracChangeset
for help on using the changeset viewer.