Struct VideoStreamProperties
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Represents properties for the video stream.
public struct VideoStreamProperties
Constructors
View SourceVideoStreamProperties(int, int, int, int)
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 |
|---|---|---|
| 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. |
VideoStreamProperties(int, int, 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 |
|---|---|---|
| int | fps | The fps of the stream. |
| int | bitRate | The bit rate of the stream. |
| Size | size | The size of the stream. |
Properties
View SourceBitRate
Gets or sets the bit rate.
Declaration
public int BitRate { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Fps
Gets or sets the fps.
Declaration
public int Fps { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Size
Gets or sets the size.
Declaration
public Size Size { get; set; }
Property Value
| Type | Description |
|---|---|
| Size |
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. |
Overrides
System.ValueType.ToString()