CMSPCallMultiGraph::Init method (mspcall.h)

The Init method is called by the MSP address object (in the method CreateMSPCall) to initialize the MSP call object. The CMSPCallMultiGraph implementation initializes its members using the passed-in information. It calls MSPAddressAddRef on the MSP address object. Derived MSPs will want to override this method and call it in the overridden method; the overridden method should create the default streams based on the passed-in media types.

Syntax

HRESULT Init(
  CMSPAddress *pMSPAddress,
  MSP_HANDLE  htCall,
  DWORD       dwReserved,
  DWORD       dwMediaType
);

Parameters

pMSPAddress

Pointer to CMSPAddress for call being initialized.

htCall

The MSP's handle for the call being initialized

dwReserved

Reserved parameter.

dwMediaType

Media type or types of call.

Return value

None

Requirements

Requirement Value
Target Platform Windows
Header mspcall.h

See also

CMSPCallMultiGraph