Lines Matching refs:src_v
620 const uint8_t* src_v, in I420Rotate() argument
633 if ((!src_y && dst_y) || !src_u || !src_v || width <= 0 || height == 0 || in I420Rotate()
644 src_v = src_v + (halfheight - 1) * src_stride_v; in I420Rotate()
653 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
660 RotatePlane90(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I420Rotate()
667 RotatePlane270(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I420Rotate()
674 RotatePlane180(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I420Rotate()
690 const uint8_t* src_v, in I422Rotate() argument
704 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I422Rotate()
713 src_v = src_v + (height - 1) * src_stride_v; in I422Rotate()
724 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I422Rotate()
744 RotatePlane90(src_v, src_stride_v, dst_y, dst_stride_y, halfwidth, in I422Rotate()
761 RotatePlane270(src_v, src_stride_v, dst_y, dst_stride_y, halfwidth, in I422Rotate()
774 RotatePlane180(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I422Rotate()
788 const uint8_t* src_v, in I444Rotate() argument
799 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
809 src_v = src_v + (height - 1) * src_stride_v; in I444Rotate()
820 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
825 RotatePlane90(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
830 RotatePlane270(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
835 RotatePlane180(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
919 const uint8_t* src_v, in Android420ToI420Rotate() argument
932 const ptrdiff_t vu_off = src_v - src_u; in Android420ToI420Rotate()
935 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in Android420ToI420Rotate()
945 src_v = src_v + (halfheight - 1) * src_stride_v; in Android420ToI420Rotate()
960 RotatePlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight, in Android420ToI420Rotate()
967 SplitRotateUV(src_v, src_stride_v, dst_v, dst_stride_v, dst_u, dst_stride_u, in Android420ToI420Rotate()
981 SplitPixels(src_v, src_pixel_stride_uv, dst_v, halfwidth); in Android420ToI420Rotate()
983 src_v += src_stride_v; in Android420ToI420Rotate()
998 const uint16_t* src_v, in I010Rotate() argument
1011 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I010Rotate()
1020 src_v = src_v + (height - 1) * src_stride_v; in I010Rotate()
1029 return I010Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I010Rotate()
1036 RotatePlane90_16(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I010Rotate()
1044 RotatePlane270_16(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I010Rotate()
1052 RotatePlane180_16(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I010Rotate()
1068 const uint16_t* src_v, in I210Rotate() argument
1082 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I210Rotate()
1091 src_v = src_v + (height - 1) * src_stride_v; in I210Rotate()
1102 CopyPlane_16(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height); in I210Rotate()
1122 RotatePlane90_16(src_v, src_stride_v, dst_y, dst_stride_y, halfwidth, in I210Rotate()
1139 RotatePlane270_16(src_v, src_stride_v, dst_y, dst_stride_y, halfwidth, in I210Rotate()
1154 RotatePlane180_16(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, in I210Rotate()
1168 const uint16_t* src_v, in I410Rotate() argument
1179 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I410Rotate()
1188 src_v = src_v + (height - 1) * src_stride_v; in I410Rotate()
1199 CopyPlane_16(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I410Rotate()
1204 RotatePlane90_16(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I410Rotate()
1211 RotatePlane270_16(src_v, src_stride_v, dst_v, dst_stride_v, width, in I410Rotate()
1219 RotatePlane180_16(src_v, src_stride_v, dst_v, dst_stride_v, width, in I410Rotate()