Home
last modified time | relevance | path

Searched refs:src_v (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/include/libyuv/
Dscale.h40 const uint8* src_v, int src_stride_v,
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/
Dscale.c3764 const uint8* src_v, int src_stride_v, in I420Scale() argument
3771 if (!src_y || !src_u || !src_v || src_width <= 0 || src_height == 0 || in I420Scale()
3782 src_v = src_v + (halfheight - 1) * src_stride_v; in I420Scale()
3799 ScalePlane(src_v, src_stride_v, 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()
3825 src_v = src_v + (halfheight - 1) * src_stride_v; in Scale()
3843 ScalePlane(src_v, src_stride_v, src_halfwidth, src_halfheight, in Scale()
3868 const uint8* const src_v = 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()