pub struct MdctContext {
pub n: usize,
pub twiddle_cos: Vec<i32>,
pub twiddle_sin: Vec<i32>,
}Expand description
Pre-computed twiddle factors for MDCT in 2.30 fixed-point
Fields§
§n: usizeBlock size (N)
twiddle_cos: Vec<i32>Twiddle factors (cos) in 2.30 fixed-point
twiddle_sin: Vec<i32>Twiddle factors (sin) in 2.30 fixed-point
Implementations§
Trait Implementations§
Source§impl Clone for MdctContext
impl Clone for MdctContext
Source§fn clone(&self) -> MdctContext
fn clone(&self) -> MdctContext
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MdctContext
impl RefUnwindSafe for MdctContext
impl Send for MdctContext
impl Sync for MdctContext
impl Unpin for MdctContext
impl UnwindSafe for MdctContext
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)