Struct VariantInfo
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
- API Level:
- 5
Represents properties for the variant information.
public struct VariantInfo
Constructors
View SourceVariantInfo(Int32, Int32, Int32)
Initializes a new instance of the VariantInfo struct.
Declaration
public VariantInfo(int bandwidth, int width = -1, int height = -1)
Parameters
Type | Name | Description |
---|---|---|
Int32 | bandwidth | The bandwidth of the stream can be supportable, it must be set. (deafult: -1) |
Int32 | width | The width of the stream, this is optional parameter. (deafult: -1) |
Int32 | height | The height of the stream, this is optional parameter. (deafult: -1) |
API Level: 5
Properties
View SourceBandwidth
Gets or sets the maximum limit of the available bandwidth. (-1 = no limit).
Declaration
public int Bandwidth { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 5
View SourceHeight
Gets or sets the maximum limit of the available height. (-1 = no limit).
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 5
View SourceWidth
Gets or sets the maximum limit of the available width. (-1 = no limit).
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
Int32 |