Struct VideoStreamProperties

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll

Represents properties for the video stream.

C#
Copy
public 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#
Copy
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.

View Source

VideoStreamProperties(int, int, Size)

Initializes a new instance of the VideoStreamProperties struct with the specified fps, bit rate, and size.

Declaration
C#
Copy
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 Source

BitRate

Gets or sets the bit rate.

Declaration
C#
Copy
public int BitRate { get; set; }
Property Value
Type Description
int
View Source

Fps

Gets or sets the fps.

Declaration
C#
Copy
public int Fps { get; set; }
Property Value
Type Description
int
View Source

Size

Gets or sets the size.

Declaration
C#
Copy
public Size Size { get; set; }
Property Value
Type Description
Size

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
System.ValueType.ToString()