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.cpp134 uint8_t* dst_v = imgBase + img->mPlane[2].mOffset; in ImageCopy() local
140 dst_u, dst_stride_u, dst_v, dst_stride_v, view.crop().width, in ImageCopy()
169 uint8_t* dst_v = view.data()[2]; in ImageCopy() local
175 dst_u, dst_stride_u, dst_v, dst_stride_v, view.width(), in ImageCopy()