Share via


Override the GetMediaType Member Function (Windows Embedded CE 6.0)

1/6/2010

Pins provide enumerators to enable other objects to determine the pin's media type.

A pin provides the media type enumerator (the IEnumMediaTypes interface), which the pin base classes implement to call the GetMediaType member function in the pin class.

In the copy transform filter classes, each pin's CTransformOutputPin::GetMediaType member function simply calls the virtual CTransformFilter::GetMediaType member function in the filter class.

Your derived class must implement this member function to provide each supported media type in a list of media types.

In the transform-inplace classes, the enumerators form a transparent channel between the filters upstream and downstream from the transform filter.

If the transform filter's input pin must perform an enumeration, it obtains an enumerator from the downstream filter's input pin.

If the output pin must perform an enumeration, it obtains an enumerator from the upstream filter's output pin.

One consequence of this is that transform-inplace filters cannot connect to each other unless at least one of them is connected to something else, because neither of the transform-inplace filters can propose any media type for the connection.

See Also

Concepts

Override the Base Class Member Functions