Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
| Microsoft DirectShow 9.0 | 
CBaseOutputPin::DeliverNewSegment
The DeliverNewSegment method delivers a new-segment notification to the connected input pin.
Syntax
  virtual HRESULT DeliverNewSegment(
    REFERENCE_TIME tStart,
    REFERENCE_TIME tStop,
    double dRate
);
Parameters
tStart
Starting media position of the segment, in 100-nanosecond units.
tStop
End media position of the segment, in 100-nanosecond units.
dRate
Rate at which this segment should be processed, as a percentage of the original rate.
Return Value
Returns an HRESULT value. Possible values include those listed in the following table.
| Value | Description | 
| S_OK | Success. | 
| VFW_E_NOT_CONNECTED | Pin is not connected. | 
Remarks
This method calls the IPin::NewSegment method on the input pin.
Requirements
** Header:** Declared in Amfilter.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also