pub struct DecodedCu {
pub x: usize,
pub y: usize,
pub size: usize,
pub pred_mode: HevcPredMode,
pub recon_luma: Vec<i16>,
}Expand description
Result of decoding one coding unit leaf.
Fields§
§x: usize§y: usize§size: usize§pred_mode: HevcPredMode§recon_luma: Vec<i16>Reconstructed luma samples (row-major, size × size).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecodedCu
impl RefUnwindSafe for DecodedCu
impl Send for DecodedCu
impl Sync for DecodedCu
impl Unpin for DecodedCu
impl UnsafeUnpin for DecodedCu
impl UnwindSafe for DecodedCu
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