Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
| Microsoft DirectShow 9.0 | 
AM_GRAPH_CONFIG_RECONNECT_FLAGS Enumeration
Specifies how to reconnect filters when dynamically rebuilding the filter graph.
Syntax
  typedef enum _AM_GRAPH_CONFIG_RECONNECT_FLAGS {
    AM_GRAPH_CONFIG_RECONNECT_DIRECTCONNECT = 0x00000001,
    AM_GRAPH_CONFIG_RECONNECT_CACHE_REMOVED_FILTERS = 0x00000002,
    AM_GRAPH_CONFIG_RECONNECT_USE_ONLY_CACHED_FILTERS = 0x00000004
} AM_GRAPH_CONFIG_RECONNECT_FLAGS;
Members
AM_GRAPH_CONFIG_RECONNECT_DIRECTCONNECT
Do not insert additional filters into the graph while reconnecting, aside from any filter explicitly requested.
AM_GRAPH_CONFIG_RECONNECT_CACHE_REMOVED_FILTERS
Place filters removed from the graph into the filter cache.
AM_GRAPH_CONFIG_RECONNECT_USE_ONLY_CACHED_FILTERS
When inserting additional filters into the graph, use only filters currently in the filter cache.
Requirements
Header: Dshow.h
See Also