Struct rav1e::data::EncoderStats[][src]

pub struct EncoderStats {
    pub block_size_counts: [usize; 22],
    pub skip_block_count: usize,
    pub tx_type_counts: [usize; 16],
    pub luma_pred_mode_counts: ArrayVec<[usize; 34]>,
    pub chroma_pred_mode_counts: ArrayVec<[usize; 34]>,
}

Fields

block_size_counts: [usize; 22]

Stores count of pixels belonging to each block size in this frame

skip_block_count: usize

Stores count of pixels belonging to skip blocks in this frame

tx_type_counts: [usize; 16]

Stores count of pixels belonging to each transform type in this frame

luma_pred_mode_counts: ArrayVec<[usize; 34]>

Stores count of pixels belonging to each luma prediction mode in this frame

chroma_pred_mode_counts: ArrayVec<[usize; 34]>

Stores count of pixels belonging to each chroma prediction mode in this frame

Trait Implementations

impl Add<&'_ EncoderStats> for EncoderStats[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<&'_ EncoderStats> for EncoderStats[src]

impl Clone for EncoderStats[src]

impl Debug for EncoderStats[src]

impl Default for EncoderStats[src]

impl Eq for EncoderStats[src]

impl PartialEq<EncoderStats> for EncoderStats[src]

impl StructuralEq for EncoderStats[src]

impl StructuralPartialEq for EncoderStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.