Lines Matching refs:src_stride_u
420 int src_stride_u, in I420Rotate() argument
444 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Rotate()
447 src_stride_u = -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()
488 int src_stride_u, in I444Rotate() argument
509 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
512 src_stride_u = -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()