KsFilterGetParentFilterFactory - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ks.h

PKSFILTERFACTORY KsFilterGetParentFilterFactory(
  [in] PKSFILTER Filter
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ks-ksfiltergetparentfilterfactory)

KsFilterGetParentFilterFactory function

Description

The KsFilterGetParentFilterFactory function returns the parent filter factory of the given filter.

Parameters

Filter [in]

A pointer to the KSFILTER structure for which to return the parent filter factory.

Return value

KsFilterGetParentFilterFactory returns a pointer to the parent KSFILTERFACTORY structure of Filter. This is the AVStream filter factory from which Filter was created.

Remarks

This call is an inline function call to KsGetParent. Note that the object hierarchy is only guaranteed stable while the appropriate mutex is held, in this case the device mutex. For more information about mutexes, see Mutexes in AVStream.

See also

KSFILTER

KSFILTERFACTORY

KsGetParent