Lines Matching refs:dst_argb
176 uint8* dst_argb, int pix) { in BayerRowBG() argument
181 dst_argb[0] = src_bayer0[0]; in BayerRowBG()
182 dst_argb[1] = AVG(g, src_bayer0[1]); in BayerRowBG()
183 dst_argb[2] = AVG(r, src_bayer1[1]); in BayerRowBG()
184 dst_argb[3] = 255U; in BayerRowBG()
185 dst_argb[4] = AVG(src_bayer0[0], src_bayer0[2]); in BayerRowBG()
186 dst_argb[5] = src_bayer0[1]; in BayerRowBG()
187 dst_argb[6] = src_bayer1[1]; in BayerRowBG()
188 dst_argb[7] = 255U; in BayerRowBG()
193 dst_argb += 8; in BayerRowBG()
195 dst_argb[0] = src_bayer0[0]; in BayerRowBG()
196 dst_argb[1] = AVG(g, src_bayer0[1]); in BayerRowBG()
197 dst_argb[2] = AVG(r, src_bayer1[1]); in BayerRowBG()
198 dst_argb[3] = 255U; in BayerRowBG()
200 dst_argb[4] = src_bayer0[0]; in BayerRowBG()
201 dst_argb[5] = src_bayer0[1]; in BayerRowBG()
202 dst_argb[6] = src_bayer1[1]; in BayerRowBG()
203 dst_argb[7] = 255U; in BayerRowBG()
208 uint8* dst_argb, int pix) { in BayerRowRG() argument
213 dst_argb[0] = AVG(b, src_bayer1[1]); in BayerRowRG()
214 dst_argb[1] = AVG(g, src_bayer0[1]); in BayerRowRG()
215 dst_argb[2] = src_bayer0[0]; in BayerRowRG()
216 dst_argb[3] = 255U; in BayerRowRG()
217 dst_argb[4] = src_bayer1[1]; in BayerRowRG()
218 dst_argb[5] = src_bayer0[1]; in BayerRowRG()
219 dst_argb[6] = AVG(src_bayer0[0], src_bayer0[2]); in BayerRowRG()
220 dst_argb[7] = 255U; in BayerRowRG()
225 dst_argb += 8; in BayerRowRG()
227 dst_argb[0] = AVG(b, src_bayer1[1]); in BayerRowRG()
228 dst_argb[1] = AVG(g, src_bayer0[1]); in BayerRowRG()
229 dst_argb[2] = src_bayer0[0]; in BayerRowRG()
230 dst_argb[3] = 255U; in BayerRowRG()
232 dst_argb[4] = src_bayer1[1]; in BayerRowRG()
233 dst_argb[5] = src_bayer0[1]; in BayerRowRG()
234 dst_argb[6] = src_bayer0[0]; in BayerRowRG()
235 dst_argb[7] = 255U; in BayerRowRG()
240 uint8* dst_argb, int pix) { in BayerRowGB() argument
244 dst_argb[0] = AVG(b, src_bayer0[1]); in BayerRowGB()
245 dst_argb[1] = src_bayer0[0]; in BayerRowGB()
246 dst_argb[2] = src_bayer1[0]; in BayerRowGB()
247 dst_argb[3] = 255U; in BayerRowGB()
248 dst_argb[4] = src_bayer0[1]; in BayerRowGB()
249 dst_argb[5] = AVG(src_bayer0[0], src_bayer0[2]); in BayerRowGB()
250 dst_argb[6] = AVG(src_bayer1[0], src_bayer1[2]); in BayerRowGB()
251 dst_argb[7] = 255U; in BayerRowGB()
255 dst_argb += 8; in BayerRowGB()
257 dst_argb[0] = AVG(b, src_bayer0[1]); in BayerRowGB()
258 dst_argb[1] = src_bayer0[0]; in BayerRowGB()
259 dst_argb[2] = src_bayer1[0]; in BayerRowGB()
260 dst_argb[3] = 255U; in BayerRowGB()
262 dst_argb[4] = src_bayer0[1]; in BayerRowGB()
263 dst_argb[5] = src_bayer0[0]; in BayerRowGB()
264 dst_argb[6] = src_bayer1[0]; in BayerRowGB()
265 dst_argb[7] = 255U; in BayerRowGB()
270 uint8* dst_argb, int pix) { in BayerRowGR() argument
274 dst_argb[0] = src_bayer1[0]; in BayerRowGR()
275 dst_argb[1] = src_bayer0[0]; in BayerRowGR()
276 dst_argb[2] = AVG(r, src_bayer0[1]); in BayerRowGR()
277 dst_argb[3] = 255U; in BayerRowGR()
278 dst_argb[4] = AVG(src_bayer1[0], src_bayer1[2]); in BayerRowGR()
279 dst_argb[5] = AVG(src_bayer0[0], src_bayer0[2]); in BayerRowGR()
280 dst_argb[6] = src_bayer0[1]; in BayerRowGR()
281 dst_argb[7] = 255U; in BayerRowGR()
285 dst_argb += 8; in BayerRowGR()
287 dst_argb[0] = src_bayer1[0]; in BayerRowGR()
288 dst_argb[1] = src_bayer0[0]; in BayerRowGR()
289 dst_argb[2] = AVG(r, src_bayer0[1]); in BayerRowGR()
290 dst_argb[3] = 255U; in BayerRowGR()
292 dst_argb[4] = src_bayer1[0]; in BayerRowGR()
293 dst_argb[5] = src_bayer0[0]; in BayerRowGR()
294 dst_argb[6] = src_bayer0[1]; in BayerRowGR()
295 dst_argb[7] = 255U; in BayerRowGR()
302 uint8* dst_argb, int dst_stride_argb, in BayerToARGB() argument
307 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in BayerToARGB()
311 uint8* dst_argb, int pix); in BayerToARGB()
313 uint8* dst_argb, int pix); in BayerToARGB()
336 BayerRow0(src_bayer, src_stride_bayer, dst_argb, width); in BayerToARGB()
338 dst_argb + dst_stride_argb, width); in BayerToARGB()
340 dst_argb += dst_stride_argb * 2; in BayerToARGB()
343 BayerRow0(src_bayer, -src_stride_bayer, dst_argb, width); in BayerToARGB()
371 uint8* dst_argb, int pix); in BayerToI420()
373 uint8* dst_argb, int pix); in BayerToI420()
538 uint8* dst_argb, int dst_stride_argb, \
541 dst_argb, dst_stride_argb, \