Function aom_decode::chroma::yuv_444

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

Iterator that combines equal-sized planes of Y, U, V into YUV pixels