pub struct CdefParams {
pub cdef_damping: u32,
pub cdef_bits: u32,
pub cdef_y_pri_strength: [u32; 8],
pub cdef_y_sec_strength: [u32; 8],
pub cdef_uv_pri_strength: [u32; 8],
pub cdef_uv_sec_strength: [u32; 8],
}
Fields§
§cdef_damping: u32
Controls the amount of damping in the deringing filter.
cdef_bits: u32
Specifies the number of bits needed to specify which CDEF filter to apply.
cdef_y_pri_strength: [u32; 8]
Specify the strength of the primary filter.
cdef_y_sec_strength: [u32; 8]
Specify the strength of the secondary filter.
cdef_uv_pri_strength: [u32; 8]
Specify the strength of the primary filter.
cdef_uv_sec_strength: [u32; 8]
Specify the strength of the secondary filter.
Trait Implementations§
Source§impl Clone for CdefParams
impl Clone for CdefParams
Source§fn clone(&self) -> CdefParams
fn clone(&self) -> CdefParams
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 CdefParams
impl Debug for CdefParams
Source§impl Default for CdefParams
impl Default for CdefParams
Source§fn default() -> CdefParams
fn default() -> CdefParams
Returns the “default value” for a type. Read more
Source§impl PartialEq for CdefParams
impl PartialEq for CdefParams
impl Eq for CdefParams
impl StructuralPartialEq for CdefParams
Auto Trait Implementations§
impl Freeze for CdefParams
impl RefUnwindSafe for CdefParams
impl Send for CdefParams
impl Sync for CdefParams
impl Unpin for CdefParams
impl UnwindSafe for CdefParams
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