Searched refs:dst_stride_y (Results 1 – 2 of 2) sorted by relevance
/hardware/libhardware/modules/camera/3_4/arc/ |
D | image_processor.cpp | 56 int dst_stride_y, int dst_stride_uv); 302 int dst_stride_y, int dst_stride_uv) { in YU12ToYV12() argument 308 if (dst_stride_y < width || dst_stride_uv < width / 2) { in YU12ToYV12() 309 LOGF(ERROR) << "Y plane stride (" << dst_stride_y in YU12ToYV12() 318 uint8_t* u_dst = dst + dst_stride_y * height + dst_stride_uv * height / 2; in YU12ToYV12() 320 uint8_t* v_dst = dst + dst_stride_y * height; in YU12ToYV12() 323 dst_stride_y, u_dst, dst_stride_uv, v_dst, in YU12ToYV12()
|
/hardware/google/av/media/sfplugin/utils/ |
D | Codec2BufferUtils.cpp | 135 int32_t dst_stride_y = img->mPlane[0].mRowInc; in ImageCopy() local 139 if (!libyuv::NV12ToI420(src_y, src_stride_y, src_u, src_stride_u, dst_y, dst_stride_y, in ImageCopy() 146 dst_y, dst_stride_y, dst_u, dst_stride_u, view.width(), in ImageCopy() 170 int32_t dst_stride_y = view.layout().planes[0].rowInc; in ImageCopy() local 174 if (!libyuv::NV12ToI420(src_y, src_stride_y, src_u, src_stride_u, dst_y, dst_stride_y, in ImageCopy() 181 dst_y, dst_stride_y, dst_u, dst_stride_u, view.width(), in ImageCopy()
|