pub enum MbPrediction {
Intra4x4 {
prev_intra4x4_pred_mode_flag: [bool; 16],
rem_intra4x4_pred_mode: [u8; 16],
intra_chroma_pred_mode: u8,
},
Intra16x16 {
intra_chroma_pred_mode: u8,
},
IntraPCM {
pcm_sample_luma: [u8; 256],
pcm_sample_chroma: [u8; 128],
},
Inter(InterPrediction),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MbPrediction
impl RefUnwindSafe for MbPrediction
impl Send for MbPrediction
impl Sync for MbPrediction
impl Unpin for MbPrediction
impl UnsafeUnpin for MbPrediction
impl UnwindSafe for MbPrediction
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