Searched defs:src_uyvy (Results 1 - 15 of 15) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert.cc414 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
420 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
422 void (*UYVYToYRow)(const uint8* src_uyvy,
427 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
462 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
463 UYVYToYRow(src_uyvy, dst_y, width);
464 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
465 src_uyvy += src_stride_uyvy * 2;
471 UYVYToUVRow(src_uyvy,
[all...]
H A Dconvert_argb.cc1395 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, argument
1399 void (*UYVYToARGBRow)(const uint8* src_uyvy,
1404 if (!src_uyvy || !dst_argb ||
1411 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
1446 UYVYToARGBRow(src_uyvy, dst_argb, &kYuvI601Constants, width);
1447 src_uyvy += src_stride_uyvy;
H A Dplanar_functions.cc488 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
494 void (*UYVYToUV422Row)(const uint8* src_uyvy,
497 void (*UYVYToYRow)(const uint8* src_uyvy,
502 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
548 UYVYToUV422Row(src_uyvy, dst_u, dst_v, width);
549 UYVYToYRow(src_uyvy, dst_y, width);
550 src_uyvy += src_stride_uyvy;
2711 int UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, argument
2722 if (!src_uyvy ||
[all...]
H A Drow_neon.cc594 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
608 : "+r"(src_uyvy), // %0
1007 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int width) { argument
1016 : "+r"(src_uyvy), // %0
1045 void UYVYToUV422Row_NEON(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, argument
1057 : "+r"(src_uyvy), // %0
1093 void UYVYToUVRow_NEON(const uint8* src_uyvy, int stride_uyvy, argument
1096 "add %1, %0, %1 \n" // stride + src_uyvy
1110 : "+r"(src_uyvy), // %0
H A Drow_neon64.cc588 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
602 : "+r"(src_uyvy), // %0
1010 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int width) { argument
1019 : "+r"(src_uyvy), // %0
1048 void UYVYToUV422Row_NEON(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, argument
1060 : "+r"(src_uyvy), // %0
1097 void UYVYToUVRow_NEON(const uint8* src_uyvy, int stride_uyvy, argument
1099 const uint8* src_uyvyb = src_uyvy + stride_uyvy;
1114 : "+r"(src_uyvy), // %0
H A Drow_common.cc1680 void UYVYToARGBRow_C(const uint8* src_uyvy, argument
1686 YuvPixel(src_uyvy[1], src_uyvy[0], src_uyvy[2],
1689 YuvPixel(src_uyvy[3], src_uyvy[0], src_uyvy[2],
1692 src_uyvy += 4;
1696 YuvPixel(src_uyvy[1], src_uyvy[
1882 UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1896 UYVYToUV422Row_C(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1910 UYVYToYRow_C(const uint8* src_uyvy, uint8* dst_y, int width) argument
[all...]
H A Drow_gcc.cc3166 void UYVYToYRow_SSE2(const uint8* src_uyvy, uint8* dst_y, int width) { argument
3180 : "+r"(src_uyvy), // %0
3189 void UYVYToUVRow_SSE2(const uint8* src_uyvy, int stride_uyvy, argument
3217 : "+r"(src_uyvy), // %0
3227 void UYVYToUV422Row_SSE2(const uint8* src_uyvy, argument
3251 : "+r"(src_uyvy), // %0
3366 void UYVYToYRow_AVX2(const uint8* src_uyvy, uint8* dst_y, int width) { argument
3382 : "+r"(src_uyvy), // %0
3390 void UYVYToUVRow_AVX2(const uint8* src_uyvy, int stride_uyvy, argument
3420 : "+r"(src_uyvy), //
3430 UYVYToUV422Row_AVX2(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
/external/libyuv/files/source/
H A Dconvert.cc442 int UYVYToI420(const uint8* src_uyvy, argument
453 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_u,
455 void (*UYVYToYRow)(const uint8* src_uyvy, uint8* dst_y, int width) =
460 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
505 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
506 UYVYToYRow(src_uyvy, dst_y, width);
507 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
508 src_uyvy += src_stride_uyvy * 2;
514 UYVYToUVRow(src_uyvy,
[all...]
H A Dconvert_argb.cc1586 int UYVYToARGB(const uint8* src_uyvy, argument
1593 void (*UYVYToARGBRow)(const uint8* src_uyvy, uint8* dst_argb,
1596 if (!src_uyvy || !dst_argb || width <= 0 || height == 0) {
1602 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
1644 UYVYToARGBRow(src_uyvy, dst_argb, &kYuvI601Constants, width);
1645 src_uyvy += src_stride_uyvy;
H A Dplanar_functions.cc554 int UYVYToI422(const uint8* src_uyvy, argument
565 void (*UYVYToUV422Row)(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v,
567 void (*UYVYToYRow)(const uint8* src_uyvy, uint8* dst_y, int width) =
569 if (!src_uyvy || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
575 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
628 UYVYToUV422Row(src_uyvy, dst_u, dst_v, width);
629 UYVYToYRow(src_uyvy, dst_y, width);
630 src_uyvy += src_stride_uyvy;
3223 int UYVYToNV12(const uint8* src_uyvy, argument
[all...]
H A Drow_neon.cc551 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
565 : "+r"(src_uyvy), // %0
972 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int width) { argument
981 : "+r"(src_uyvy), // %0
1012 void UYVYToUV422Row_NEON(const uint8* src_uyvy, argument
1026 : "+r"(src_uyvy), // %0
1065 void UYVYToUVRow_NEON(const uint8* src_uyvy, argument
1071 "add %1, %0, %1 \n" // stride + src_uyvy
1085 : "+r"(src_uyvy), // %0
H A Drow_neon64.cc552 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
566 : "+r"(src_uyvy), // %0
982 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int width) { argument
991 : "+r"(src_uyvy), // %0
1022 void UYVYToUV422Row_NEON(const uint8* src_uyvy, argument
1036 : "+r"(src_uyvy), // %0
1076 void UYVYToUVRow_NEON(const uint8* src_uyvy, argument
1081 const uint8* src_uyvyb = src_uyvy + stride_uyvy;
1096 : "+r"(src_uyvy), // %0
H A Drow_common.cc1632 void UYVYToARGBRow_C(const uint8* src_uyvy, argument
1638 YuvPixel(src_uyvy[1], src_uyvy[0], src_uyvy[2], rgb_buf + 0, rgb_buf + 1,
1641 YuvPixel(src_uyvy[3], src_uyvy[0], src_uyvy[2], rgb_buf + 4, rgb_buf + 5,
1644 src_uyvy += 4;
1648 YuvPixel(src_uyvy[1], src_uyvy[
1841 UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1858 UYVYToUV422Row_C(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1874 UYVYToYRow_C(const uint8* src_uyvy, uint8* dst_y, int width) argument
[all...]
H A Drow_gcc.cc3176 void UYVYToYRow_SSE2(const uint8* src_uyvy, uint8* dst_y, int width) { argument
3190 : "+r"(src_uyvy), // %0
3199 void UYVYToUVRow_SSE2(const uint8* src_uyvy, argument
3231 : "+r"(src_uyvy), // %0
3241 void UYVYToUV422Row_SSE2(const uint8* src_uyvy, argument
3268 : "+r"(src_uyvy), // %0
3391 void UYVYToYRow_AVX2(const uint8* src_uyvy, uint8* dst_y, int width) { argument
3407 : "+r"(src_uyvy), // %0
3415 void UYVYToUVRow_AVX2(const uint8* src_uyvy, argument
3448 : "+r"(src_uyvy), //
3458 UYVYToUV422Row_AVX2(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_msa.cc706 void UYVYToYRow_MSA(const uint8* src_uyvy, uint8* dst_y, int width) { argument
711 LD_UB4(src_uyvy, 16, src0, src1, src2, src3);
715 src_uyvy += 64;
720 void UYVYToUVRow_MSA(const uint8* src_uyvy, argument
725 const uint8* src_uyvy_next = src_uyvy + src_stride_uyvy;
731 LD_UB4(src_uyvy, 16, src0, src1, src2, src3);
743 src_uyvy += 64;
750 void UYVYToUV422Row_MSA(const uint8* src_uyvy, argument
758 LD_UB4(src_uyvy, 16, src0, src1, src2, src3);
765 src_uyvy
2826 UYVYToARGBRow_MSA(const uint8* src_uyvy, uint8* rgb_buf, const struct YuvConstants* yuvconstants, int width) argument
[all...]

Completed in 424 milliseconds