CBasePin::EndOfStream

 
Microsoft DirectShow 9.0

CBasePin::EndOfStream

The EndOfStream method notifies the pin that no additional data is expected. This method implements the IPin::EndOfStream method. Call this method only on input pins.

Syntax

  HRESULT EndOfStream(void);

Return Value

Returns S_OK.

Remarks

The filter should pass end-of-stream notifications downstream, to the input pins of connected filters. If the filter is a renderer, it should post an EC_COMPLETE event notification to the filter graph manager. For more information, see Data Flow in the Filter Graph.

In the base class, this method does nothing. Derived classes should override this method.

Requirements

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

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

See Also