Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/colorconversion/
DSoftwareRenderer.cpp36 uint8_t **dst_y, uint8_t **dst_u, uint8_t **dst_v) { in initDstYUV() argument
40 *dst_v = (uint8_t *)ycbcr.cr + c_offset; in initDstYUV()
308 uint8_t *dst_y, *dst_u, *dst_v; in render() local
309 initDstYUV(ycbcr, mCropTop, mCropLeft, &dst_y, &dst_u, &dst_v); in render()
320 memcpy(dst_v, src_v, (mCropWidth + 1) / 2); in render()
325 dst_v += ycbcr.cstride; in render()
332 uint8_t *dst_y, *dst_u, *dst_v; in render() local
333 initDstYUV(ycbcr, mCropTop, mCropLeft, &dst_y, &dst_u, &dst_v); in render()
347 dst_v[x] = (uint8_t)(((uint16_t *)src_v)[x] >> 2); in render()
353 dst_v += ycbcr.cstride; in render()
[all …]
/frameworks/av/media/codec2/sfplugin/utils/
DCodec2BufferUtils.cpp138 uint8_t* dst_v = imgBase + img->mPlane[2].mOffset; in ImageCopy() local
154 dst_y, dst_stride_y, dst_v, dst_stride_v, width, height)) { in ImageCopy()
160 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
174 libyuv::CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height / 2); in ImageCopy()
179 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
193 dst_y, dst_stride_y, dst_v, dst_stride_v, width, height)) { in ImageCopy()
200 libyuv::CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width / 2, height / 2); in ImageCopy()
223 uint8_t* dst_v = view.data()[2]; in ImageCopy() local
238 dst_y, dst_stride_y, dst_v, dst_stride_v, width, height)) { in ImageCopy()
244 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
[all …]