Lines Matching refs:src_stride_y
1040 int I420Rotate(const uint8* src_y, int src_stride_y, in I420Rotate() argument
1059 src_y = src_y + (height - 1) * src_stride_y; in I420Rotate()
1062 src_stride_y = -src_stride_y; in I420Rotate()
1070 return I420Copy(src_y, src_stride_y, in I420Rotate()
1078 RotatePlane90(src_y, src_stride_y, in I420Rotate()
1089 RotatePlane270(src_y, src_stride_y, in I420Rotate()
1100 RotatePlane180(src_y, src_stride_y, in I420Rotate()
1117 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y, in NV12ToI420Rotate() argument
1135 src_y = src_y + (height - 1) * src_stride_y; in NV12ToI420Rotate()
1137 src_stride_y = -src_stride_y; in NV12ToI420Rotate()
1144 return NV12ToI420(src_y, src_stride_y, in NV12ToI420Rotate()
1151 RotatePlane90(src_y, src_stride_y, in NV12ToI420Rotate()
1160 RotatePlane270(src_y, src_stride_y, in NV12ToI420Rotate()
1169 RotatePlane180(src_y, src_stride_y, in NV12ToI420Rotate()