pub struct DctGridToReversibleDwt53Job<'a> {
pub dequantized_blocks: &'a [[i16; 64]],
pub block_cols: usize,
pub block_rows: usize,
pub width: usize,
pub height: usize,
}Expand description
Direct DCT-grid to one-level reversible integer 5/3 projection job.
Fields§
§dequantized_blocks: &'a [[i16; 64]]Natural-order, dequantized 8x8 DCT blocks.
block_cols: usizeNumber of DCT block columns in dequantized_blocks.
block_rows: usizeNumber of DCT block rows in dequantized_blocks.
width: usizeLogical component width in samples.
height: usizeLogical component height in samples.
Trait Implementations§
Source§impl<'a> Clone for DctGridToReversibleDwt53Job<'a>
impl<'a> Clone for DctGridToReversibleDwt53Job<'a>
Source§fn clone(&self) -> DctGridToReversibleDwt53Job<'a>
fn clone(&self) -> DctGridToReversibleDwt53Job<'a>
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<'a> Copy for DctGridToReversibleDwt53Job<'a>
Auto Trait Implementations§
impl<'a> Freeze for DctGridToReversibleDwt53Job<'a>
impl<'a> RefUnwindSafe for DctGridToReversibleDwt53Job<'a>
impl<'a> Send for DctGridToReversibleDwt53Job<'a>
impl<'a> Sync for DctGridToReversibleDwt53Job<'a>
impl<'a> Unpin for DctGridToReversibleDwt53Job<'a>
impl<'a> UnsafeUnpin for DctGridToReversibleDwt53Job<'a>
impl<'a> UnwindSafe for DctGridToReversibleDwt53Job<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more