Home
last modified time | relevance | path

Searched refs:src_stride_yuy2 (Results 1 – 15 of 15) sorted by relevance

/external/libyuv/files/source/
Dplanar_functions.cc469 int src_stride_yuy2, in YUY2ToI422() argument
489 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
490 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI422()
493 if (src_stride_yuy2 == width * 2 && dst_stride_y == width && in YUY2ToI422()
498 src_stride_yuy2 = dst_stride_y = dst_stride_u = dst_stride_v = 0; in YUY2ToI422()
544 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
641 int src_stride_yuy2, in YUY2ToY() argument
655 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToY()
656 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToY()
659 if (src_stride_yuy2 == width * 2 && dst_stride_y == width) { in YUY2ToY()
[all …]
Dconvert_argb.cc1520 int src_stride_yuy2, in YUY2ToARGB() argument
1535 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB()
1536 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToARGB()
1539 if (src_stride_yuy2 == width * 2 && dst_stride_argb == width * 4) { in YUY2ToARGB()
1542 src_stride_yuy2 = dst_stride_argb = 0; in YUY2ToARGB()
1578 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
Dconvert.cc363 int src_stride_yuy2, in YUY2ToI420() argument
373 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, uint8* dst_u, in YUY2ToI420()
380 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420()
381 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI420()
425 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420()
427 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420()
428 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420()
Drow_common.cc1795 int src_stride_yuy2, in YUY2ToUVRow_C() argument
1802 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C()
1803 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C()
Drow_msa.cc656 int src_stride_yuy2, in YUY2ToUVRow_MSA() argument
660 const uint8* src_yuy2_next = src_yuy2 + src_stride_yuy2; in YUY2ToUVRow_MSA()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_argb.cc1335 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument
1351 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB()
1352 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToARGB()
1355 if (src_stride_yuy2 == width * 2 && in YUY2ToARGB()
1359 src_stride_yuy2 = dst_stride_argb = 0; in YUY2ToARGB()
1387 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
Dplanar_functions.cc416 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument
430 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
431 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI422()
434 if (src_stride_yuy2 == width * 2 && in YUY2ToI422()
440 src_stride_yuy2 = dst_stride_y = dst_stride_u = dst_stride_v = 0; in YUY2ToI422()
478 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
2613 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToNV12() argument
2632 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToNV12()
2633 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToNV12()
2693 SplitUVRow(src_yuy2 + src_stride_yuy2, rows, rows + awidth * 2, awidth); in YUY2ToNV12()
[all …]
Dconvert.cc349 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument
355 void (*YUY2ToUVRow)(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420()
362 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420()
363 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI420()
397 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, width); in YUY2ToI420()
399 YUY2ToYRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, width); in YUY2ToI420()
400 src_yuy2 += src_stride_yuy2 * 2; in YUY2ToI420()
Drow_common.cc1840 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument
1845 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C()
1846 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C()
/external/libyuv/files/include/libyuv/
Dplanar_functions.h122 int src_stride_yuy2,
147 int src_stride_yuy2,
167 int src_stride_yuy2,
Dconvert.h128 int src_stride_yuy2,
Dconvert_argb.h205 int src_stride_yuy2,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dplanar_functions.h88 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
103 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert.h99 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert_argb.h148 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,