KSPROCESSPIN_INDEXENTRY structure (ks.h)

The KSPROCESSPIN_INDEXENTRY structure is used in Filter-Centric Processing to bring together all of the input and output pins in one context.

Syntax

typedef struct _KSPROCESSPIN_INDEXENTRY {
  PKSPROCESSPIN *Pins;
  ULONG         Count;
} KSPROCESSPIN_INDEXENTRY, *PKSPROCESSPIN_INDEXENTRY;

Members

Pins

A pointer to an array of KSPROCESSPIN structures. The array contains a listing of the instances of the given pin.

Count

This member specifies the number of process pins in Pins that are currently instantiated.

Remarks

This pointer table is indexed in order of the pins described in the pin descriptor table for the corresponding filter. The first pin described in the descriptor table has the first entry in the index table passed to the processing dispatch. See the processing dispatch in KSPIN_DISPATCH.

For more information, see Filter-Centric Processing.

Requirements

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

See also

KSPROCESSPIN