-
Notifications
You must be signed in to change notification settings - Fork 20
EncodingType
huggins edited this page Apr 10, 2025
·
1 revision
This field shall specify the encoding Type of an encoding scheme. This field shall be represented by an 8-bit enumeration
enum class EEncodingType : uint8
{
Other,
EightBit_MuLaw,
CVSD,
ADPCM,
SixteenBitLinearPcmTwosComplement_BigEndian,
EightBitLinearPcmUnsigned,
VectorQuantization_Deprecated,
GsmFull_Rate = 8U,
GsmHalfRate,
SpeexNarrowBand,
SixteenBitLinearPcmTwosComplement_LittleEndian = 100U
};| Name | Description |
|---|---|
| Other | |
| EightBit_MuLaw | |
| CVSD | |
| ADPCM | |
| SixteenBitLinearPcmTwosComplement_BigEndian | |
| EightBitLinearPcmUnsigned | |
| VectorQuantization_Deprecated | |
| GsmFull_Rate | |
| GsmHalfRate | |
| SpeexNarrowBand | |
| SixteenBitLinearPcmTwosComplement_LittleEndian |