Lines Matching refs:src_y
616 int I420Rotate(const uint8_t* src_y, in I420Rotate() argument
633 if ((!src_y && dst_y) || !src_u || !src_v || width <= 0 || height == 0 || in I420Rotate()
642 src_y = src_y + (height - 1) * src_stride_y; in I420Rotate()
653 return I420Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I420Rotate()
657 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
664 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
671 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
686 int I422Rotate(const uint8_t* src_y, in I422Rotate() argument
704 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I422Rotate()
711 src_y = src_y + (height - 1) * src_stride_y; in I422Rotate()
722 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Rotate()
751 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Rotate()
768 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Rotate()
771 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Rotate()
784 int I444Rotate(const uint8_t* src_y, in I444Rotate() argument
799 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
807 src_y = src_y + (height - 1) * src_stride_y; in I444Rotate()
818 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
823 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
828 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
833 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
844 int NV12ToI420Rotate(const uint8_t* src_y, in NV12ToI420Rotate() argument
859 if (!src_y || !src_uv || width <= 0 || height == 0 || !dst_y || !dst_u || in NV12ToI420Rotate()
868 src_y = src_y + (height - 1) * src_stride_y; in NV12ToI420Rotate()
877 return NV12ToI420(src_y, src_stride_y, src_uv, src_stride_uv, dst_y, in NV12ToI420Rotate()
881 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
886 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
891 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
915 int Android420ToI420Rotate(const uint8_t* src_y, in Android420ToI420Rotate() argument
935 if ((!src_y && dst_y) || !src_u || !src_v || !dst_u || !dst_v || width <= 0 || in Android420ToI420Rotate()
943 src_y = src_y + (height - 1) * src_stride_y; in Android420ToI420Rotate()
952 RotatePlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height, in Android420ToI420Rotate()
994 int I010Rotate(const uint16_t* src_y, in I010Rotate() argument
1011 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I010Rotate()
1018 src_y = src_y + (height - 1) * src_stride_y; in I010Rotate()
1029 return I010Copy(src_y, src_stride_y, src_u, src_stride_u, src_v, in I010Rotate()
1033 RotatePlane90_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I010Rotate()
1040 RotatePlane270_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I010Rotate()
1048 RotatePlane180_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I010Rotate()
1064 int I210Rotate(const uint16_t* src_y, in I210Rotate() argument
1082 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I210Rotate()
1089 src_y = src_y + (height - 1) * src_stride_y; in I210Rotate()
1100 CopyPlane_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I210Rotate()
1129 RotatePlane90_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I210Rotate()
1146 RotatePlane270_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I210Rotate()
1150 RotatePlane180_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I210Rotate()
1164 int I410Rotate(const uint16_t* src_y, in I410Rotate() argument
1179 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I410Rotate()
1186 src_y = src_y + (height - 1) * src_stride_y; in I410Rotate()
1197 CopyPlane_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I410Rotate()
1202 RotatePlane90_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I410Rotate()
1207 RotatePlane270_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I410Rotate()
1215 RotatePlane180_16(src_y, src_stride_y, dst_y, dst_stride_y, width, in I410Rotate()