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

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert.cc349 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, argument
355 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2,
357 void (*YUY2ToYRow)(const uint8* src_yuy2,
362 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
397 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width);
398 YUY2ToYRow(src_yuy2, dst_y, width);
399 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width);
400 src_yuy2 += src_stride_yuy2 * 2;
406 YUY2ToUVRow(src_yuy2,
[all...]
H A Dconvert_argb.cc1335 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, argument
1339 void (*YUY2ToARGBRow)(const uint8* src_yuy2,
1344 if (!src_yuy2 || !dst_argb ||
1351 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
1386 YUY2ToARGBRow(src_yuy2, dst_argb, &kYuvI601Constants, width);
1387 src_yuy2 += src_stride_yuy2;
H A Dplanar_functions.cc416 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, argument
422 void (*YUY2ToUV422Row)(const uint8* src_yuy2,
425 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int width) =
430 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
476 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width);
477 YUY2ToYRow(src_yuy2, dst_y, width);
478 src_yuy2 += src_stride_yuy2;
2613 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, argument
2624 if (!src_yuy2 ||
[all...]
H A Drow_neon.cc568 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, argument
582 : "+r"(src_yuy2), // %0
990 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int width) { argument
999 : "+r"(src_yuy2), // %0
1024 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, argument
1036 : "+r"(src_yuy2), // %0
1066 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, argument
1069 "add %1, %0, %1 \n" // stride + src_yuy2
1083 : "+r"(src_yuy2), // %0
H A Drow_neon64.cc562 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, argument
576 : "+r"(src_yuy2), // %0
993 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int width) { argument
1002 : "+r"(src_yuy2), // %0
1027 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, argument
1039 : "+r"(src_yuy2), // %0
1069 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, argument
1071 const uint8* src_yuy2b = src_yuy2 + stride_yuy2;
1086 : "+r"(src_yuy2), // %0
H A Drow_common.cc1658 void YUY2ToARGBRow_C(const uint8* src_yuy2, argument
1664 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3],
1667 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3],
1670 src_yuy2 += 4;
1674 YuvPixel(src_yuy2[0], src_yuy2[
1840 YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
1854 YUY2ToUV422Row_C(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
1868 YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int width) argument
[all...]
H A Drow_gcc.cc3069 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int width) { argument
3085 : "+r"(src_yuy2), // %0
3094 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, argument
3122 : "+r"(src_yuy2), // %0
3132 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, argument
3156 : "+r"(src_yuy2), // %0
3263 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int width) { argument
3281 : "+r"(src_yuy2), // %0
3290 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, argument
3319 : "+r"(src_yuy2), //
3329 YUY2ToUV422Row_AVX2(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
/external/libyuv/files/source/
H A Dconvert.cc362 int YUY2ToI420(const uint8* src_yuy2, argument
373 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_u,
375 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int width) =
380 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
425 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width);
426 YUY2ToYRow(src_yuy2, dst_y, width);
427 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width);
428 src_yuy2 += src_stride_yuy2 * 2;
434 YUY2ToUVRow(src_yuy2,
[all...]
H A Dconvert_argb.cc1519 int YUY2ToARGB(const uint8* src_yuy2, argument
1526 void (*YUY2ToARGBRow)(const uint8* src_yuy2, uint8* dst_argb,
1529 if (!src_yuy2 || !dst_argb || width <= 0 || height == 0) {
1535 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
1577 YUY2ToARGBRow(src_yuy2, dst_argb, &kYuvI601Constants, width);
1578 src_yuy2 += src_stride_yuy2;
H A Dplanar_functions.cc468 int YUY2ToI422(const uint8* src_yuy2, argument
479 void (*YUY2ToUV422Row)(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v,
481 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int width) =
483 if (!src_yuy2 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
489 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
542 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width);
543 YUY2ToYRow(src_yuy2, dst_y, width);
544 src_yuy2 += src_stride_yuy2;
640 int YUY2ToY(const uint8* src_yuy2, argument
3115 YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_y, int dst_stride_y, uint8* dst_uv, int dst_stride_uv, int width, int height) argument
[all...]
H A Drow_neon.cc525 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, argument
539 : "+r"(src_yuy2), // %0
955 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int width) { argument
964 : "+r"(src_yuy2), // %0
989 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, argument
1003 : "+r"(src_yuy2), // %0
1035 void YUY2ToUVRow_NEON(const uint8* src_yuy2, argument
1041 "add %1, %0, %1 \n" // stride + src_yuy2
1055 : "+r"(src_yuy2), // %0
H A Drow_neon64.cc526 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, argument
540 : "+r"(src_yuy2), // %0
965 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int width) { argument
974 : "+r"(src_yuy2), // %0
999 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, argument
1013 : "+r"(src_yuy2), // %0
1045 void YUY2ToUVRow_NEON(const uint8* src_yuy2, argument
1050 const uint8* src_yuy2b = src_yuy2 + stride_yuy2;
1065 : "+r"(src_yuy2), // %0
H A Drow_common.cc1610 void YUY2ToARGBRow_C(const uint8* src_yuy2, argument
1616 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], rgb_buf + 0, rgb_buf + 1,
1619 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], rgb_buf + 4, rgb_buf + 5,
1622 src_yuy2 += 4;
1626 YuvPixel(src_yuy2[0], src_yuy2[
1794 YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
1811 YUY2ToUV422Row_C(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
1827 YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int width) argument
[all...]
H A Drow_gcc.cc3071 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int width) { argument
3088 : "+r"(src_yuy2), // %0
3097 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, argument
3129 : "+r"(src_yuy2), // %0
3139 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, argument
3166 : "+r"(src_yuy2), // %0
3280 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int width) { argument
3299 : "+r"(src_yuy2), // %0
3308 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, argument
3341 : "+r"(src_yuy2), //
3351 YUY2ToUV422Row_AVX2(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_msa.cc641 void YUY2ToYRow_MSA(const uint8* src_yuy2, uint8* dst_y, int width) { argument
646 LD_UB4(src_yuy2, 16, src0, src1, src2, src3);
650 src_yuy2 += 64;
655 void YUY2ToUVRow_MSA(const uint8* src_yuy2, argument
660 const uint8* src_yuy2_next = src_yuy2 + src_stride_yuy2;
666 LD_UB4(src_yuy2, 16, src0, src1, src2, src3);
678 src_yuy2 += 64;
685 void YUY2ToUV422Row_MSA(const uint8* src_yuy2, argument
693 LD_UB4(src_yuy2, 16, src0, src1, src2, src3);
700 src_yuy2
2798 YUY2ToARGBRow_MSA(const uint8* src_yuy2, uint8* rgb_buf, const struct YuvConstants* yuvconstants, int width) argument
[all...]

Completed in 255 milliseconds