// ks.h
typedef struct {
KSALLOCATOR_FRAMING Framing;
ULONG AllocatedFrames;
ULONG Reserved;
} KSSTREAMALLOCATOR_STATUS, *PKSSTREAMALLOCATOR_STATUS;
View the official Windows Driver Kit DDI referenceNo description available.
The KSSTREAMALLOCATOR_STATUS structure describes framing requirements and current number of allocated frames for a specific allocator.
FramingA KSALLOCATOR_FRAMING structure that contains the framing specified when the allocator was created.
AllocatedFramesContains the current number of allocated frames. This value changes on an extremely frequent basis.
ReservedReserved and set to zero.
Clients can query allocator status by providing a KSSTREAMALLOCATOR_STATUS structure in a KSPROPERTY_STREAMALLOCATOR_STATUS property request.
KSPROPERTY_STREAMALLOCATOR_STATUS