// ks.h
KSDDKAPI PMDL KsStreamPointerGetMdl(
[in] PKSSTREAM_POINTER StreamPointer
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsStreamPointerGetMdl function returns the MDL associated with the frame referenced by StreamPointer.
StreamPointer [in]A pointer to the KSSTREAM_POINTER structure that references the frame for which to return the associated MDL.
Returns either a pointer to the memory descriptor list (MDL) describing the frame referenced by StreamPointer or returns NULL. A NULL return value usually indicates that the given stream pointer was not locked at call-time.
The stream pointer must be locked in order for KsStreamPointerGetMdl to execute successfully.
Also see Stream Pointers.