Struct cros_codecs::decoders::vp8::parser::MbLfAdjustments
source · [−]pub struct MbLfAdjustments {
pub loop_filter_adj_enable: bool,
pub mode_ref_lf_delta_update: bool,
pub ref_frame_delta: [i8; 4],
pub mb_mode_delta: [i8; 4],
}
Fields
loop_filter_adj_enable: bool
Indicates if the MB-level loop filter adjustment (based on the used reference frame and coding mode) is on for the current frame.
mode_ref_lf_delta_update: bool
Indicates if the delta values used in adjustment are updated in the current frame.
ref_frame_delta: [i8; 4]
Indicates the adjustment delta value corresponding to a certain used reference frame.
mb_mode_delta: [i8; 4]
Indicates the adjustment delta value corresponding to a certain MB prediction mode
Trait Implementations
sourceimpl Clone for MbLfAdjustments
impl Clone for MbLfAdjustments
sourcefn clone(&self) -> MbLfAdjustments
fn clone(&self) -> MbLfAdjustments
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MbLfAdjustments
impl Debug for MbLfAdjustments
sourceimpl Default for MbLfAdjustments
impl Default for MbLfAdjustments
sourcefn default() -> MbLfAdjustments
fn default() -> MbLfAdjustments
Returns the “default value” for a type. Read more
sourceimpl PartialEq<MbLfAdjustments> for MbLfAdjustments
impl PartialEq<MbLfAdjustments> for MbLfAdjustments
sourcefn eq(&self, other: &MbLfAdjustments) -> bool
fn eq(&self, other: &MbLfAdjustments) -> bool
impl Eq for MbLfAdjustments
impl StructuralEq for MbLfAdjustments
impl StructuralPartialEq for MbLfAdjustments
Auto Trait Implementations
impl RefUnwindSafe for MbLfAdjustments
impl Send for MbLfAdjustments
impl Sync for MbLfAdjustments
impl Unpin for MbLfAdjustments
impl UnwindSafe for MbLfAdjustments
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more