Struct VideoStreamProperties

    Definition

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

    Represents properties for the video stream.

    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
    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
    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
    public int BitRate { readonly get; set; }
    Property Value
    Type Description
    int
    View Source

    Fps

    Gets or sets the fps.

    Declaration
    public int Fps { readonly get; set; }
    Property Value
    Type Description
    int
    View Source

    Size

    Gets or sets the size.

    Declaration
    public Size Size { readonly get; set; }
    Property Value
    Type Description
    Size

    Methods

    View Source

    ToString()

    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()
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX