pub enum Profile {
ConstrainedBaseline,
Baseline,
Main,
High,
Other(u8),
}Expand description
H.264 profile. The encoder targets Constrained Baseline; the rest are named for parsing/identification only.
Variants§
ConstrainedBaseline
Constrained Baseline (profile_idc = 66 with constraint_set1_flag).
Baseline
Baseline (profile_idc = 66).
Main
Main (profile_idc = 77).
High
High (profile_idc = 100).
Other(u8)
Any other profile_idc.
Implementations§
Trait Implementations§
impl Copy for Profile
impl Eq for Profile
impl StructuralPartialEq for Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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