CBaseRenderer::OnWaitStart
Microsoft DirectShow 9.0 |
CBaseRenderer::OnWaitStart
The OnWaitStart method is called when the filter starts waiting for a sample's presentation time.
Syntax
virtual void OnWaitStart(void);
Remarks
The CBaseRenderer::WaitForRenderTime method calls this method when it begins waiting for a sample's presentation time. This method does not do anything in the base class, but the derived class can override it.
If you are implementing quality control, you might override this method along with the CBaseRenderer::OnWaitEnd method. You can use these methods to track the filter's performance.
Requirements
** Header:** Declared in Renbase.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also