• Home
  • Raw
  • Download

Lines Matching refs:src_y

417 int I420Rotate(const uint8_t* src_y,  in I420Rotate()  argument
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
443 src_y = src_y + (height - 1) * 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()
485 int I444Rotate(const uint8_t* src_y, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
508 src_y = src_y + (height - 1) * 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()
545 int NV12ToI420Rotate(const uint8_t* src_y, in NV12ToI420Rotate() argument
560 if (!src_y || !src_uv || width <= 0 || height == 0 || !dst_y || !dst_u || in NV12ToI420Rotate()
569 src_y = src_y + (height - 1) * 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()