pub struct NormalizationSpec {
pub target_lufs: f64,
pub max_true_peak_dbtp: f64,
pub max_abs_gain_db: f64,
}Expand description
Target and safety ceiling for transparent loudness normalization.
Fields§
§target_lufs: f64Requested integrated output loudness in LUFS.
max_true_peak_dbtp: f64Review ceiling in dBTP; it is reported, never enforced by hidden limiting.
max_abs_gain_db: f64Maximum absolute gain change the caller permits, in decibels.
Trait Implementations§
Source§impl Clone for NormalizationSpec
impl Clone for NormalizationSpec
Source§fn clone(&self) -> NormalizationSpec
fn clone(&self) -> NormalizationSpec
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 NormalizationSpec
Source§impl Debug for NormalizationSpec
impl Debug for NormalizationSpec
Source§impl PartialEq for NormalizationSpec
impl PartialEq for NormalizationSpec
impl StructuralPartialEq for NormalizationSpec
Auto Trait Implementations§
impl Freeze for NormalizationSpec
impl RefUnwindSafe for NormalizationSpec
impl Send for NormalizationSpec
impl Sync for NormalizationSpec
impl Unpin for NormalizationSpec
impl UnsafeUnpin for NormalizationSpec
impl UnwindSafe for NormalizationSpec
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