Struct VariantInfo

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll
API Level:
5

Represents properties for the variant information.

C#
Copy
public struct VariantInfo

Constructors

View Source

VariantInfo(Int32, Int32, Int32)

Initializes a new instance of the VariantInfo struct.

Declaration
C#
Copy
public VariantInfo(int bandwidth, int width = -1, int height = -1)
Parameters
Type Name Description
System.Int32 bandwidth

The bandwidth of the stream can be supportable, it must be set. (deafult: -1)

System.Int32 width

The width of the stream, this is optional parameter. (deafult: -1)

System.Int32 height

The height of the stream, this is optional parameter. (deafult: -1)

API Level: 5

Properties

View Source

Bandwidth

Gets or sets the maximum limit of the available bandwidth. (-1 = no limit).

Declaration
C#
Copy
public int Bandwidth { get; set; }
Property Value
Type Description
System.Int32
API Level: 5
View Source

Height

Gets or sets the maximum limit of the available height. (-1 = no limit).

Declaration
C#
Copy
public int Height { get; set; }
Property Value
Type Description
System.Int32
API Level: 5
View Source

Width

Gets or sets the maximum limit of the available width. (-1 = no limit).

Declaration
C#
Copy
public int Width { get; set; }
Property Value
Type Description
System.Int32
API Level: 5