pub struct TruePeakPolicy {
pub oversample_factor: usize,
pub taps: usize,
pub max_work: u64,
}Expand description
Bandlimited true-peak interpolation policy.
Fields§
§oversample_factor: usizeInteger oversampling factor; BS.1770 measurement conventionally uses four.
taps: usizeEven Blackman-windowed sinc length.
max_work: u64Hard interpolation multiply-accumulate ceiling.
Trait Implementations§
Source§impl Clone for TruePeakPolicy
impl Clone for TruePeakPolicy
Source§fn clone(&self) -> TruePeakPolicy
fn clone(&self) -> TruePeakPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TruePeakPolicy
Source§impl Debug for TruePeakPolicy
impl Debug for TruePeakPolicy
Source§impl Default for TruePeakPolicy
impl Default for TruePeakPolicy
impl Eq for TruePeakPolicy
Source§impl PartialEq for TruePeakPolicy
impl PartialEq for TruePeakPolicy
impl StructuralPartialEq for TruePeakPolicy
Auto Trait Implementations§
impl Freeze for TruePeakPolicy
impl RefUnwindSafe for TruePeakPolicy
impl Send for TruePeakPolicy
impl Sync for TruePeakPolicy
impl Unpin for TruePeakPolicy
impl UnsafeUnpin for TruePeakPolicy
impl UnwindSafe for TruePeakPolicy
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