IMPEG2PIDMap::UnmapPID

 
Microsoft DirectShow 9.0

IMPEG2PIDMap::UnmapPID

The UnmapPID method unmaps one or more PIDs.

Syntax

  HRESULT UnmapPID(
  ULONG culPID,
  ULONG* pulPID
);

Parameters

culPID

[in] Specifies the number of elements in the pulPID array.

pulPID

[in] Pointer to an array of size culPID, allocated by the caller. Each element in the array contains a PID to be unmapped

Return Value

Returns S_OK if successful. If the method fails, it returns an HRESULT error code.

Remarks

On output pins for audio and video streams, there will typically be only one PID mapped at any given time. On an output pin such as one delivering the PSI stream to the Transport Information Filter, there may be multiple PIDs mapped to a single pin. Use the IEnumPIDMap methods to determine which PIDs are mapped to the pin, and then fill in the pulPID array with those values.

Requirements

Header: Include Bdaiface.h.

Library: Use Strmiids.lib.

See Also