Searched refs:src_stride_v (Results 1 – 1 of 1) sorted by relevance
/aosp12/frameworks/av/media/codec2/sfplugin/utils/ |
H A D | Codec2BufferUtils.cpp | 130 int32_t src_stride_v = view.layout().planes[2].rowInc; in ImageCopy() local 158 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_v, src_stride_v, in ImageCopy() 164 libyuv::CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height / 2); in ImageCopy() 167 if (!libyuv::NV21ToI420(src_y, src_stride_y, src_v, src_stride_v, 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() 186 libyuv::CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width / 2, height / 2); in ImageCopy() 202 int32_t src_stride_v = img->mPlane[2].mRowInc; in ImageCopy() local 229 if (!libyuv::NV21ToNV12(src_y, src_stride_y, src_v, src_stride_v, in ImageCopy() 235 libyuv::CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height / 2); in ImageCopy() [all …]
|