Searched defs:src_stride_bgra (Results 1 - 3 of 3) sorted by relevance

/external/libyuv/files/source/
H A Dconvert_argb.cc263 int BGRAToARGB(const uint8* src_bgra, int src_stride_bgra, argument
273 src_bgra = src_bgra + (height - 1) * src_stride_bgra;
274 src_stride_bgra = -src_stride_bgra;
281 IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16) &&
289 src_bgra += src_stride_bgra;
H A Dconvert.cc984 int BGRAToI420(const uint8* src_bgra, int src_stride_bgra, argument
997 src_bgra = src_bgra + (height - 1) * src_stride_bgra;
998 src_stride_bgra = -src_stride_bgra;
1001 void (*BGRAToUVRow)(const uint8* src_bgra0, int src_stride_bgra,
1015 if (IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16)) {
1026 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width);
1028 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width);
1029 src_bgra += src_stride_bgra * 2;
H A Drow_posix.cc948 void BGRAToUVRow_SSSE3(const uint8* src_bgra0, int src_stride_bgra, argument
1001 : "r"(static_cast<intptr_t>(src_stride_bgra))
1009 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_bgra0, int src_stride_bgra, argument
1066 : "r"(static_cast<intptr_t>(src_stride_bgra))

Completed in 79 milliseconds