pub struct Limiter {
pub threshold_db: f32,
pub release_ms: f32,
pub lookahead_samples: usize,
pub gain_reduction_db: f32,
/* private fields */
}Expand description
Brickwall peak limiter with true-peak (4x oversampling) and lookahead.
Fields§
§threshold_db: f32§release_ms: f32§lookahead_samples: usize§gain_reduction_db: f32Current gain reduction in dB.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Limiter
impl RefUnwindSafe for Limiter
impl Send for Limiter
impl Sync for Limiter
impl Unpin for Limiter
impl UnsafeUnpin for Limiter
impl UnwindSafe for Limiter
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