Skip to main content

CeltMode

Struct CeltMode 

Source
pub struct CeltMode {
Show 17 fields pub fs: i32, pub overlap: usize, pub nb_ebands: usize, pub eff_ebands: usize, pub preemph: [f32; 4], pub e_bands: &'static [i16], pub max_lm: usize, pub nb_short_mdcts: usize, pub short_mdct_size: usize, pub nb_alloc_vectors: usize, pub alloc_vectors: &'static [u8], pub alloc_stride: usize, pub log_n: &'static [i16], pub window: &'static [f32], pub mdct: MdctLookup, pub cache: PulseCache, pub e_means: &'static [f32],
}

Fields§

§fs: i32§overlap: usize§nb_ebands: usize§eff_ebands: usize§preemph: [f32; 4]§e_bands: &'static [i16]§max_lm: usize§nb_short_mdcts: usize§short_mdct_size: usize§nb_alloc_vectors: usize§alloc_vectors: &'static [u8]§alloc_stride: usize§log_n: &'static [i16]§window: &'static [f32]§mdct: MdctLookup§cache: PulseCache§e_means: &'static [f32]

Implementations§

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.