Home
last modified time | relevance | path

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

/external/libyuv/files/source/
Dconvert.cc492 const uint8* src_yuy2, int src_stride_yuy2, in Q420ToI420() argument
546 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in Q420ToI420()
576 src_yuy2 += src_stride_yuy2; in Q420ToI420()
612 static bool TestReadSafe(const uint8* src_yuy2, int src_stride_yuy2, in TestReadSafe() argument
623 (src_stride_yuy2 >= 0 && (height & 1) && width * bpp >= overread)) { in TestReadSafe()
628 if (src_stride_yuy2 >= 0) { in TestReadSafe()
629 src_yuy2 += (height - 1) * src_stride_yuy2; in TestReadSafe()
643 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI420() argument
651 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420()
652 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI420()
[all …]
Dconvert_argb.cc676 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument
686 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB()
687 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToARGB()
702 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToARGB()
755 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
Dplanar_functions.cc110 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument
118 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
119 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI422()
136 if (IS_ALIGNED(src_yuy2, 16) && IS_ALIGNED(src_stride_yuy2, 16)) { in YUY2ToI422()
162 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
Drow_common.cc747 void YUY2ToUVRow_C(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToUVRow_C() argument
751 dst_u[0] = (src_yuy2[1] + src_yuy2[src_stride_yuy2 + 1] + 1) >> 1; in YUY2ToUVRow_C()
752 dst_v[0] = (src_yuy2[3] + src_yuy2[src_stride_yuy2 + 3] + 1) >> 1; in YUY2ToUVRow_C()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_argb.cc894 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToARGB() argument
907 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToARGB()
908 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToARGB()
911 if (src_stride_yuy2 == width * 2 && in YUY2ToARGB()
915 src_stride_yuy2 = dst_stride_argb = 0; in YUY2ToARGB()
943 src_yuy2 += src_stride_yuy2; in YUY2ToARGB()
Dplanar_functions.cc283 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToI422() argument
297 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI422()
298 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI422()
301 if (src_stride_yuy2 == width * 2 && in YUY2ToI422()
307 src_stride_yuy2 = dst_stride_y = dst_stride_u = dst_stride_v = 0; in YUY2ToI422()
345 src_yuy2 += src_stride_yuy2; in YUY2ToI422()
2345 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2, in YUY2ToNV12() argument
2364 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToNV12()
2365 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToNV12()
2432 SplitUVRow(src_yuy2 + src_stride_yuy2, dst_y + dst_stride_y, in YUY2ToNV12()
[all …]
Dconvert.cc386 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()
399 src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2; in YUY2ToI420()
400 src_stride_yuy2 = -src_stride_yuy2; in YUY2ToI420()
434 YUY2ToUVRow(src_yuy2, src_stride_yuy2, dst_u, dst_v, 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()
Drow_common.cc1727 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()
/external/libyuv/files/include/libyuv/
Dconvert.h96 const uint8* src_yuy2, int src_stride_yuy2,
104 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert_argb.h113 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
Dplanar_functions.h41 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dplanar_functions.h74 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
89 int YUY2ToNV12(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert_argb.h108 int YUY2ToARGB(const uint8* src_yuy2, int src_stride_yuy2,
Dconvert.h96 int YUY2ToI420(const uint8* src_yuy2, int src_stride_yuy2,