This topic has not yet been rated - Rate this topic

CTransformFilter.CheckInputType method

The CheckInputType method checks whether a specified media type is acceptable for input.

Syntax


virtual HRESULT CheckInputType(
  const CMediaType *mtIn
) = 0;

Parameters

mtIn

Pointer to a CMediaType object that specifies the media type.

Return value

Returns an HRESULT value. Possible values include those shown in the following table.

Return codeDescription
S_OK

Media type is acceptable.

VFW_E_TYPE_NOT_ACCEPTED

Media type is not acceptable.

 

Remarks

The derived class must implement this method. Return S_OK if the proposed input format is acceptable, or an error code otherwise.

This method does not need to verify that the input format is compatible with the output format (if any). The input pin verifies that by calling the CheckTransform method.

Requirements

Header

Transfrm.h (include Streams.h)

Library

Strmbase.lib (retail builds);
Strmbasd.lib (debug builds)

See also

CTransformFilter Class

 

 

Send comments about this topic to Microsoft

Build date: 11/21/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.