Lines Matching refs:src_u
419 const uint8_t* src_u, in I420Rotate() argument
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
444 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Rotate()
454 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
459 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
466 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
473 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
487 const uint8_t* src_u, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
509 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
520 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
525 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
530 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
535 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()