pub struct ConvolverConfig {
pub stereo: bool,
pub growth_exponent: u32,
pub block_0_size: usize,
}Expand description
Configuration for the ConvolverNode.
Fields§
§stereo: boolWhether the convolution should be performed in stereo.
growth_exponent: u32The exponent for partitioning the Impulse Response (IR). Controls how the IR is divided into blocks for processing.
block_0_size: usizeThe size of the first block (Block 0) in samples.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConvolverConfig
impl RefUnwindSafe for ConvolverConfig
impl Send for ConvolverConfig
impl Sync for ConvolverConfig
impl Unpin for ConvolverConfig
impl UnsafeUnpin for ConvolverConfig
impl UnwindSafe for ConvolverConfig
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