Struct VideoStreamProperties
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
- API Level:
- 3
Represents properties for the video stream.
public struct VideoStreamProperties
Constructors
View SourceVideoStreamProperties(Int32, Int32, Int32, Int32)
Initializes a new instance of the VideoStreamProperties struct with the specified fps, bit rate, width, and height.
Declaration
public VideoStreamProperties(int fps, int bitRate, int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Int32 | fps | The fps of the stream. |
Int32 | bitRate | The bit rate of the stream. |
Int32 | width | The width of the stream. |
Int32 | height | The height of the stream. |
API Level: 3
View SourceVideoStreamProperties(Int32, Int32, Size)
Initializes a new instance of the VideoStreamProperties struct with the specified fps, bit rate, and size.
Declaration
public VideoStreamProperties(int fps, int bitRate, Size size)
Parameters
Type | Name | Description |
---|---|---|
Int32 | fps | The fps of the stream. |
Int32 | bitRate | The bit rate of the stream. |
Size | size | The size of the stream. |
API Level: 3
Properties
View SourceBitRate
Gets or sets the bit rate.
Declaration
public int BitRate { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceFps
Gets or sets the fps.
Declaration
public int Fps { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceSize
Gets or sets the size.
Declaration
public Size Size { get; set; }
Property Value
Type | Description |
---|---|
Size |
API Level: 3
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |