Lines Matching refs:imgBase
69 static status_t _ImageCopy(View &view, const MediaImage2 *img, ImagePixel *imgBase) { in _ImageCopy() argument
76 imgBase + img->mPlane[i].mOffset; in _ImageCopy()
123 status_t ImageCopy(uint8_t *imgBase, const MediaImage2 *img, const C2GraphicView &view) { in ImageCopy() argument
125 || imgBase == nullptr in ImageCopy()
136 uint8_t* dst_y = imgBase + img->mPlane[0].mOffset; in ImageCopy()
137 uint8_t* dst_u = imgBase + img->mPlane[1].mOffset; in ImageCopy()
138 uint8_t* dst_v = imgBase + img->mPlane[2].mOffset; in ImageCopy()
205 return _ImageCopy<true>(view, img, imgBase); in ImageCopy()
208 status_t ImageCopy(C2GraphicView &view, const uint8_t *imgBase, const MediaImage2 *img) { in ImageCopy() argument
210 || imgBase == nullptr in ImageCopy()
215 const uint8_t* src_y = imgBase + img->mPlane[0].mOffset; in ImageCopy()
216 const uint8_t* src_u = imgBase + img->mPlane[1].mOffset; in ImageCopy()
217 const uint8_t* src_v = imgBase + img->mPlane[2].mOffset; in ImageCopy()
289 return _ImageCopy<false>(view, img, imgBase); in ImageCopy()