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. |
The IFilterGraphinterface is an abstraction representing a graph of filters. All filters in the graph share the same clock. They might or might not also be connected and stream data between them. This interface allows filters to be joined into a graph and operated as a unit. Unlike the IGraphBuilderinterface, this interface does not use heuristics to connect and build the filter graph.
When to Implement
This interface is implemented on the filter graph manager and is not intended for implementation by developers.
When to Use
Applications should not use this interface directly but instead should use the IGraphBuilderinterface, which inherits this interface.
Methods in Vtable Order
IUnknown methods | Description |
---|---|
QueryInterface | Returns pointers to supported interfaces. |
AddRef | Increments the reference count. |
Release | Decrements the reference count. |
IFilterGraph methods | Description |
AddFilter | Adds a filter to the graph and gives it a name. |
RemoveFilter | Removes a filter from the graph. |
EnumFilters | Provides an enumerator for all filters in the graph. |
FindFilterByName | Finds a filter that was added with a specified name. |
ConnectDirect | Connects the two IPinobjects directly (without intervening filters). |
Reconnect | Breaks the existing pin connection and reconnects it to the same pin. |
Disconnect | Disconnects this pin, if connected. |
SetDefaultSyncSource | Sets the default synchronization source (a clock). |