Enum gstreamer_audio::AudioFormat
source · [−]#[non_exhaustive]
pub enum AudioFormat {
Show 32 variants
Unknown,
Encoded,
S8,
U8,
S16le,
S16be,
U16le,
U16be,
S2432le,
S2432be,
U2432le,
U2432be,
S32le,
S32be,
U32le,
U32be,
S24le,
S24be,
U24le,
U24be,
S20le,
S20be,
U20le,
U20be,
S18le,
S18be,
U18le,
U18be,
F32le,
F32be,
F64le,
F64be,
// some variants omitted
}
Expand description
Enum value describing the most common audio formats.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Unknown
unknown or unset audio format
Encoded
encoded audio format
S8
8 bits in 8 bits, signed
U8
8 bits in 8 bits, unsigned
S16le
16 bits in 16 bits, signed, little endian
S16be
16 bits in 16 bits, signed, big endian
U16le
16 bits in 16 bits, unsigned, little endian
U16be
16 bits in 16 bits, unsigned, big endian
S2432le
24 bits in 32 bits, signed, little endian
S2432be
24 bits in 32 bits, signed, big endian
U2432le
24 bits in 32 bits, unsigned, little endian
U2432be
24 bits in 32 bits, unsigned, big endian
S32le
32 bits in 32 bits, signed, little endian
S32be
32 bits in 32 bits, signed, big endian
U32le
32 bits in 32 bits, unsigned, little endian
U32be
32 bits in 32 bits, unsigned, big endian
S24le
24 bits in 24 bits, signed, little endian
S24be
24 bits in 24 bits, signed, big endian
U24le
24 bits in 24 bits, unsigned, little endian
U24be
24 bits in 24 bits, unsigned, big endian
S20le
20 bits in 24 bits, signed, little endian
S20be
20 bits in 24 bits, signed, big endian
U20le
20 bits in 24 bits, unsigned, little endian
U20be
20 bits in 24 bits, unsigned, big endian
S18le
18 bits in 24 bits, signed, little endian
S18be
18 bits in 24 bits, signed, big endian
U18le
18 bits in 24 bits, unsigned, little endian
U18be
18 bits in 24 bits, unsigned, big endian
F32le
32-bit floating point samples, little endian
F32be
32-bit floating point samples, big endian
F64le
64-bit floating point samples, little endian
F64be
64-bit floating point samples, big endian
Implementations
pub fn build_integer(
sign: bool,
endianness: AudioEndianness,
width: i32,
depth: i32
) -> Self
pub fn iter_raw() -> AudioFormatIteratorⓘNotable traits for AudioFormatIteratorimpl Iterator for AudioFormatIterator type Item = AudioFormat;
impl Iterator for AudioFormatIterator type Item = AudioFormat;
Trait Implementations
Performs the conversion.
type Checker = GenericValueTypeChecker<Self>
type Checker = GenericValueTypeChecker<Self>
Value type checker.
Get the contained value from a Value
. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for AudioFormat
impl Send for AudioFormat
impl Sync for AudioFormat
impl Unpin for AudioFormat
impl UnwindSafe for AudioFormat
Blanket Implementations
Mutably borrows from an owned value. Read more
Ensures that the type has been registered with the type system.
Returns a SendValue
clone of self
.