pub enum AacProfile {
Lc,
He,
Hev2,
}Expand description
AAC encoding profile.
Variants§
Lc
AAC-LC (Low Complexity) — widest compatibility. Default.
He
HE-AAC v1 — with Spectral Band Replication (SBR). Typically requires libfdk_aac.
Hev2
HE-AAC v2 — with SBR + Parametric Stereo (PS). Typically requires libfdk_aac.
Trait Implementations§
Source§impl Clone for AacProfile
impl Clone for AacProfile
Source§fn clone(&self) -> AacProfile
fn clone(&self) -> AacProfile
Returns a duplicate of the value. Read more
1.0.0 · 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 AacProfile
impl Debug for AacProfile
Source§impl Default for AacProfile
impl Default for AacProfile
Source§fn default() -> AacProfile
fn default() -> AacProfile
Returns the “default value” for a type. Read more
Source§impl PartialEq for AacProfile
impl PartialEq for AacProfile
impl Copy for AacProfile
impl Eq for AacProfile
impl StructuralPartialEq for AacProfile
Auto Trait Implementations§
impl Freeze for AacProfile
impl RefUnwindSafe for AacProfile
impl Send for AacProfile
impl Sync for AacProfile
impl Unpin for AacProfile
impl UnsafeUnpin for AacProfile
impl UnwindSafe for AacProfile
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