Home
last modified time | relevance | path

Searched refs:srcLine (Results 1 – 1 of 1) sorted by relevance

/hardware/intel/common/omx-components/videocodec/
DOMXVideoDecoderVP9HWR.cpp610 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y]; in FillRenderBuffer() local
613 memcpy(dst_y, srcLine, img->d_w); in FillRenderBuffer()
615 srcLine += img->stride[PLANE_Y]; in FillRenderBuffer()
619 srcLine = (const uint8_t *)img->planes[PLANE_U]; in FillRenderBuffer()
621 memcpy(dst_u, srcLine, img->d_w / 2); in FillRenderBuffer()
623 srcLine += img->stride[PLANE_U]; in FillRenderBuffer()
627 srcLine = (const uint8_t *)img->planes[PLANE_V]; in FillRenderBuffer()
629 memcpy(dst_v, srcLine, img->d_w / 2); in FillRenderBuffer()
631 srcLine += img->stride[PLANE_V]; in FillRenderBuffer()