IFilterGraph::SetDefaultSyncSource
Microsoft DirectShow 9.0 |
IFilterGraph::SetDefaultSyncSource
The SetDefaultSyncSource method sets the reference clock to the default clock.
Syntax
HRESULT SetDefaultSyncSource(void);
Return Values
Returns an HRESULT value. Possible values include the following:
Value | Description |
S_OK | Success. |
VFW_E_NOT_STOPPED | The filter graph is not stopped. |
Remarks
This method instructs the Filter Graph Manager to choose a reference clock using its default algorithm. For more information about the algorithm that it uses, see Reference Clocks.
Usually you do not need to call this method, because the Filter Graph Manager automatically selects a clock. However, if you call IMediaFilter::SetSyncSource to override the clock, you can use SetDefaultSyncSource to restore the default clock.
This method fails if the filter graph is running or paused.
Requirements
Header: Declared in Strmif.h; include Dshow.h.
Library: Use Strmiids.lib.
See Also