Searched refs:dst_u (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/libstagefright/colorconversion/ |
D | SoftwareRenderer.cpp | 36 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/ |
D | Codec2BufferUtils.cpp | 133 uint8_t* dst_u = imgBase + img->mPlane[1].mOffset; in ImageCopy() local 140 dst_u, dst_stride_u, dst_v, dst_stride_v, view.crop().width, in ImageCopy() 146 dst_y, dst_stride_y, dst_u, dst_stride_u, view.crop().width, in ImageCopy() 168 uint8_t* dst_u = view.data()[1]; in ImageCopy() local 175 dst_u, dst_stride_u, dst_v, dst_stride_v, view.width(), in ImageCopy() 181 dst_y, dst_stride_y, dst_u, dst_stride_u, view.width(), in ImageCopy()
|