Struct VariantInfo

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll

Represents properties for the variant information.

C#
Copy
public struct VariantInfo

Constructors

View Source

VariantInfo(int, int, int)

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
int bandwidth

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

int width

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

int height

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

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
int
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
int
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
int