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

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_argb.cc951 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, argument
955 void (*UYVYToARGBRow)(const uint8* src_uyvy, uint8* dst_argb, int pix) =
957 if (!src_uyvy || !dst_argb ||
964 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
999 UYVYToARGBRow(src_uyvy, dst_argb, width);
1000 src_uyvy += src_stride_uyvy;
H A Dconvert.cc451 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
457 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
459 void (*UYVYToYRow)(const uint8* src_uyvy,
464 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
499 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
500 UYVYToYRow(src_uyvy, dst_y, width);
501 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
502 src_uyvy += src_stride_uyvy * 2;
508 UYVYToUVRow(src_uyvy,
[all...]
H A Dplanar_functions.cc355 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
361 void (*UYVYToUV422Row)(const uint8* src_uyvy,
364 void (*UYVYToYRow)(const uint8* src_uyvy,
369 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
415 UYVYToUV422Row(src_uyvy, dst_u, dst_v, width);
416 UYVYToYRow(src_uyvy, dst_y, width);
417 src_uyvy += src_stride_uyvy;
2449 int UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, argument
2460 if (!src_uyvy ||
[all...]
H A Drow_neon.cc727 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
741 : "+r"(src_uyvy), // %0
1136 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { argument
1146 : "+r"(src_uyvy), // %0
1176 void UYVYToUV422Row_NEON(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, argument
1189 : "+r"(src_uyvy), // %0
1226 void UYVYToUVRow_NEON(const uint8* src_uyvy, int stride_uyvy, argument
1229 "add %1, %0, %1 \n" // stride + src_uyvy
1244 : "+r"(src_uyvy), // %0
H A Drow_neon64.cc701 void UYVYToARGBRow_NEON(const uint8* src_uyvy, argument
715 : "+r"(src_uyvy), // %0
1138 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { argument
1147 : "+r"(src_uyvy), // %0
1180 void UYVYToUV422Row_NEON(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, argument
1192 : "+r"(src_uyvy), // %0
1233 void UYVYToUVRow_NEON(const uint8* src_uyvy, int stride_uyvy, argument
1235 const uint8* src_uyvyb = src_uyvy + stride_uyvy;
1250 : "+r"(src_uyvy), // %0
H A Drow_common.cc1519 void UYVYToARGBRow_C(const uint8* src_uyvy, argument
1524 YuvPixel(src_uyvy[1], src_uyvy[0], src_uyvy[2],
1527 YuvPixel(src_uyvy[3], src_uyvy[0], src_uyvy[2],
1530 src_uyvy += 4;
1534 YuvPixel(src_uyvy[1], src_uyvy[
1769 UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1783 UYVYToUV422Row_C(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int width) argument
1797 UYVYToYRow_C(const uint8* src_uyvy, uint8* dst_y, int width) argument
2279 UYVYToARGBRow_SSSE3(const uint8* src_uyvy, uint8* dst_argb, int width) argument
2455 UYVYToARGBRow_AVX2(const uint8* src_uyvy, uint8* dst_argb, int width) argument
[all...]
H A Drow_gcc.cc2917 void UYVYToYRow_SSE2(const uint8* src_uyvy, uint8* dst_y, int pix) { argument
2931 : "+r"(src_uyvy), // %0
2940 void UYVYToUVRow_SSE2(const uint8* src_uyvy, int stride_uyvy, argument
2968 : "+r"(src_uyvy), // %0
2978 void UYVYToUV422Row_SSE2(const uint8* src_uyvy, argument
3002 : "+r"(src_uyvy), // %0
3117 void UYVYToYRow_AVX2(const uint8* src_uyvy, uint8* dst_y, int pix) { argument
3133 : "+r"(src_uyvy), // %0
3141 void UYVYToUVRow_AVX2(const uint8* src_uyvy, int stride_uyvy, argument
3171 : "+r"(src_uyvy), //
3181 UYVYToUV422Row_AVX2(const uint8* src_uyvy, uint8* dst_u, uint8* dst_v, int pix) argument
[all...]
H A Drow_win.cc3692 void UYVYToYRow_AVX2(const uint8* src_uyvy, argument
3695 mov eax, [esp + 4] // src_uyvy
3717 void UYVYToUVRow_AVX2(const uint8* src_uyvy, int stride_uyvy, argument
3761 void UYVYToUV422Row_AVX2(const uint8* src_uyvy, argument
3906 void UYVYToYRow_SSE2(const uint8* src_uyvy, argument
3909 mov eax, [esp + 4] // src_uyvy
3929 void UYVYToUVRow_SSE2(const uint8* src_uyvy, int stride_uyvy, argument
3972 void UYVYToUV422Row_SSE2(const uint8* src_uyvy, argument
/external/libyuv/files/source/
H A Dconvert.cc451 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
457 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
459 void (*UYVYToYRow)(const uint8* src_uyvy,
464 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
499 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
500 UYVYToYRow(src_uyvy, dst_y, width);
501 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
502 src_uyvy += src_stride_uyvy * 2;
508 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.cc348 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
354 void (*UYVYToUV422Row)(const uint8* src_uyvy,
357 void (*UYVYToYRow)(const uint8* src_uyvy,
362 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
408 UYVYToUV422Row(src_uyvy, dst_u, dst_v, width);
409 UYVYToYRow(src_uyvy, dst_y, width);
410 src_uyvy += src_stride_uyvy;
2571 int UYVYToNV12(const uint8* src_uyvy, int src_stride_uyvy, argument
2582 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...]

Completed in 191 milliseconds