Microsoft Windows CE 3.0  

Override the GetMediaType Member Function

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Pins provide enumerators to enable other objects to determine the pin's media type. A pin provides the media type enumerator (the IEnumMediaTypesinterface), which the pin base classes implement to call the GetMediaTypemember function in the pin class. In the copy transform filter classes, each pin's CTransformOutputPin::GetMediaTypemember function simply calls the virtual CTransformFilter::GetMediaTypemember 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 can't 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.



 Last updated on Tuesday, May 18, 2004

© 2004 Microsoft Corporation. All rights reserved.