Home
last modified time | relevance | path

Searched refs:src_stride_yuy2 (Results 1 – 7 of 7) 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/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,