|
SampleFormat Enumeration
|
Specifies the format of each sample in a signal.
Namespace:
Accord.Audio
Assembly:
Accord.Audio (in Accord.Audio.dll) Version: 3.8.0
Syntax Public Enumeration SampleFormat
Members
| Member name | Value | Description |
---|
| Format8BitUnsigned | 0 |
Specifies the format is 8 bit, unsigned.
|
| Format8Bit | 1 |
Specifies the format is 8 bit, signed.
|
| Format16Bit | 2 |
Specifies the format is 16 bit, signed.
|
| Format32Bit | 3 |
Specifies the format is 32 bit, signed.
|
| Format32BitIeeeFloat | 4 |
Specifies the format is 32 bit, represented by
single-precision IEEE floating-point numbers.
|
| Format64BitIeeeFloat | 5 |
Specifies the format is 64 bit, represented by
double-precision IEEE floating-point numbers.
|
| Format128BitComplex | 6 |
Specifies the format is 128 bit, represented by
complex numbers with real and imaginary parts as
double-precision IEEE floating-point numbers.
|
See Also