Lines Matching refs:imgBase
66 static status_t _ImageCopy(View &view, const MediaImage2 *img, ImagePixel *imgBase) { in _ImageCopy() argument
73 imgBase + img->mPlane[i].mOffset; in _ImageCopy()
120 status_t ImageCopy(uint8_t *imgBase, const MediaImage2 *img, const C2GraphicView &view) { in ImageCopy() argument
132 uint8_t* dst_y = imgBase + img->mPlane[0].mOffset; in ImageCopy()
133 uint8_t* dst_u = imgBase + img->mPlane[1].mOffset; in ImageCopy()
134 uint8_t* dst_v = imgBase + img->mPlane[2].mOffset; in ImageCopy()
152 return _ImageCopy<true>(view, img, imgBase); in ImageCopy()
155 status_t ImageCopy(C2GraphicView &view, const uint8_t *imgBase, const MediaImage2 *img) { in ImageCopy() argument
161 const uint8_t* src_y = imgBase + img->mPlane[0].mOffset; in ImageCopy()
162 const uint8_t* src_u = imgBase + img->mPlane[1].mOffset; in ImageCopy()
163 const uint8_t* src_v = imgBase + img->mPlane[2].mOffset; in ImageCopy()
187 return _ImageCopy<false>(view, img, imgBase); in ImageCopy()