Microsoft Windows CE 3.0  

CBaseStreamControl::SetSyncSource

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.

Identifies the reference clock being used by the graph your filter is in.

void SetSyncSource(
IReferenceClock *
pRefClock
);

Parameters

pRefClock
Pointer to the IReferenceClockinterface.

Return Values

No return value.

Remarks

Filters with pins that use this class should ensure that they pass sync source information to this member function, as shown in the following example.

STDMETHODIMP
CMyFilter::SetSyncSource(IReferenceClock *pClock) {
m_pMyPin->SetSyncSource(pClock); return
CBaseFilter::SetSyncSource(pClock); }