Microsoft DirectX 9.0

CBasePin::CheckMediaType

The CheckMediaType method determines if the pin accepts a specific media type.

Syntax

virtual HRESULT CheckMediaType(
    const CMediaType *pmt
) PURE;

Parameters

pmt

Pointer to a CMediaType object that contains the proposed media type.

Return Value

Returns S_OK if the proposed media type is acceptable. Otherwise, returns S_FALSE or an error code.

Remarks

The derived class must override this pure virtual method.

See Also