Override the GetMediaType Member Function (Windows CE 5.0)

Send Feedback

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.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.