Function aom_decode::chroma::yuv_422

source ·
pub fn yuv_422<'a, T: Copy + 'a, YRowsIter, URowsIter, VRowsIter>(
    y: YRowsIter,
    u: URowsIter,
    v: VRowsIter
) -> impl Iterator<Item = YUV<T>> + 'awhere
    YRowsIter: Iterator<Item = &'a [T]> + 'a,
    URowsIter: Iterator<Item = &'a [T]> + 'a,
    VRowsIter: Iterator<Item = &'a [T]> + 'a,
Expand description

Iterator that combines planes of Y, U, V into YUV pixels, where U and V have half width

Uses nearest-neighbor scaling.