Home | History | Annotate | Download | only in source

Lines Matching defs:src_u

2921               const uint8* src_u, int src_stride_u,
2929 if (!src_y || !src_u || !src_v || src_width <= 0 || src_height == 0 ||
2938 src_u = src_u + (halfheight - 1) * src_stride_u;
2958 // should be the src_u plane. Detect this and reduce halfheight to match.
2961 (src_v > src_u) && (src_v < (src_u + uv_src_plane_size))) {
2974 ScalePlane(src_u, src_stride_u, src_halfwidth, src_halfheight,
2985 int Scale(const uint8* src_y, const uint8* src_u, const uint8* src_v,
2992 if (!src_y || !src_u || !src_v || src_width <= 0 || src_height == 0 ||
3001 src_u = src_u + (halfheight - 1) * src_stride_u;
3022 // should be the src_u plane. Detect this and reduce halfheight to match.
3025 (src_v > src_u) && (src_v < (src_u + uv_src_plane_size))) {
3038 ScalePlane(src_u, src_stride_u, src_halfwidth, src_halfheight,
3064 const uint8* src_u = src + src_width * src_height;
3072 return Scale(src_y, src_u, src_v, src_width, src_halfwidth, src_halfwidth,