• Home
  • Raw
  • Download

Lines Matching refs:dst_y

423                uint8_t* dst_y,  in I420Rotate()  argument
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
455 src_stride_v, dst_y, dst_stride_y, dst_u, dst_stride_u, 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()
491 uint8_t* dst_y, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_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()
549 uint8_t* dst_y, in NV12ToI420Rotate() argument
560 if (!src_y || !src_uv || width <= 0 || height == 0 || !dst_y || !dst_u || 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()