Struct AudioStreamProperties
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Represents properties for the audio stream.
C#
Copy
public struct AudioStreamProperties
Constructors
View Source
AudioStreamProperties(int, int, int)
Initializes a new instance of the AudioStreamProperties struct with the specified sample rate, channels, and bit rate.
Declaration
C#
Copy
public AudioStreamProperties(int sampleRate, int channels, int bitRate)
Parameters
Type | Name | Description |
---|---|---|
int | sampleRate | The sample rate of the stream. |
int | channels | The number of channels of the stream. |
int | bitRate | The bit rate of the stream. |
Properties
Declaration
C#
Copy
public int BitRate { readonly get; set; }
Property Value
Type | Description |
---|---|
int | The audio bit rate(Hz). |
Declaration
C#
Copy
public int Channels { readonly get; set; }
Property Value
Type | Description |
---|---|
int |
Declaration
C#
Copy
public int SampleRate { readonly get; set; }
Property Value
Type | Description |
---|---|
int | The audio sample rate(Hz). |
Methods
Declaration
C#
Copy
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
System.ValueType.ToString()