FrameFilterImpl.GetTransformOutputTypes Method

This method is called to request the possible output types.
Syntax:
public bool GetTransformOutputTypes( FrameType inType, ArrayList outTypes );
Parameter Description
inType

The FrameType of the frames passed in the input buffers.

outTypes

An ArrayList that has to be filled with FrameType objects that represent the frame types this transform filter may generate from the given inType.

Return Value:

Value Description
true The list with supported output types was filled.
false No transformation available.

Remarks:

The types should be ordered according to preference of the transform operation. The output type of this transform filter will be chosen based on the capabilities and input preference of the next filter and this filter.

See also: FrameFilterImpl, FrameType

<< FrameFilterImpl