KSM_BDA_PIN_PAIR structure (bdamedia.h)

The KSM_BDA_PIN_PAIR structure describes a method request to retrieve the pin pairing structure (BDA_PIN_PAIRING) between a pair of input and output pins.

Syntax

typedef struct _KSM_BDA_PIN_PAIR {
  KSMETHOD Method;
  union {
    ULONG InputPinId;
    ULONG InputPinType;
  };
  union {
    ULONG OutputPinId;
    ULONG OutputPinType;
  };
} KSM_BDA_PIN_PAIR, *PKSM_BDA_PIN_PAIR;

Members

Method

KSMETHOD structure that describes a method and request type of a method request.

InputPinId

Member of the union in KSM_BDA_PIN_PAIR that contains the identifier (ID) of an input pin of the filter.

InputPinType

Member of the union in KSM_BDA_PIN_PAIR that contains the value that specifies the input pin type.

OutputPinId

Member of the union in KSM_BDA_PIN_PAIR that contains the identifier (ID) of an output pin of the filter.

OutputPinType

Member of the union in KSM_BDA_PIN_PAIR that contains the value that specifies the output pin type.

Requirements

Requirement Value
Header bdamedia.h (include Bdamedia.h)

See also

BDA_PIN_PAIRING

KSMETHOD