pub struct ModeProbs {
pub intra_16x16_prob: [u8; 4],
pub intra_chroma_prob: [u8; 3],
}
Fields§
§intra_16x16_prob: [u8; 4]
Branch probabilities of the luma intra prediction mode decoding tree, kept live between frames.
intra_chroma_prob: [u8; 3]
Branch probabilities of the chroma intra prediction mode decoding tree, kept live between frames.
Trait Implementations§
impl Eq for ModeProbs
impl StructuralPartialEq for ModeProbs
Auto Trait Implementations§
impl Freeze for ModeProbs
impl RefUnwindSafe for ModeProbs
impl Send for ModeProbs
impl Sync for ModeProbs
impl Unpin for ModeProbs
impl UnwindSafe for ModeProbs
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