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,
}
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§
source§impl AudioFormat
impl AudioFormat
pub fn from_string(format: &str) -> AudioFormat
source§impl AudioFormat
impl AudioFormat
pub fn build_integer( sign: bool, endianness: AudioEndianness, width: i32, depth: i32, ) -> Self
pub fn to_str<'a>(self) -> &'a GStr
pub fn iter_raw() -> AudioFormatIterator ⓘ
Trait Implementations§
source§impl Clone for AudioFormat
impl Clone for AudioFormat
source§fn clone(&self) -> AudioFormat
fn clone(&self) -> AudioFormat
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AudioFormat
impl Debug for AudioFormat
source§impl Display for AudioFormat
impl Display for AudioFormat
source§impl From<AudioFormat> for AudioFormatInfo
impl From<AudioFormat> for AudioFormatInfo
source§fn from(f: AudioFormat) -> Self
fn from(f: AudioFormat) -> Self
source§impl From<AudioFormat> for Value
impl From<AudioFormat> for Value
source§fn from(v: AudioFormat) -> Self
fn from(v: AudioFormat) -> Self
source§impl FromStr for AudioFormat
impl FromStr for AudioFormat
source§impl<'a> FromValue<'a> for AudioFormat
impl<'a> FromValue<'a> for AudioFormat
§type Checker = GenericValueTypeChecker<AudioFormat>
type Checker = GenericValueTypeChecker<AudioFormat>
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moresource§impl HasParamSpec for AudioFormat
impl HasParamSpec for AudioFormat
type ParamSpec = ParamSpecEnum
§type SetValue = AudioFormat
type SetValue = AudioFormat
type BuilderFn = fn(_: &str, _: AudioFormat) -> ParamSpecEnumBuilder<'_, AudioFormat>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for AudioFormat
impl Hash for AudioFormat
source§impl Ord for AudioFormat
impl Ord for AudioFormat
source§impl PartialEq for AudioFormat
impl PartialEq for AudioFormat
source§impl PartialOrd for AudioFormat
impl PartialOrd for AudioFormat
source§impl StaticType for AudioFormat
impl StaticType for AudioFormat
source§fn static_type() -> Type
fn static_type() -> Type
Self
.source§impl ToValue for AudioFormat
impl ToValue for AudioFormat
source§impl ValueType for AudioFormat
impl ValueType for AudioFormat
§type Type = AudioFormat
type Type = AudioFormat
Type
from. Read moreimpl Copy for AudioFormat
impl Eq for AudioFormat
impl StructuralPartialEq for AudioFormat
Auto Trait Implementations§
impl Freeze for AudioFormat
impl RefUnwindSafe for AudioFormat
impl Send for AudioFormat
impl Sync for AudioFormat
impl Unpin for AudioFormat
impl UnwindSafe for AudioFormat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.