Enum AudioSampleFormat
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.dll
Specifies the audio sample formats.
public enum AudioSampleFormat
Fields
Name | Description |
---|---|
S16LE | Represents audio samples encoded as signed 16-bit integers in little-endian format. This format is commonly used in CD-quality audio, providing a good balance between audio fidelity and file size. |
S24LE | Represents audio samples encoded as signed 24-bit integers in little-endian format. This high-resolution format allows for greater dynamic range and fidelity, making it suitable for professional audio applications and high-quality sound recordings. |
S24PackedIn32LE | Represents audio samples encoded as signed 24-bit integers, packed into 32-bit containers in little-endian format. This format can be used for applications that require compatibility with 32-bit processing, allowing for easier manipulation of samples at the cost of additional space. |
U8 | Represents audio samples encoded as unsigned 8-bit integers. This format is often used in low-quality audio files and applications where bandwidth or storage space is limited. |