[][src]Function aom_decode::chroma::yuv_444

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

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