IPinConnection::IsEndPin

 
Microsoft DirectShow 9.0

IPinConnection::IsEndPin

The IsEndPin method indicates whether a reconnection search should end at this pin.

Syntax

  HRESULT IsEndPin(void);

Return Value

Returns an HRESULT value. Possible values include the following.

Value Description
S_FALSE This pin is not a candidate for reconnection. (The reconnection search should not stop at this pin.)
S_OK This pin is a candidate for reconnection. (The reconnection search should stop at this pin.)

Remarks

A filter or application can call this method to determine whether the pin is a candidate for dynamic reconnection.

Generally, a sink filter or a filter that splits or merges data should return S_OK. Other filters (for example, simple transform filters) should return S_FALSE.

Requirements

Header: Declared in Strmif.h; include Dshow.h.

Library: Use Strmiids.lib.

See Also