CBasePin::CheckMediaType

 
Microsoft DirectShow 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.

Requirements

**  Header:** Declared in Amfilter.h; include Streams.h.

**  Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).

See Also