The Renbase.h header file in the Microsoft® DirectShow® base classes provides a function to signal the end of a stream in CBaseRenderer or its derived classes.
EndOfStreamTimer Signals the end of the specified class's data stream.
Signals the end of the specified class's data stream.
Syntax
void CALLBACK EndOfStreamTimer(
UINT uID,
UINT uMsg,
DWORD dwUser,
DWORD dw1,
DWORD dw2
);
Parameters
- uID
- Integer value that specifies the timer value when the application called EndOfStreamTimer.
- uMsg
- Not used.
- dwUser
- DWORD value that contains the address of a class instance derived from CBaseRenderer.
- dw1
- Reserved.
- dw2
- Reserved.
Return Value
No return value.
Remarks
EndOfStreamTimer checks the m_EndOfStreamTimer data member of the class specified by dwUser. If m_EndOfStreamTimer is nonzero, EndOfStreamTimer sets it to zero and calls the class's SendEndOfStream method.
Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.