Home
last modified time | relevance | path

Searched refs:dst_u (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
41 *dst_u = (uint8_t *)ycbcr.cb + 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()
319 memcpy(dst_u, src_u, (mCropWidth + 1) / 2); in render()
324 dst_u += 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()
346 dst_u[x] = (uint8_t)(((uint16_t *)src_u)[x] >> 2); in render()
352 dst_u += ycbcr.cstride; in render()
[all …]
/frameworks/av/media/codec2/sfplugin/utils/
DCodec2BufferUtils.cpp137 uint8_t* dst_u = imgBase + img->mPlane[1].mOffset; in ImageCopy() local
149 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height / 2); in ImageCopy()
160 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
168 dst_y, dst_stride_y, dst_u, dst_stride_u, width, height)) { in ImageCopy()
179 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
187 dst_y, dst_stride_y, dst_u, dst_stride_u, width, height)) { in ImageCopy()
199 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width / 2, height / 2); in ImageCopy()
222 uint8_t* dst_u = view.data()[1]; in ImageCopy() local
233 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height / 2); in ImageCopy()
244 dst_u, dst_stride_u, dst_v, dst_stride_v, width, height)) { in ImageCopy()
[all …]