CTransformFilter::EndOfStream

 
Microsoft DirectShow 9.0

CTransformFilter::EndOfStream

The EndOfStream method notifies the filter that no additional data is expected from the input pin.

Syntax

  virtual HRESULT EndOfStream(void);

Return Value

Returns S_OK or another HRESULT value.

Remarks

The input pin's CTransformInputPin::EndOfStream method calls this method. This method delivers the end-of-stream notification downstream. If the derived class uses a worker thread to deliver media samples, it should override this method and queue the end-of-stream notification.

Requirements

**  Header:** Declared in Transfrm.h; include Streams.h.

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

See Also