pub struct NormalizeReport {
pub measured_integrated_lufs: Option<f64>,
pub measured_true_peak_dbtp: Option<f64>,
pub target_lufs: f64,
pub true_peak_ceiling_dbtp: Option<f64>,
pub applied_gain_db: f64,
pub limited_by_true_peak: bool,
}Available on crate feature
normalize only.Expand description
Result of a normalisation pass.
Fields§
§measured_integrated_lufs: Option<f64>The measured integrated loudness before normalisation.
measured_true_peak_dbtp: Option<f64>The measured true peak before normalisation, in dBTP.
target_lufs: f64The target loudness, in LUFS.
true_peak_ceiling_dbtp: Option<f64>The true-peak ceiling in dBTP, or None if no ceiling was set.
applied_gain_db: f64The gain that was actually applied, in dB.
May differ from target_lufs - measured_integrated_lufs if
the true-peak ceiling reduced it.
limited_by_true_peak: booltrue if the gain was attenuated to honour the true-peak
ceiling.
Trait Implementations§
Source§impl Clone for NormalizeReport
impl Clone for NormalizeReport
Source§fn clone(&self) -> NormalizeReport
fn clone(&self) -> NormalizeReport
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 moreSource§impl Debug for NormalizeReport
impl Debug for NormalizeReport
Source§impl PartialEq for NormalizeReport
impl PartialEq for NormalizeReport
Source§fn eq(&self, other: &NormalizeReport) -> bool
fn eq(&self, other: &NormalizeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NormalizeReport
impl StructuralPartialEq for NormalizeReport
Auto Trait Implementations§
impl Freeze for NormalizeReport
impl RefUnwindSafe for NormalizeReport
impl Send for NormalizeReport
impl Sync for NormalizeReport
impl Unpin for NormalizeReport
impl UnsafeUnpin for NormalizeReport
impl UnwindSafe for NormalizeReport
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