Enum aom_decode::RowsIters

source ·
pub enum RowsIters<'a> {
    YuvPlanes8 {
        y: RowsIter<'a, u8>,
        u: RowsIter<'a, u8>,
        v: RowsIter<'a, u8>,
        chroma_sampling: ChromaSampling,
    },
    Mono8(RowsIter<'a, u8>),
    YuvPlanes16 {
        y: RowsIter<'a, [u8; 2]>,
        u: RowsIter<'a, [u8; 2]>,
        v: RowsIter<'a, [u8; 2]>,
        chroma_sampling: ChromaSampling,
        depth: Depth,
    },
    Mono16(RowsIter<'a, [u8; 2]>, Depth),
}
Expand description

Iterators of frame’s pixels (YUV planes)

It’s an enum, because frames may have different pixel formats, and you get format-specific iterator in the enum

Variants§

§

YuvPlanes8

8-bit YUV (YCbCr, YCgCo, etc.). This is a collection of 3 iterators. Each may have a different size depending on chroma_sampling.

Consult matrix_coefficients() for meaning of these channels

Fields

§y: RowsIter<'a, u8>
§u: RowsIter<'a, u8>
§v: RowsIter<'a, u8>
§chroma_sampling: ChromaSampling
§

Mono8(RowsIter<'a, u8>)

8-bit grayscale

§

YuvPlanes16

10/12/16-bit color. Not subsampled. See depth field for actual range of pixels used.

It’s not u16, because it’s not guaranteed to be aligned. Use u16::from_ne_bytes() or ptr::read_unaligned.

Fields

§y: RowsIter<'a, [u8; 2]>
§u: RowsIter<'a, [u8; 2]>
§v: RowsIter<'a, [u8; 2]>
§chroma_sampling: ChromaSampling
§depth: Depth
§

Mono16(RowsIter<'a, [u8; 2]>, Depth)

10/12/16-bit grayscale. It’s not u16, because it’s not guaranteed to be aligned. Use u16::from_ne_bytes() or ptr::read_unaligned.

Auto Trait Implementations§

§

impl<'a> Freeze for RowsIters<'a>

§

impl<'a> RefUnwindSafe for RowsIters<'a>

§

impl<'a> !Send for RowsIters<'a>

§

impl<'a> !Sync for RowsIters<'a>

§

impl<'a> Unpin for RowsIters<'a>

§

impl<'a> UnwindSafe for RowsIters<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.