[][src]Struct gstreamer_audio::AudioConverterConfig

pub struct AudioConverterConfig(_);

Implementations

impl AudioConverterConfig[src]

pub fn new() -> Self[src]

pub fn set_dither_method(&mut self, v: AudioDitherMethod)[src]

pub fn get_dither_method(&self) -> AudioDitherMethod[src]

pub fn set_noise_shaping_method(&mut self, v: AudioNoiseShapingMethod)[src]

pub fn get_noise_shaping_method(&self) -> AudioNoiseShapingMethod[src]

pub fn set_quantization(&mut self, v: u32)[src]

pub fn get_quantization(&self) -> u32[src]

pub fn set_resampler_method(&mut self, v: AudioResamplerMethod)[src]

This is supported on crate feature v1_10 only.

pub fn get_resampler_method(&self) -> AudioResamplerMethod[src]

This is supported on crate feature v1_10 only.

pub fn set_mix_matrix<T: AsRef<[f32]>>(&mut self, v: &[T])[src]

pub fn get_mix_matrix(&self) -> Vec<Vec<f32>>[src]

Trait Implementations

impl AsMut<StructureRef> for AudioConverterConfig[src]

impl AsRef<StructureRef> for AudioConverterConfig[src]

impl Clone for AudioConverterConfig[src]

impl Debug for AudioConverterConfig[src]

impl Default for AudioConverterConfig[src]

impl Deref for AudioConverterConfig[src]

type Target = StructureRef

The resulting type after dereferencing.

impl DerefMut for AudioConverterConfig[src]

impl Eq for AudioConverterConfig[src]

impl From<AudioConverterConfig> for Structure[src]

impl PartialEq<AudioConverterConfig> for AudioConverterConfig[src]

impl StructuralEq for AudioConverterConfig[src]

impl StructuralPartialEq for AudioConverterConfig[src]

impl<'a> TryFrom<&'a StructureRef> for AudioConverterConfig[src]

type Error = BoolError

The type returned in the event of a conversion error.

impl TryFrom<Structure> for AudioConverterConfig[src]

type Error = BoolError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for AudioConverterConfig

impl Send for AudioConverterConfig

impl Sync for AudioConverterConfig

impl Unpin for AudioConverterConfig

impl UnwindSafe for AudioConverterConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.