Struct VideoStreamProperties

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.MediaPlayer.dll
API Level:
3

Represents properties for the video stream.

C#
Copy
public struct VideoStreamProperties

Constructors

View Source

VideoStreamProperties(Int32, Int32, Int32, Int32)

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
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 Source

VideoStreamProperties(Int32, Int32, 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
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 Source

BitRate

Gets or sets the bit rate.

Declaration
C#
Copy
public int BitRate { get; set; }
Property Value
Type Description
Int32
API Level: 3
View Source

Fps

Gets or sets the fps.

Declaration
C#
Copy
public int Fps { get; set; }
Property Value
Type Description
Int32
API Level: 3
View Source

Size

Gets or sets the size.

Declaration
C#
Copy
public Size Size { get; set; }
Property Value
Type Description
Size
API Level: 3

Methods

View Source

ToString()

Returns a string that represents the current object.

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

A string that represents the current object.

Overrides
System.ValueType.ToString()
API Level: 3