KsFilterGetNextSiblingFilter function (ks.h)

The KsFilterGetNextSiblingFilter function returns the next instantiated filter belonging to the parent filter factory of Filter.

Syntax

PKSFILTER KsFilterGetNextSiblingFilter(
  [in] PKSFILTER Filter
);

Parameters

[in] Filter

A pointer to the KSFILTER structure for which to find the next sibling filter.

Return value

KsFilterGetNextSiblingFilter returns a pointer to the next sibling KSFILTER structure of Filter. If no such instantiated filter exists, it returns NULL.

Remarks

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.

Requirements

Requirement Value
Minimum supported client Available in Microsoft Windows XP and later operating systems and DirectX 8.0 and later DirectX versions.
Target Platform Desktop
Header ks.h (include Ks.h)
IRQL PASSIVE_LEVEL

See also

KSFILTER

KsFilterFactoryGetFirstChildFilter

KsGetNextSibling