Lines Matching refs:uint8

150 typedef __declspec(align(16)) uint8 uvec8[16];
158 typedef uint8 __attribute__((vector_size(16))) uvec8;
166 typedef uint8 uvec8[16];
179 void I422ToARGBRow_NEON(const uint8* y_buf,
180 const uint8* u_buf,
181 const uint8* v_buf,
182 uint8* rgb_buf,
184 void I422ToBGRARow_NEON(const uint8* y_buf,
185 const uint8* u_buf,
186 const uint8* v_buf,
187 uint8* rgb_buf,
189 void I422ToABGRRow_NEON(const uint8* y_buf,
190 const uint8* u_buf,
191 const uint8* v_buf,
192 uint8* rgb_buf,
194 void I422ToRGBARow_NEON(const uint8* y_buf,
195 const uint8* u_buf,
196 const uint8* v_buf,
197 uint8* rgb_buf,
199 void I422ToRGB24Row_NEON(const uint8* y_buf,
200 const uint8* u_buf,
201 const uint8* v_buf,
202 uint8* rgb_buf,
204 void I422ToRAWRow_NEON(const uint8* y_buf,
205 const uint8* u_buf,
206 const uint8* v_buf,
207 uint8* rgb_buf,
209 void NV12ToARGBRow_NEON(const uint8* y_buf,
210 const uint8* uv_buf,
211 uint8* rgb_buf,
213 void NV21ToARGBRow_NEON(const uint8* y_buf,
214 const uint8* uv_buf,
215 uint8* rgb_buf,
218 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
219 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
220 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
221 void RGBAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
222 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
223 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
224 void ABGRToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
225 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
227 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
228 uint8* dst_u, uint8* dst_v, int width);
229 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
230 uint8* dst_u, uint8* dst_v, int width);
231 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
232 uint8* dst_u, uint8* dst_v, int width);
233 void RGBAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
234 uint8* dst_u, uint8* dst_v, int width);
235 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
236 uint8* dst_u, uint8* dst_v, int width);
237 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
238 uint8* dst_u, uint8* dst_v, int width);
239 void ABGRToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
240 uint8* dst_u, uint8* dst_v, int width);
241 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
242 uint8* dst_u, uint8* dst_v, int width);
244 void MirrorRow_SSSE3(const uint8* src, uint8* dst, int width);
245 void MirrorRow_SSE2(const uint8* src, uint8* dst, int width);
246 void MirrorRow_NEON(const uint8* src, uint8* dst, int width);
247 void MirrorRow_C(const uint8* src, uint8* dst, int width);
249 void MirrorRowUV_SSSE3(const uint8* src, uint8* dst_u, uint8* dst_v, int width);
250 void MirrorRowUV_NEON(const uint8* src, uint8* dst_u, uint8* dst_v, int width);
251 void MirrorRowUV_C(const uint8* src, uint8* dst_u, uint8* dst_v, int width);
253 void ARGBMirrorRow_SSSE3(const uint8* src, uint8* dst, int width);
254 void ARGBMirrorRow_C(const uint8* src, uint8* dst, int width);
256 void SplitUV_SSE2(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix);
257 void SplitUV_NEON(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix);
258 void SplitUV_C(const uint8* src_uv, uint8* dst_u, uint8* dst_v, int pix);
260 void CopyRow_SSE2(const uint8* src, uint8* dst, int count);
261 void CopyRow_X86(const uint8* src, uint8* dst, int count);
262 void CopyRow_NEON(const uint8* src, uint8* dst, int count);
263 void CopyRow_C(const uint8* src, uint8* dst, int count);
265 void SetRow8_X86(uint8* dst, uint32 v32, int count);
266 void SetRows32_X86(uint8* dst, uint32 v32, int width,
268 void SetRow8_NEON(uint8* dst, uint32 v32, int count);
269 void SetRows32_NEON(uint8* dst, uint32 v32, int width,
271 void SetRow8_C(uint8* dst, uint32 v32, int count);
272 void SetRows32_C(uint8* dst, uint32 v32, int width, int dst_stride, int height);
274 void ARGBToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
275 void BGRAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
276 void ABGRToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
277 void RGBAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
279 void ARGBToUVRow_C(const uint8* src_argb0, int src_stride_argb,
280 uint8* dst_u, uint8* dst_v, int width);
281 void BGRAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
282 uint8* dst_u, uint8* dst_v, int width);
283 void ABGRToUVRow_C(const uint8* src_argb0, int src_stride_argb,
284 uint8* dst_u, uint8* dst_v, int width);
285 void RGBAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
286 uint8* dst_u, uint8* dst_v, int width);
288 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix);
289 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix);
290 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix);
291 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
292 void RAWToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
293 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb, uint8* dst_argb, int pix);
294 void RGB565ToARGBRow_SSE2(const uint8* src_argb, uint8* dst_argb, int pix);
295 void ARGB4444ToARGBRow_SSE2(const uint8* src_argb, uint8* dst_argb, int pix);
297 void BGRAToARGBRow_NEON(const uint8* src_bgra, uint8* dst_argb, int pix);
298 void ABGRToARGBRow_NEON(const uint8* src_abgr, uint8* dst_argb, int pix);
299 void RGBAToARGBRow_NEON(const uint8* src_rgba, uint8* dst_argb, int pix);
300 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
301 void RAWToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
303 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int pix);
304 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int pix);
305 void RGBAToARGBRow_C(const uint8* src_rgba, uint8* dst_argb, int pix);
306 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
307 void RAWToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
308 void RGB565ToARGBRow_C(const uint8* src_rgb, uint8* dst_argb, int pix);
309 void ARGB1555ToARGBRow_C(const uint8* src_argb, uint8* dst_argb, int pix);
310 void ARGB4444ToARGBRow_C(const uint8* src_argb, uint8* dst_argb, int pix);
312 void ARGBToRGBARow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix);
313 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix);
314 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix);
315 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
316 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
317 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
319 void ARGBToRGBARow_NEON(const uint8* src_argb, uint8* dst_rgb, int pix);
320 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb, int pix);
321 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_rgb, int pix);
323 void ARGBToRGBARow_C(const uint8* src_argb, uint8* dst_rgb, int pix);
324 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int pix);
325 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int pix);
326 void ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int pix);
327 void ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int pix);
328 void ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int pix);
330 void I400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix);
331 void I400ToARGBRow_C(const uint8* src_y, uint8* dst_argb, int pix);
333 void I444ToARGBRow_C(const uint8* y_buf,
334 const uint8* u_buf,
335 const uint8* v_buf,
336 uint8* argb_buf,
339 void I422ToARGBRow_C(const uint8* y_buf,
340 const uint8* u_buf,
341 const uint8* v_buf,
342 uint8* argb_buf,
345 void I411ToARGBRow_C(const uint8* y_buf,
346 const uint8* u_buf,
347 const uint8* v_buf,
348 uint8* rgb_buf,
351 void NV12ToARGBRow_C(const uint8* y_buf,
352 const uint8* uv_buf,
353 uint8* argb_buf,
356 void NV21ToARGBRow_C(const uint8* y_buf,
357 const uint8* vu_buf,
358 uint8* argb_buf,
361 void I422ToBGRARow_C(const uint8* y_buf,
362 const uint8* u_buf,
363 const uint8* v_buf,
364 uint8* bgra_buf,
367 void I422ToABGRRow_C(const uint8* y_buf,
368 const uint8* u_buf,
369 const uint8* v_buf,
370 uint8* abgr_buf,
373 void I422ToRGBARow_C(const uint8* y_buf,
374 const uint8* u_buf,
375 const uint8* v_buf,
376 uint8* rgba_buf,
378 void I422ToRGB24Row_C(const uint8* y_buf,
379 const uint8* u_buf,
380 const uint8* v_buf,
381 uint8* rgb24_buf,
383 void I422ToRAWRow_C(const uint8* y_buf,
384 const uint8* u_buf,
385 const uint8* v_buf,
386 uint8* raw_buf,
389 void YToARGBRow_C(const uint8* y_buf,
390 uint8* rgb_buf,
393 void I444ToARGBRow_SSSE3(const uint8* y_buf,
394 const uint8* u_buf,
395 const uint8* v_buf,
396 uint8* argb_buf,
399 void I422ToARGBRow_SSSE3(const uint8* y_buf,
400 const uint8* u_buf,
401 const uint8* v_buf,
402 uint8* argb_buf,
405 void I411ToARGBRow_SSSE3(const uint8* y_buf,
406 const uint8* u_buf,
407 const uint8* v_buf,
408 uint8* rgb_buf,
411 void NV12ToARGBRow_SSSE3(const uint8* y_buf,
412 const uint8* uv_buf,
413 uint8* argb_buf,
416 void NV21ToARGBRow_SSSE3(const uint8* y_buf,
417 const uint8* vu_buf,
418 uint8* argb_buf,
421 void I422ToBGRARow_SSSE3(const uint8* y_buf,
422 const uint8* u_buf,
423 const uint8* v_buf,
424 uint8* bgra_buf,
427 void I422ToABGRRow_SSSE3(const uint8* y_buf,
428 const uint8* u_buf,
429 const uint8* v_buf,
430 uint8* abgr_buf,
433 void I422ToRGBARow_SSSE3(const uint8* y_buf,
434 const uint8* u_buf,
435 const uint8* v_buf,
436 uint8* rgba_buf,
439 void I444ToARGBRow_Unaligned_SSSE3(const uint8* y_buf,
440 const uint8* u_buf,
441 const uint8* v_buf,
442 uint8* argb_buf,
445 void I422ToARGBRow_Unaligned_SSSE3(const uint8* y_buf,
446 const uint8* u_buf,
447 const uint8* v_buf,
448 uint8* argb_buf,
451 void I411ToARGBRow_Unaligned_SSSE3(const uint8* y_buf,
452 const uint8* u_buf,
453 const uint8* v_buf,
454 uint8* rgb_buf,
457 void NV12ToARGBRow_Unaligned_SSSE3(const uint8* y_buf,
458 const uint8* uv_buf,
459 uint8* argb_buf,
462 void NV21ToARGBRow_Unaligned_SSSE3(const uint8* y_buf,
463 const uint8* vu_buf,
464 uint8* argb_buf,
467 void I422ToBGRARow_Unaligned_SSSE3(const uint8* y_buf,
468 const uint8* u_buf,
469 const uint8* v_buf,
470 uint8* bgra_buf,
473 void I422ToABGRRow_Unaligned_SSSE3(const uint8* y_buf,
474 const uint8* u_buf,
475 const uint8* v_buf,
476 uint8* abgr_buf,
479 void I422ToRGBARow_Unaligned_SSSE3(const uint8* y_buf,
480 const uint8* u_buf,
481 const uint8* v_buf,
482 uint8* rgba_buf,
485 void I444ToARGBRow_Any_SSSE3(const uint8* y_buf,
486 const uint8* u_buf,
487 const uint8* v_buf,
488 uint8* argb_buf,
491 void I422ToARGBRow_Any_SSSE3(const uint8* y_buf,
492 const uint8* u_buf,
493 const uint8* v_buf,
494 uint8* argb_buf,
497 void I411ToARGBRow_Any_SSSE3(const uint8* y_buf,
498 const uint8* u_buf,
499 const uint8* v_buf,
500 uint8* rgb_buf,
503 void NV12ToARGBRow_Any_SSSE3(const uint8* y_buf,
504 const uint8* uv_buf,
505 uint8* argb_buf,
508 void NV21ToARGBRow_Any_SSSE3(const uint8* y_buf,
509 const uint8* vu_buf,
510 uint8* argb_buf,
513 void I422ToBGRARow_Any_SSSE3(const uint8* y_buf,
514 const uint8* u_buf,
515 const uint8* v_buf,
516 uint8* bgra_buf,
519 void I422ToABGRRow_Any_SSSE3(const uint8* y_buf,
520 const uint8* u_buf,
521 const uint8* v_buf,
522 uint8* abgr_buf,
525 void I422ToRGBARow_Any_SSSE3(const uint8* y_buf,
526 const uint8* u_buf,
527 const uint8* v_buf,
528 uint8* rgba_buf,
531 void YToARGBRow_SSE2(const uint8* y_buf,
532 uint8* argb_buf,
536 void ARGBBlendRow_SSSE3(const uint8* src_argb0, const uint8* src_argb1,
537 uint8* dst_argb, int width);
538 void ARGBBlendRow_SSE2(const uint8* src_argb0, const uint8* src_argb1,
539 uint8* dst_argb, int width);
540 void ARGBBlendRow_C(const uint8* src_argb0, const uint8* src_argb1,
541 uint8* dst_argb, int width);
543 void ARGBToRGB24Row_Any_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix);
544 void ARGBToRAWRow_Any_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix);
545 void ARGBToRGB565Row_Any_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
546 void ARGBToARGB1555Row_Any_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
547 void ARGBToARGB4444Row_Any_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix);
549 void ARGBToRGB24Row_Any_NEON(const uint8* src_argb, uint8* dst_rgb, int pix);
550 void ARGBToRAWRow_Any_NEON(const uint8* src_argb, uint8* dst_rgb, int pix);
552 void ARGBToYRow_Any_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
553 void BGRAToYRow_Any_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
554 void ABGRToYRow_Any_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
555 void RGBAToYRow_Any_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
556 void ARGBToUVRow_Any_SSSE3(const uint8* src_argb0, int src_stride_argb,
557 uint8* dst_u, uint8* dst_v, int width);
558 void BGRAToUVRow_Any_SSSE3(const uint8* src_argb0, int src_stride_argb,
559 uint8* dst_u, uint8* dst_v, int width);
560 void ABGRToUVRow_Any_SSSE3(const uint8* src_argb0, int src_stride_argb,
561 uint8* dst_u, uint8* dst_v, int width);
562 void RGBAToUVRow_Any_SSSE3(const uint8* src_argb0, int src_stride_argb,
563 uint8* dst_u, uint8* dst_v, int width);
564 void I422ToARGBRow_Any_NEON(const uint8* y_buf,
565 const uint8* u_buf,
566 const uint8* v_buf,
567 uint8* rgb_buf,
569 void I422ToBGRARow_Any_NEON(const uint8* y_buf,
570 const uint8* u_buf,
571 const uint8* v_buf,
572 uint8* rgb_buf,
574 void I422ToABGRRow_Any_NEON(const uint8* y_buf,
575 const uint8* u_buf,
576 const uint8* v_buf,
577 uint8* rgb_buf,
579 void I422ToRGBARow_Any_NEON(const uint8* y_buf,
580 const uint8* u_buf,
581 const uint8* v_buf,
582 uint8* rgb_buf,
584 void I422ToRGB24Row_Any_NEON(const uint8* y_buf,
585 const uint8* u_buf,
586 const uint8* v_buf,
587 uint8* rgb_buf,
589 void I422ToRAWRow_Any_NEON(const uint8* y_buf,
590 const uint8* u_buf,
591 const uint8* v_buf,
592 uint8* rgb_buf,
594 void NV12ToARGBRow_Any_NEON(const uint8* y_buf,
595 const uint8* uv_buf,
596 uint8* argb_buf,
598 void NV21ToARGBRow_Any_NEON(const uint8* y_buf,
599 const uint8* uv_buf,
600 uint8* argb_buf,
603 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix);
604 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2,
605 uint8* dst_u, uint8* dst_v, int pix);
606 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2,
607 uint8* dst_u, uint8* dst_v, int pix);
608 void YUY2ToYRow_Unaligned_SSE2(const uint8* src_yuy2,
609 uint8* dst_y, int pix);
610 void YUY2ToUVRow_Unaligned_SSE2(const uint8* src_yuy2, int stride_yuy2,
611 uint8* dst_u, uint8* dst_v, int pix);
612 void YUY2ToUV422Row_Unaligned_SSE2(const uint8* src_yuy2,
613 uint8* dst_u, uint8* dst_v, int pix);
614 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix);
615 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2,
616 uint8* dst_u, uint8* dst_v, int pix);
617 void YUY2ToUV422Row_NEON(const uint8* src_yuy2,
618 uint8* dst_u, uint8* dst_v, int pix);
619 void YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int pix);
620 void YUY2ToUVRow_C(const uint8* src_yuy2, int stride_yuy2,
621 uint8* dst_u, uint8* dst_v, int pix);
622 void YUY2ToUV422Row_C(const uint8* src_yuy2,
623 uint8* dst_u, uint8* dst_v, int pix);
624 void YUY2ToYRow_Any_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix);
625 void YUY2ToUVRow_Any_SSE2(const uint8* src_yuy2, int stride_yuy2,
626 uint8* dst_u, uint8* dst_v, int pix);
627 void YUY2ToUV422Row_Any_SSE2(const uint8* src_yuy2,
628 uint8* dst_u, uint8* dst_v, int pix);
629 void YUY2ToYRow_Any_NEON(const uint8* src_yuy2, uint8* dst_y, int pix);
630 void YUY2ToUVRow_Any_NEON(const uint8* src_yuy2, int stride_yuy2,
631 uint8* dst_u, uint8* dst_v, int pix);
632 void YUY2ToUV422Row_Any_NEON(const uint8* src_yuy2,
633 uint8* dst_u, uint8* dst_v, int pix);
635 void UYVYToYRow_SSE2(const uint8* src_uyvy, uint8* dst_y, int pix);
636 void UYVYToUVRow_SSE2(const uint8* src_uyvy, int stride_uyvy,
637 uint8* dst_u, uint8* dst_v, int pix);
638 void UYVYToUV422Row_SSE2(const uint8* src_uyvy,
639 uint8* dst_u, uint8* dst_v, int pix);
640 void UYVYToYRow_Unaligned_SSE2(const uint8* src_uyvy,
641 uint8* dst_y, int pix);
642 void UYVYToUVRow_Unaligned_SSE2(const uint8* src_uyvy, int stride_uyvy,
643 uint8* dst_u, uint8* dst_v, int pix);
644 void UYVYToUV422Row_Unaligned_SSE2(const uint8* src_uyvy,
645 uint8* dst_u, uint8* dst_v, int pix);
646 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix);
647 void UYVYToUVRow_NEON(const uint8* src_uyvy, int stride_uyvy,
648 uint8* dst_u, uint8* dst_v, int pix);
649 void UYVYToUV422Row_NEON(const uint8* src_uyvy,
650 uint8* dst_u, uint8* dst_v, int pix);
652 void UYVYToYRow_C(const uint8* src_uyvy, uint8* dst_y, int pix);
653 void UYVYToUVRow_C(const uint8* src_uyvy, int stride_uyvy,
654 uint8* dst_u, uint8* dst_v, int pix);
655 void UYVYToUV422Row_C(const uint8* src_uyvy,
656 uint8* dst_u, uint8* dst_v, int pix);
657 void UYVYToYRow_Any_SSE2(const uint8* src_uyvy, uint8* dst_y, int pix);
658 void UYVYToUVRow_Any_SSE2(const uint8* src_uyvy, int stride_uyvy,
659 uint8* dst_u, uint8* dst_v, int pix);
660 void UYVYToUV422Row_Any_SSE2(const uint8* src_uyvy,
661 uint8* dst_u, uint8* dst_v, int pix);
662 void UYVYToYRow_Any_NEON(const uint8* src_uyvy, uint8* dst_y, int pix);
663 void UYVYToUVRow_Any_NEON(const uint8* src_uyvy, int stride_uyvy,
664 uint8* dst_u, uint8* dst_v, int pix);
665 void UYVYToUV422Row_Any_NEON(const uint8* src_uyvy,
666 uint8* dst_u, uint8* dst_v, int pix);
668 void ARGBAttenuateRow_C(const uint8* src_argb, uint8* dst_argb, int width);
669 void ARGBAttenuateRow_SSE2(const uint8* src_argb, uint8* dst_argb, int width);
670 void ARGBAttenuateRow_SSSE3(const uint8* src_argb, uint8* dst_argb, int width);
674 void ARGBUnattenuateRow_C(const uint8* src_argb, uint8* dst_argb, int width);
675 void ARGBUnattenuateRow_SSE2(const uint8* src_argb, uint8* dst_argb, int width);
677 void ARGBGrayRow_C(const uint8* src_argb, uint8* dst_argb, int width);
678 void ARGBGrayRow_SSSE3(const uint8* src_argb, uint8* dst_argb, int width);
680 void ARGBSepiaRow_C(uint8* dst_argb, int width);
681 void ARGBSepiaRow_SSSE3(uint8* dst_argb, int width);
683 void ARGBColorMatrixRow_C(uint8* dst_argb, const int8* matrix_argb, int width);
684 void ARGBColorMatrixRow_SSSE3(uint8* dst_argb, const int8* matrix_argb,
687 void ARGBColorTableRow_C(uint8* dst_argb, const uint8* table_argb, int width);
688 void ARGBColorTableRow_X86(uint8* dst_argb, const uint8* table_argb, int width);
690 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size,
692 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size,
697 int width, int area, uint8* dst, int count);
698 void ComputeCumulativeSumRow_SSE2(const uint8* row, int32* cumsum,
702 int width, int area, uint8* dst, int count);
703 void ComputeCumulativeSumRow_C(const uint8* row, int32* cumsum,
706 void ARGBShadeRow_C(const uint8* src_argb, uint8* dst_argb, int width,
708 void ARGBShadeRow_SSE2(const uint8* src_argb, uint8* dst_argb, int width,
712 void ARGBAffineRow_C(const uint8* src_argb, int src_argb_stride,
713 uint8* dst_argb, const float* uv_dudv, int width);
715 void ARGBAffineRow_SSE2(const uint8* src_argb, int src_argb_stride,
716 uint8* dst_argb, const float* uv_dudv, int width);
718 void ARGBInterpolateRow_C(uint8* dst_ptr, const uint8* src_ptr,
721 void ARGBInterpolateRow_SSSE3(uint8* dst_ptr, const uint8* src_ptr,