Home | History | Annotate | Download | only in source

Lines Matching refs:src_y

31 int I420Copy(const uint8* src_y, int src_stride_y,
38 if (!src_y || !src_u || !src_v ||
47 src_y = src_y + (height - 1) * src_stride_y;
58 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
126 int I422ToI420(const uint8* src_y, int src_stride_y,
133 if (!src_y || !src_u || !src_v ||
141 src_y = src_y + (height - 1) * src_stride_y;
164 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
206 int I444ToI420(const uint8* src_y, int src_stride_y,
213 if (!src_y || !src_u || !src_v ||
221 src_y = src_y + (height - 1) * src_stride_y;
249 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
284 int I411ToI420(const uint8* src_y, int src_stride_y,
291 if (!src_y || !src_u || !src_v ||
309 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
334 int I400ToI420(const uint8* src_y, int src_stride_y,
339 if (!src_y || !dst_y || !dst_u || !dst_v ||
346 src_y = src_y + (height - 1) * src_stride_y;
351 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
400 static int X420ToI420(const uint8* src_y,
407 if (!src_y || !src_uv ||
442 CopyPlane2(src_y, src_stride_y0, src_stride_y1, dst_y, dst_stride_y,
459 int NV12ToI420(const uint8* src_y, int src_stride_y,
465 return X420ToI420(src_y, src_stride_y, src_stride_y,
491 int Q420ToI420(const uint8* src_y, int src_stride_y,
497 if (!src_y || !src_yuy2 ||
527 IS_ALIGNED(src_y, 16) && IS_ALIGNED(src_stride_y, 16) &&
570 CopyRow(src_y, dst_y, width);
571 src_y += src_stride_y;
582 CopyRow(src_y, dst_y, width);
1961 const uint8* src_y = sample + (src_width * crop_y + crop_x);
1977 r = I420Rotate(src_y, src_width,
1988 const uint8* src_y = sample + src_width * crop_y + crop_x;
2003 r = I422ToI420(src_y, src_width,
2014 const uint8* src_y = sample + src_width * crop_y + crop_x;
2024 r = I444ToI420(src_y, src_width,
2035 const uint8* src_y = sample + src_width * crop_y + crop_x;
2040 r = I411ToI420(src_y, src_width,