pub enum BlockSize {
Long,
Short,
Start,
Stop,
}Expand description
MDCT block sizes
Variants§
Long
Long block (2048 samples) - good frequency resolution for stationary signals
Short
Short block (256 samples) - good time resolution for transients
Start
Start block - transition from long to short
Stop
Stop block - transition from short to long
Implementations§
Trait Implementations§
impl Copy for BlockSize
impl Eq for BlockSize
impl StructuralPartialEq for BlockSize
Auto Trait Implementations§
impl Freeze for BlockSize
impl RefUnwindSafe for BlockSize
impl Send for BlockSize
impl Sync for BlockSize
impl Unpin for BlockSize
impl UnwindSafe for BlockSize
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
Mutably borrows from an owned value. Read more