Home | History | Annotate | Download | only in libyuv

Lines Matching full:uint8

36 int I420Rotate(const uint8* src_y, int src_stride_y,
37 const uint8* src_u, int src_stride_u,
38 const uint8* src_v, int src_stride_v,
39 uint8* dst_y, int dst_stride_y,
40 uint8* dst_u, int dst_stride_u,
41 uint8* dst_v, int dst_stride_v,
46 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
47 const uint8* src_uv, int src_stride_uv,
48 uint8* dst_y, int dst_stride_y,
49 uint8* dst_u, int dst_stride_u,
50 uint8* dst_v, int dst_stride_v,
55 void RotatePlane90(const uint8* src, int src_stride,
56 uint8* dst, int dst_stride,
60 void RotatePlane180(const uint8* src, int src_stride,
61 uint8* dst, int dst_stride,
65 void RotatePlane270(const uint8* src, int src_stride,
66 uint8* dst, int dst_stride,
70 void RotateUV90(const uint8* src, int src_stride,
71 uint8* dst_a, int dst_stride_a,
72 uint8* dst_b, int dst_stride_b,
80 void RotateUV180(const uint8* src, int src_stride,
81 uint8* dst_a, int dst_stride_a,
82 uint8* dst_b, int dst_stride_b,
86 void RotateUV270(const uint8* src, int src_stride,
87 uint8* dst_a, int dst_stride_a,
88 uint8* dst_b, int dst_stride_b,
95 void TransposePlane(const uint8* src, int src_stride,
96 uint8* dst, int dst_stride,
100 void TransposeUV(const uint8* src, int src_stride,
101 uint8* dst_a, int dst_stride_a,
102 uint8* dst_b, int dst_stride_b,