IFilterGraph::ConnectDirect (Compact 2013)

3/26/2014

This method connects the two pins directly (without intervening filters).

Syntax

HRESULT ConnectDirect(
  IPin* ppinOut,
  IPin* ppinIn,
  const AM_MEDIA_TYPE* pmt
);

Parameters

  • ppinOut
    [in] output pin.
  • ppinIn
    [in] input pin.
  • pmt
    [in] Media type to use for the connection (optional; that is, can be NULL).

Return Value

Returns an HRESULT value that depends on the implementation. HRESULT can be one of the following standard constants, or other values not listed.

Value

Description

E_FAIL

Failure.

E_POINTER

Null pointer argument.

E_INVALIDARG

Invalid argument.

E_NOTIMPL

Method is not supported.

S_OK or NOERROR

Success.

Requirements

Header

dshow.h

Library

Strmiids.lib

See Also

Reference

IFilterGraph Interface