CDynamicOutputPin::SetConfigInfo
Microsoft DirectShow 9.0 |
CDynamicOutputPin::SetConfigInfo
The SetConfigInfo method specifies the IGraphConfig pointer and the stop event.
Syntax
void SetConfigInfo( IGraphConfig *pGraphConfig, HANDLE hStopEvent );
Parameters
pGraphConfig
Pointer to the IGraphConfig interface, or NULL.
hStopEvent
Handle to an event that is signaled when the filter stops, or NULL.
Remarks
The filter must call this method when it joins the filter graph. The filter graph manager supports IGraphConfig. For the hStopEvent parameter, create a manual-reset event. When the filter leaves the filter graph, call this method again with NULL for both parameters.
Requirements
** Header:** Declared in Amfilter.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also