FrameFilterImpl::checkInputType Method

Determines whether a specific input type is supported by the filter.
Syntax:
virtual bool checkInputType( const FrameTypeInfo& inpType ) const;
Parameter Description
inpType

Suggested input frame type.

Return Value:

Value Description
true The input type can be accepted.
false The filter can not handle the input type.

Remarks:

You can override this method when you need some filter-specific behavior.

The default implementation calls getSupportedInputTypes to check whether the transformation is possible.

See also: FrameFilterImpl, FrameTypeInfo

<< FrameFilterImpl