Lines Matching refs:src_stride_y
418 int src_stride_y, in I420Rotate() argument
443 src_y = src_y + (height - 1) * src_stride_y; in I420Rotate()
446 src_stride_y = -src_stride_y; in I420Rotate()
454 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
458 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
465 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
472 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
486 int src_stride_y, in I444Rotate() argument
508 src_y = src_y + (height - 1) * src_stride_y; in I444Rotate()
511 src_stride_y = -src_stride_y; in I444Rotate()
519 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
524 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
529 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
534 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
546 int src_stride_y, in NV12ToI420Rotate() argument
569 src_y = src_y + (height - 1) * src_stride_y; in NV12ToI420Rotate()
571 src_stride_y = -src_stride_y; in NV12ToI420Rotate()
578 return NV12ToI420(src_y, src_stride_y, src_uv, src_stride_uv, dst_y, in NV12ToI420Rotate()
582 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
587 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
592 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()