Microsoft DirectX 9.0

CBaseRenderer::CheckMediaType

The CheckMediaType method determines if the filter 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 input pin calls this method from its own CBasePin::CheckMediaType method. The derived class must implement this method.

See Also