// ksmedia.h
typedef struct {
KSDATAFORMAT DataFormat;
KSDSOUND_BUFFERDESC BufferDesc;
} KSDATAFORMAT_DSOUND, *PKSDATAFORMAT_DSOUND;
View the official Windows Driver Kit DDI referenceNo description available.
The KSDATAFORMAT_DSOUND structure provides detailed information about a DirectSound audio stream.
DataFormatSpecifies the stream's data format. This member is a structure of type KSDATAFORMAT.
BufferDescDescribes the DirectSound buffer. This member is a structure of type KSDSOUND_BUFFERDESC.
In response to an input DataRange parameter that specifies a DirectSound format (see example in DirectSound Stream Data Range), the IMiniport::DataRangeIntersection method checks to see if the specified pin supports a compatible DirectSound format. If so, the method outputs a KSDATAFORMAT_DSOUND structure (see example in DirectSound Stream Data Format) to the buffer that its ResultantFormat parameter points to.
IMiniport::DataRangeIntersection