/external/libaom/libaom/third_party/libyuv/source/ |
D | row_common.cc | 1498 void YUY2ToARGBRow_C(const uint8* src_yuy2, in YUY2ToARGBRow_C() argument 1503 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1506 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1509 src_yuy2 += 4; in YUY2ToARGBRow_C() 1513 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], in YUY2ToARGBRow_C() 1727 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument 1732 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C() 1733 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C() 1734 src_yuy2 += 4; in YUY2ToUVRow_C() 1741 void YUY2ToUV422Row_C(const uint8* src_yuy2, in YUY2ToUV422Row_C() argument [all …]
|
D | row_neon64.cc | 675 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument 689 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 1119 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1128 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1157 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument 1169 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1203 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument 1205 const uint8* src_yuy2b = src_yuy2 + stride_yuy2; in YUY2ToUVRow_NEON() 1220 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_neon.cc | 701 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, in YUY2ToARGBRow_NEON() argument 715 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 1118 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1128 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1154 void YUY2ToUV422Row_NEON(const uint8* src_yuy2, uint8* dst_u, uint8* dst_v, in YUY2ToUV422Row_NEON() argument 1167 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1198 void YUY2ToUVRow_NEON(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_NEON() argument 1216 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | convert.cc | 386 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument 392 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() 394 void (*YUY2ToYRow)(const uint8* src_yuy2, in YUY2ToI420() 399 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420() 434 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420() 435 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420() 436 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420() 437 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420() 443 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420() 444 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()
|
D | convert_argb.cc | 894 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument 898 void (*YUY2ToARGBRow)(const uint8* src_yuy2, uint8* dst_argb, int pix) = in YUY2ToARGB() 900 if (!src_yuy2 || !dst_argb || in YUY2ToARGB() 907 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB() 942 YUY2ToARGBRow(src_yuy2, dst_argb, width); in YUY2ToARGB() 943 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
|
D | planar_functions.cc | 283 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument 289 void (*YUY2ToUV422Row)(const uint8* src_yuy2, in YUY2ToI422() 292 void (*YUY2ToYRow)(const uint8* src_yuy2, uint8* dst_y, int pix) = in YUY2ToI422() 297 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422() 343 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422() 344 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422() 345 src_yuy2 += src_stride_yuy2; in YUY2ToI422() 2345 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToNV12() argument 2356 if (!src_yuy2 || in YUY2ToNV12() 2364 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToNV12() [all …]
|
D | row_x86.asm | 22 ; void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) 25 cglobal %1ToYRow%3, 3, 3, 3, src_yuy2, dst_y, pix
|
D | row_gcc.cc | 2820 void YUY2ToYRow_SSE2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_SSE2() argument 2836 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2() 2845 void YUY2ToUVRow_SSE2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_SSE2() argument 2873 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2() 2883 void YUY2ToUV422Row_SSE2(const uint8* src_yuy2, in YUY2ToUV422Row_SSE2() argument 2907 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2() 3014 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_AVX2() argument 3032 : "+r"(src_yuy2), // %0 in YUY2ToYRow_AVX2() 3041 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, in YUY2ToUVRow_AVX2() argument 3070 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_AVX2() [all …]
|
/external/libaom/libaom/third_party/libyuv/include/libyuv/ |
D | row.h | 573 void YUY2ToARGBRow_NEON(const uint8* src_yuy2, 978 void YUY2ToARGBRow_C(const uint8* src_yuy2, 1106 void YUY2ToARGBRow_SSSE3(const uint8* src_yuy2, 1112 void YUY2ToARGBRow_AVX2(const uint8* src_yuy2, 1270 void YUY2ToARGBRow_Any_SSSE3(const uint8* src_yuy2, 1276 void YUY2ToARGBRow_Any_AVX2(const uint8* src_yuy2, 1520 void YUY2ToARGBRow_Any_NEON(const uint8* src_yuy2, 1557 void YUY2ToYRow_AVX2(const uint8* src_yuy2, uint8* dst_y, int pix); 1558 void YUY2ToUVRow_AVX2(const uint8* src_yuy2, int stride_yuy2, 1560 void YUY2ToUV422Row_AVX2(const uint8* src_yuy2, [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_neon.cc | 504 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, in YUY2ToARGBRow_NEON() argument 514 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 941 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument 948 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 971 void YUY2ToUV422Row_NEON(const uint8_t* src_yuy2, in YUY2ToUV422Row_NEON() argument 982 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1011 void YUY2ToUVRow_NEON(const uint8_t* src_yuy2, in YUY2ToUVRow_NEON() argument 1027 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_neon64.cc | 543 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, in YUY2ToARGBRow_NEON() argument 556 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 996 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument 1003 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1026 void YUY2ToUV422Row_NEON(const uint8_t* src_yuy2, in YUY2ToUV422Row_NEON() argument 1037 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1066 void YUY2ToUVRow_NEON(const uint8_t* src_yuy2, in YUY2ToUVRow_NEON() argument 1071 const uint8_t* src_yuy2b = src_yuy2 + stride_yuy2; in YUY2ToUVRow_NEON() 1082 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | planar_functions.cc | 665 int YUY2ToI422(const uint8_t* src_yuy2, in YUY2ToI422() argument 676 void (*YUY2ToUV422Row)(const uint8_t* src_yuy2, uint8_t* dst_u, in YUY2ToI422() 678 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToI422() 680 if (!src_yuy2 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in YUY2ToI422() 686 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422() 739 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422() 740 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422() 741 src_yuy2 += src_stride_yuy2; in YUY2ToI422() 837 int YUY2ToY(const uint8_t* src_yuy2, in YUY2ToY() argument 844 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToY() [all …]
|
D | row_gcc.cc | 4084 void YUY2ToYRow_SSE2(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_SSE2() argument 4101 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2() 4108 void YUY2ToUVRow_SSE2(const uint8_t* src_yuy2, in YUY2ToUVRow_SSE2() argument 4140 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2() 4148 void YUY2ToUV422Row_SSE2(const uint8_t* src_yuy2, in YUY2ToUV422Row_SSE2() argument 4175 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2() 4282 void YUY2ToYRow_AVX2(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_AVX2() argument 4301 : "+r"(src_yuy2), // %0 in YUY2ToYRow_AVX2() 4308 void YUY2ToUVRow_AVX2(const uint8_t* src_yuy2, in YUY2ToUVRow_AVX2() argument 4341 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_AVX2() [all …]
|
D | convert.cc | 443 int YUY2ToI420(const uint8_t* src_yuy2, in YUY2ToI420() argument 454 void (*YUY2ToUVRow)(const uint8_t* src_yuy2, int src_stride_yuy2, in YUY2ToI420() 457 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToI420() 462 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420() 507 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420() 508 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420() 509 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420() 510 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420() 516 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420() 517 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()
|
D | row_common.cc | 1939 void YUY2ToARGBRow_C(const uint8_t* src_yuy2, in YUY2ToARGBRow_C() argument 1945 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], rgb_buf + 0, rgb_buf + 1, in YUY2ToARGBRow_C() 1948 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], rgb_buf + 4, rgb_buf + 5, in YUY2ToARGBRow_C() 1951 src_yuy2 += 4; in YUY2ToARGBRow_C() 1955 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], rgb_buf + 0, rgb_buf + 1, in YUY2ToARGBRow_C() 2219 void YUY2ToUVRow_C(const uint8_t* src_yuy2, in YUY2ToUVRow_C() argument 2227 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C() 2228 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C() 2229 src_yuy2 += 4; in YUY2ToUVRow_C() 2236 void YUY2ToUV422Row_C(const uint8_t* src_yuy2, in YUY2ToUV422Row_C() argument [all …]
|
/external/libyuv/files/source/ |
D | row_neon64.cc | 543 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, in YUY2ToARGBRow_NEON() argument 556 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 996 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument 1003 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 1026 void YUY2ToUV422Row_NEON(const uint8_t* src_yuy2, in YUY2ToUV422Row_NEON() argument 1037 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1066 void YUY2ToUVRow_NEON(const uint8_t* src_yuy2, in YUY2ToUVRow_NEON() argument 1071 const uint8_t* src_yuy2b = src_yuy2 + stride_yuy2; in YUY2ToUVRow_NEON() 1082 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_neon.cc | 504 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, in YUY2ToARGBRow_NEON() argument 514 : "+r"(src_yuy2), // %0 in YUY2ToARGBRow_NEON() 941 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument 948 : "+r"(src_yuy2), // %0 in YUY2ToYRow_NEON() 971 void YUY2ToUV422Row_NEON(const uint8_t* src_yuy2, in YUY2ToUV422Row_NEON() argument 982 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_NEON() 1011 void YUY2ToUVRow_NEON(const uint8_t* src_yuy2, in YUY2ToUVRow_NEON() argument 1027 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_NEON()
|
D | row_gcc.cc | 4084 void YUY2ToYRow_SSE2(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_SSE2() argument 4101 : "+r"(src_yuy2), // %0 in YUY2ToYRow_SSE2() 4108 void YUY2ToUVRow_SSE2(const uint8_t* src_yuy2, in YUY2ToUVRow_SSE2() argument 4140 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_SSE2() 4148 void YUY2ToUV422Row_SSE2(const uint8_t* src_yuy2, in YUY2ToUV422Row_SSE2() argument 4175 : "+r"(src_yuy2), // %0 in YUY2ToUV422Row_SSE2() 4282 void YUY2ToYRow_AVX2(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_AVX2() argument 4301 : "+r"(src_yuy2), // %0 in YUY2ToYRow_AVX2() 4308 void YUY2ToUVRow_AVX2(const uint8_t* src_yuy2, in YUY2ToUVRow_AVX2() argument 4341 : "+r"(src_yuy2), // %0 in YUY2ToUVRow_AVX2() [all …]
|
D | planar_functions.cc | 761 int YUY2ToI422(const uint8_t* src_yuy2, in YUY2ToI422() argument 772 void (*YUY2ToUV422Row)(const uint8_t* src_yuy2, uint8_t* dst_u, in YUY2ToI422() 774 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToI422() 776 if (!src_yuy2 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in YUY2ToI422() 782 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422() 845 YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width); in YUY2ToI422() 846 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI422() 847 src_yuy2 += src_stride_yuy2; in YUY2ToI422() 953 int YUY2ToY(const uint8_t* src_yuy2, in YUY2ToY() argument 960 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToY() [all …]
|
D | row_common.cc | 1939 void YUY2ToARGBRow_C(const uint8_t* src_yuy2, in YUY2ToARGBRow_C() argument 1945 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], rgb_buf + 0, rgb_buf + 1, in YUY2ToARGBRow_C() 1948 YuvPixel(src_yuy2[2], src_yuy2[1], src_yuy2[3], rgb_buf + 4, rgb_buf + 5, in YUY2ToARGBRow_C() 1951 src_yuy2 += 4; in YUY2ToARGBRow_C() 1955 YuvPixel(src_yuy2[0], src_yuy2[1], src_yuy2[3], rgb_buf + 0, rgb_buf + 1, in YUY2ToARGBRow_C() 2219 void YUY2ToUVRow_C(const uint8_t* src_yuy2, in YUY2ToUVRow_C() argument 2227 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C() 2228 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C() 2229 src_yuy2 += 4; in YUY2ToUVRow_C() 2236 void YUY2ToUV422Row_C(const uint8_t* src_yuy2, in YUY2ToUV422Row_C() argument [all …]
|
D | convert.cc | 701 int YUY2ToI420(const uint8_t* src_yuy2, in YUY2ToI420() argument 712 void (*YUY2ToUVRow)(const uint8_t* src_yuy2, int src_stride_yuy2, in YUY2ToI420() 715 void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) = in YUY2ToI420() 720 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420() 777 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420() 778 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420() 779 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420() 780 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420() 786 YUY2ToUVRow(src_yuy2, 0, dst_u, dst_v, width); in YUY2ToI420() 787 YUY2ToYRow(src_yuy2, dst_y, width); in YUY2ToI420()
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | planar_functions.h | 183 int YUY2ToI422(const uint8_t* src_yuy2, 208 int YUY2ToNV12(const uint8_t* src_yuy2, 228 int YUY2ToY(const uint8_t* src_yuy2,
|
D | row.h | 744 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, 817 void YUY2ToARGBRow_MSA(const uint8_t* src_yuy2, 1871 void YUY2ToARGBRow_C(const uint8_t* src_yuy2, 2743 void YUY2ToYRow_AVX2(const uint8_t* src_yuy2, uint8_t* dst_y, int width); 2744 void YUY2ToUVRow_AVX2(const uint8_t* src_yuy2, 2749 void YUY2ToUV422Row_AVX2(const uint8_t* src_yuy2, 2753 void YUY2ToYRow_SSE2(const uint8_t* src_yuy2, uint8_t* dst_y, int width); 2754 void YUY2ToUVRow_SSE2(const uint8_t* src_yuy2, 2759 void YUY2ToUV422Row_SSE2(const uint8_t* src_yuy2, 2763 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width); [all …]
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 830 void YUY2ToARGBRow_NEON(const uint8_t* src_yuy2, 903 void YUY2ToARGBRow_MSA(const uint8_t* src_yuy2, 2202 void YUY2ToARGBRow_C(const uint8_t* src_yuy2, 3144 void YUY2ToYRow_AVX2(const uint8_t* src_yuy2, uint8_t* dst_y, int width); 3145 void YUY2ToUVRow_AVX2(const uint8_t* src_yuy2, 3150 void YUY2ToUV422Row_AVX2(const uint8_t* src_yuy2, 3154 void YUY2ToYRow_SSE2(const uint8_t* src_yuy2, uint8_t* dst_y, int width); 3155 void YUY2ToUVRow_SSE2(const uint8_t* src_yuy2, 3160 void YUY2ToUV422Row_SSE2(const uint8_t* src_yuy2, 3164 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width); [all …]
|
D | planar_functions.h | 183 int YUY2ToI422(const uint8_t* src_yuy2, 208 int YUY2ToNV12(const uint8_t* src_yuy2, 241 int YUY2ToY(const uint8_t* src_yuy2,
|