AVBlocks for .NET  1.13
Audio and Video Software Development Kit
MediaPin Class Reference

MediaPin represents an elementary media stream. More...

Properties

int Connection [get, set]
 Pin ID. More...
 
StreamInfo StreamInfo [get, set]
 Information about the elementary stream represented by this pin. More...
 
IDictionary< string, object > Params [get, set]
 A collection of pin parameters. More...
 

Detailed Description

MediaPin represents an elementary media stream.

MediaPin object can exist for audio, video or any other type of stream. However, AVBlocks can process only the audio and video streams.

MediaPin objects are used as inputs and outputs of Transcoder.

Property Documentation

int Connection
getset

Pin ID.

This should not be confused with the stream ID that is defined for certain stream types.

A Transcoder object matches and connects input and output pins by their ID. The Transcoder processes the connected pins and ignores the unconnected pins.

Pins are connected to one another according to the following rules:

  • Input pins with ID greater than 0 are connected to output pins with the same ID. In this case the Transcoder requires that a single unique pin ID is used by exactly one input and one output pin.
  • Input and output pins with ID equal to 0 are connected automatically based on their media type (audio or video).
  • Input and output pins with ID equal to -1 are ignored.
See Also
Transcoder

Transcoder Class

See Also
PinConnection

PinConnection constants

IDictionary<string,object> Params
getset

A collection of pin parameters.

These parameters affect the processing of the elementary stream represented by this pin. The default value of this property is null. A System.Collections.Generic.Dictionary instance can be used to set the parameters.

See Also
Param

Param

Information about the elementary stream represented by this pin.

The Transcoder ignores pins that are not audio or video elementary streams. If the value of StreamInfo.MediaType is MediaType.Audio, it is safe to cast this property to AudioStreamInfo. If the media type is MediaType.Video, it is safe to cast this property to VideoStreamInfo.