Searched refs:src_u (Results 1 – 3 of 3) sorted by relevance
/aosp12/frameworks/av/media/libstagefright/colorconversion/ |
H A D | ColorConverter.cpp | 341 const uint8_t *src_u = in convertYUV420PlanarUseLibYUV() local 388 const uint8_t *src_u = in convertYUV420SemiPlanarUseLibYUV() local 633 const uint8_t *src_u = in convertYUV420Planar16ToY410() local 689 src_u += src.mStride / 2; in convertYUV420Planar16ToY410() 707 const uint8_t *src_u = in convertYUV420Planar16ToY410() local 832 const uint8_t *src_u = in convertQCOMYUV420SemiPlanar() local 879 src_u += src.mWidth; in convertQCOMYUV420SemiPlanar() 900 const uint8_t *src_u = in convertYUV420SemiPlanar() local 947 src_u += src.mStride; in convertYUV420SemiPlanar() 966 const uint8_t *src_u = in convertTIYUV420PackedSemiPlanar() local [all …]
|
H A D | SoftwareRenderer.cpp | 305 const uint8_t *src_u = (const uint8_t *)data + mStride * mHeight + mCropTop * mStride / 4; in render() local 306 const uint8_t *src_v = (const uint8_t *)src_u + mStride * mHeight / 4; in render() 319 memcpy(dst_u, src_u, (mCropWidth + 1) / 2); in render() 322 src_u += mStride / 2; in render() 329 const uint8_t *src_u = (const uint8_t *)data + mStride * mHeight + mCropTop * mStride / 4; in render() local 330 const uint8_t *src_v = (const uint8_t *)src_u + mStride * mHeight / 4; in render() 346 dst_u[x] = (uint8_t)(((uint16_t *)src_u)[x] >> 2); in render() 350 src_u += mStride / 2; in render()
|
/aosp12/frameworks/av/media/codec2/sfplugin/utils/ |
H A D | Codec2BufferUtils.cpp | 126 const uint8_t* src_u = view.data()[1]; in ImageCopy() local 143 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height / 2); in ImageCopy() 146 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_u, src_stride_u, in ImageCopy() 151 if (!libyuv::NV12ToI420(src_y, src_stride_y, src_u, src_stride_u, dst_y, dst_stride_y, in ImageCopy() 174 if (!libyuv::I420ToNV12(src_y, src_stride_y, src_u, src_stride_u, src_v, src_stride_v, in ImageCopy() 179 if (!libyuv::I420ToNV21(src_y, src_stride_y, src_u, src_stride_u, src_v, src_stride_v, in ImageCopy() 185 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width / 2, height / 2); in ImageCopy() 198 const uint8_t* src_u = imgBase + img->mPlane[1].mOffset; in ImageCopy() local 214 libyuv::CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height / 2); in ImageCopy() 217 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_u, src_stride_u, in ImageCopy() [all …]
|