Searched refs:src_u (Results 1 – 2 of 2) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/include/libyuv/ |
D | scale.h | 39 const uint8* src_u, int src_stride_u, 49 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/ |
D | scale.c | 3763 const uint8* src_u, int src_stride_u, in I420Scale() argument 3771 if (!src_y || !src_u || !src_v || src_width <= 0 || src_height == 0 || in I420Scale() 3781 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Scale() 3796 ScalePlane(src_u, src_stride_u, src_halfwidth, src_halfheight, in I420Scale() 3807 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v, in Scale() argument 3814 if (!src_y || !src_u || !src_v || src_width <= 0 || src_height == 0 || in Scale() 3824 src_u = src_u + (halfheight - 1) * src_stride_u; in Scale() 3840 ScalePlane(src_u, src_stride_u, src_halfwidth, src_halfheight, in Scale() 3867 const uint8* const src_u = src + src_width * src_height; in ScaleOffset() local 3875 return Scale(src_y, src_u, src_v, src_width, src_halfwidth, src_halfwidth, in ScaleOffset()
|