Home | History | Annotate | Download | only in source

Lines Matching refs:src_y

1040 int I420Rotate(const uint8* src_y, int src_stride_y,
1048 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 ||
1059 src_y = src_y + (height - 1) * src_stride_y;
1070 return I420Copy(src_y, src_stride_y,
1078 RotatePlane90(src_y, src_stride_y,
1089 RotatePlane270(src_y, src_stride_y,
1100 RotatePlane180(src_y, src_stride_y,
1117 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
1124 if (!src_y || !src_uv || width <= 0 || height == 0 ||
1135 src_y = src_y + (height - 1) * src_stride_y;
1144 return NV12ToI420(src_y, src_stride_y,
1151 RotatePlane90(src_y, src_stride_y,
1160 RotatePlane270(src_y, src_stride_y,
1169 RotatePlane180(src_y, src_stride_y,