IFilterGraph2::ReconnectEx (Compact 2013)

3/26/2014

This method specifies a pin and a media type to reconnect with.

Syntax

HRESULT ReconnectEx(
  IPin* ppin,
  const AM_MEDIA_TYPE* pmt
);

Parameters

  • ppin
    [in] Pin to disconnect and reconnect.
  • pmt
    [in] Media type to reconnect with. Specify NULL to use the existing media type.

Return Value

Returns an HRESULT value that depends on the implementation of the interface.

Remarks

Like the IFilterGraph::Reconnect method, the ReconnectEx method schedules a reconnection of the pin with the pin it is currently connected to. By specifying a media type when this method is called, the pins do not have to check what type they were originally connected with or enumerate possible new types. This makes the reconnection more likely to succeed.

Requirements

Header

dshow.h

Library

Strmiids.lib

See Also

Reference

IFilterGraph2 Interface
IFilterGraph::Reconnect