// ks.h
PKSFILTER KsFilterGetNextSiblingFilter(
[in] PKSFILTER Filter
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsFilterGetNextSiblingFilter function returns the next instantiated filter belonging to the parent filter factory of Filter.
Filter [in]A pointer to the KSFILTER structure for which to find the next sibling filter.
KsFilterGetNextSiblingFilter returns a pointer to the next sibling KSFILTER structure of Filter. If no such instantiated filter exists, it returns NULL.
This call is an inline function call to KsGetNextSibling. Note that the object hierarchy is only guaranteed stable while the appropriate mutex is held, in this case the device mutex. For more information, see Mutexes in AVStream.
KsFilterFactoryGetFirstChildFilter