Struct VariantInfo
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Represents properties for the variant information.
public struct VariantInfo
Constructors
View SourceVariantInfo(int, int, int)
Initializes a new instance of the VariantInfo struct.
Declaration
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 SourceBandwidth
Gets or sets the maximum limit of the available bandwidth. (-1 = no limit).
Declaration
public int Bandwidth { readonly get; set; }
Property Value
Type | Description |
---|---|
int |
Height
Gets or sets the maximum limit of the available height. (-1 = no limit).
Declaration
public int Height { readonly get; set; }
Property Value
Type | Description |
---|---|
int |
Width
Gets or sets the maximum limit of the available width. (-1 = no limit).
Declaration
public int Width { readonly get; set; }
Property Value
Type | Description |
---|---|
int |