Lines Matching refs:src_u
618 const uint8_t* src_u, in I420Rotate() argument
633 if ((!src_y && dst_y) || !src_u || !src_v || width <= 0 || height == 0 || in I420Rotate()
643 src_u = src_u + (halfheight - 1) * src_stride_u; in I420Rotate()
653 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
658 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
665 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
672 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I420Rotate()
688 const uint8_t* src_u, in I422Rotate() argument
704 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I422Rotate()
712 src_u = src_u + (height - 1) * src_stride_u; in I422Rotate()
723 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I422Rotate()
737 RotatePlane90(src_u, src_stride_u, dst_y, dst_stride_y, halfwidth, in I422Rotate()
754 RotatePlane270(src_u, src_stride_u, dst_y, dst_stride_y, halfwidth, in I422Rotate()
772 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I422Rotate()
786 const uint8_t* src_u, in I444Rotate() argument
799 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
808 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
819 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
824 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
829 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
834 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
901 static void SplitPixels(const uint8_t* src_u, in SplitPixels() argument
907 *dst_u = *src_u; in SplitPixels()
909 src_u += src_pixel_stride_uv; in SplitPixels()
917 const uint8_t* src_u, 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()
944 src_u = src_u + (halfheight - 1) * src_stride_u; in Android420ToI420Rotate()
958 RotatePlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight, in Android420ToI420Rotate()
973 SplitRotateUV(src_u, src_stride_u, dst_u, dst_stride_u, dst_v, dst_stride_v, in Android420ToI420Rotate()
980 SplitPixels(src_u, src_pixel_stride_uv, dst_u, halfwidth); in Android420ToI420Rotate()
982 src_u += src_stride_u; in Android420ToI420Rotate()
996 const uint16_t* src_u, in I010Rotate() argument
1011 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I010Rotate()
1019 src_u = src_u + (height - 1) * src_stride_u; in I010Rotate()
1029 return I010Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I010Rotate()
1034 RotatePlane90_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I010Rotate()
1042 RotatePlane270_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I010Rotate()
1050 RotatePlane180_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I010Rotate()
1066 const uint16_t* src_u, in I210Rotate() argument
1082 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I210Rotate()
1090 src_u = src_u + (height - 1) * src_stride_u; in I210Rotate()
1101 CopyPlane_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height); in I210Rotate()
1115 RotatePlane90_16(src_u, src_stride_u, dst_y, dst_stride_y, halfwidth, in I210Rotate()
1132 RotatePlane270_16(src_u, src_stride_u, dst_y, dst_stride_y, halfwidth, in I210Rotate()
1152 RotatePlane180_16(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, in I210Rotate()
1166 const uint16_t* src_u, in I410Rotate() argument
1179 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I410Rotate()
1187 src_u = src_u + (height - 1) * src_stride_u; in I410Rotate()
1198 CopyPlane_16(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I410Rotate()
1203 RotatePlane90_16(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I410Rotate()
1209 RotatePlane270_16(src_u, src_stride_u, dst_u, dst_stride_u, width, in I410Rotate()
1217 RotatePlane180_16(src_u, src_stride_u, dst_u, dst_stride_u, width, in I410Rotate()