Struct VideoStreamProperties
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Represents properties for the video stream.
C#Copypublic struct VideoStreamProperties
Constructors
View Source
VideoStreamProperties(int, int, int, int)
Initializes a new instance of the VideoStreamProperties struct with the specified fps, bit rate, width, and height.
Declaration
C#Copypublic VideoStreamProperties(int fps, int bitRate, int width, int height)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fps | The fps of the stream. |
| int | bitRate | The bit rate of the stream. |
| int | width | The width of the stream. |
| int | height | The height of the stream. |
View Source
VideoStreamProperties(int, int, Size)
Initializes a new instance of the VideoStreamProperties struct with the specified fps, bit rate, and size.
Declaration
C#Copypublic VideoStreamProperties(int fps, int bitRate, Size size)
Parameters
| Type | Name | Description |
|---|---|---|
| int | fps | The fps of the stream. |
| int | bitRate | The bit rate of the stream. |
| Size | size | The size of the stream. |
Properties
Declaration
C#Copypublic int BitRate { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copypublic int Fps { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Declaration
C#Copypublic Size Size { get; set; }
Property Value
| Type | Description |
|---|---|
| Size |
Methods
Declaration
C#Copypublic override string ToString()
Returns
| Type | Description |
|---|---|
| string | A string that represents the current object. |
Overrides
System.ValueType.ToString()