// ksmedia.h
typedef struct {
ULONG PacketNumber;
DWORD Flags;
ULONG64 PerformanceCounterValue;
BOOL MoreData;
} KSRTAUDIO_GETREADPACKET_INFO, *PKSRTAUDIO_GETREADPACKET_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The KSRTAUDIO_GETREADPACKET_INFO structure describes information for an audio packet.
PacketNumberReturns the packet number relative to the start of capture.
FlagsReserved for future use. Must be set to 0.
PerformanceCounterValueReturns the performance counter value corresponding to the sampling instance of the first sample in the packet.
MoreDataReturns TRUE if there is more data ready immediately. The OS may optionally immediately call this routine again after processing the packet to get the next packet information. If the driver returns FALSE, then capture is operating at real time.
KSPROPERTY_RTAUDIO_GETREADPACKET