Searched refs:src_y (Results 1 – 3 of 3) sorted by relevance
/frameworks/av/media/libstagefright/colorconversion/ |
D | ColorConverter.cpp | 885 const uint8_t *src_y = (const uint8_t *)src.mBits + y_offset; in convertYUV420PlanarUseLibYUV() local 894 libyuv::I420ToRGB565Matrix(src_y, in convertYUV420PlanarUseLibYUV() 911 libyuv::I420ToARGBMatrix(src_y, in convertYUV420PlanarUseLibYUV() 927 libyuv::I420ToARGBMatrix(src_y, in convertYUV420PlanarUseLibYUV() 963 const uint8_t *src_y = (const uint8_t *)src.mBits + y_offset; in convertYUV420SemiPlanarUseLibYUV() local 980 libyuv::NV12ToRGB565Matrix(src_y, in convertYUV420SemiPlanarUseLibYUV() 999 libyuvFunc(src_y, in convertYUV420SemiPlanarUseLibYUV() 1022 libyuvFunc(src_y, in convertYUV420SemiPlanarUseLibYUV() 1066 (void *src_y, void *src_u, void *src_v, size_t x, in getReadFromChromaHorizSubsampled2Image8b() 1068 *y1 = ((uint8_t *)src_y)[x]; in getReadFromChromaHorizSubsampled2Image8b() [all …]
|
D | SoftwareRenderer.cpp | 304 const uint8_t *src_y = (const uint8_t *)data + mCropTop * mStride + mCropLeft; in render() local 312 memcpy(dst_y, src_y, mCropWidth); in render() 314 src_y += mStride; in render() 328 const uint8_t *src_y = (const uint8_t *)data + mCropTop * mStride + mCropLeft * 2; in render() local 337 dst_y[x] = (uint8_t)(((uint16_t *)src_y)[x] >> 2); in render() 340 src_y += mStride; in render() 357 const uint8_t *src_y = (const uint8_t *)data; in render() local 361 src_y += mCropLeft + mCropTop * mWidth; in render() 368 memcpy(dst_y, src_y, mCropWidth); in render() 370 src_y += mWidth; in render()
|
/frameworks/av/media/codec2/sfplugin/utils/ |
D | Codec2BufferUtils.cpp | 130 const uint8_t* src_y = view.data()[0]; in ImageCopy() local 148 libyuv::CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in ImageCopy() 153 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_u, src_stride_u, in ImageCopy() 159 if (!libyuv::NV12ToI420(src_y, src_stride_y, src_u, src_stride_u, dst_y, dst_stride_y, in ImageCopy() 167 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_v, src_stride_v, in ImageCopy() 173 libyuv::CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in ImageCopy() 178 if (!libyuv::NV21ToI420(src_y, src_stride_y, src_v, src_stride_v, dst_y, dst_stride_y, in ImageCopy() 186 if (!libyuv::I420ToNV12(src_y, src_stride_y, src_u, src_stride_u, src_v, src_stride_v, in ImageCopy() 192 if (!libyuv::I420ToNV21(src_y, src_stride_y, src_u, src_stride_u, src_v, src_stride_v, in ImageCopy() 198 libyuv::CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in ImageCopy() [all …]
|