CPullPin::EndOfStream

 
Microsoft DirectShow 9.0

CPullPin::EndOfStream

The EndOfStream method is called after the object delivers the last sample. The derived class must implement this method.

Syntax

  virtual HRESULT EndOfStream(void) PURE;

Parameters

This method takes no parameters.

Return Values

Returns an HRESULT value. 

Remarks

Use this method to call IPin::EndOfStream on each downstream input pin that receives data from this object. If your filter's output pin(s) derive from CBaseOutputPin, call the CBaseOutputPin::DeliverEndOfStream method.

Requirements

**  Header:** Include Pullpin.h and Streams.h.

**  Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).

See Also