Lines Matching refs:uint8

23 int BayerBGGRToI420(const uint8* src_bayer, int src_stride_bayer,
24 uint8* dst_y, int dst_stride_y,
25 uint8* dst_u, int dst_stride_u,
26 uint8* dst_v, int dst_stride_v,
30 int BayerGBRGToI420(const uint8* src_bayer, int src_stride_bayer,
31 uint8* dst_y, int dst_stride_y,
32 uint8* dst_u, int dst_stride_u,
33 uint8* dst_v, int dst_stride_v,
37 int BayerGRBGToI420(const uint8* src_bayer, int src_stride_bayer,
38 uint8* dst_y, int dst_stride_y,
39 uint8* dst_u, int dst_stride_u,
40 uint8* dst_v, int dst_stride_v,
44 int BayerRGGBToI420(const uint8* src_bayer, int src_stride_bayer,
45 uint8* dst_y, int dst_stride_y,
46 uint8* dst_u, int dst_stride_u,
47 uint8* dst_v, int dst_stride_v,
55 int BayerToI420(const uint8* src_bayer, int src_stride_bayer,
56 uint8* dst_y, int dst_stride_y,
57 uint8* dst_u, int dst_stride_u,
58 uint8* dst_v, int dst_stride_v,
64 int I420ToBayerBGGR(const uint8* src_y, int src_stride_y,
65 const uint8* src_u, int src_stride_u,
66 const uint8* src_v, int src_stride_v,
67 uint8* dst_frame, int dst_stride_frame,
71 int I420ToBayerGBRG(const uint8* src_y, int src_stride_y,
72 const uint8* src_u, int src_stride_u,
73 const uint8* src_v, int src_stride_v,
74 uint8* dst_frame, int dst_stride_frame,
78 int I420ToBayerGRBG(const uint8* src_y, int src_stride_y,
79 const uint8* src_u, int src_stride_u,
80 const uint8* src_v, int src_stride_v,
81 uint8* dst_frame, int dst_stride_frame,
85 int I420ToBayerRGGB(const uint8* src_y, int src_stride_y,
86 const uint8* src_u, int src_stride_u,
87 const uint8* src_v, int src_stride_v,
88 uint8* dst_frame, int dst_stride_frame,
96 int I420ToBayer(const uint8* src_y, int src_stride_y,
97 const uint8* src_u, int src_stride_u,
98 const uint8* src_v, int src_stride_v,
99 uint8* dst_frame, int dst_stride_frame,
105 int BayerBGGRToARGB(const uint8* src_bayer, int src_stride_bayer,
106 uint8* dst_argb, int dst_stride_argb,
110 int BayerGBRGToARGB(const uint8* src_bayer, int src_stride_bayer,
111 uint8* dst_argb, int dst_stride_argb,
115 int BayerGRBGToARGB(const uint8* src_bayer, int src_stride_bayer,
116 uint8* dst_argb, int dst_stride_argb,
120 int BayerRGGBToARGB(const uint8* src_bayer, int src_stride_bayer,
121 uint8* dst_argb, int dst_stride_argb,
128 int BayerToARGB(const uint8* src_bayer, int src_stride_bayer,
129 uint8* dst_argb, int dst_stride_argb,
135 int ARGBToBayerBGGR(const uint8* src_argb, int src_stride_argb,
136 uint8* dst_bayer, int dst_stride_bayer,
140 int ARGBToBayerGBRG(const uint8* src_argb, int src_stride_argb,
141 uint8* dst_bayer, int dst_stride_bayer,
145 int ARGBToBayerGRBG(const uint8* src_argb, int src_stride_argb,
146 uint8* dst_bayer, int dst_stride_bayer,
150 int ARGBToBayerRGGB(const uint8* src_argb, int src_stride_argb,
151 uint8* dst_bayer, int dst_stride_bayer,
158 int ARGBToBayer(const uint8* src_argb, int src_stride_argb,
159 uint8* dst_bayer, int dst_stride_bayer,