Searched refs:src_stride_uyvy (Results 1 - 7 of 7) sorted by relevance

/external/libyuv/files/include/libyuv/
H A Dconvert.h112 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy,
120 int V210ToI420(const uint8* src_uyvy, int src_stride_uyvy,
H A Dconvert_argb.h119 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy,
125 // int V210ToARGB(const uint8* src_uyvy, int src_stride_uyvy,
H A Dplanar_functions.h48 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy,
/external/libyuv/files/source/
H A Dconvert_argb.cc763 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, argument
773 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
774 src_stride_uyvy = -src_stride_uyvy;
789 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
826 src_uyvy += src_stride_uyvy;
H A Dplanar_functions.cc172 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
180 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
181 src_stride_uyvy = -src_stride_uyvy;
198 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
224 src_uyvy += src_stride_uyvy;
H A Dconvert.cc710 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
718 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
719 src_stride_uyvy = -src_stride_uyvy;
721 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
736 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
760 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
762 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
763 src_uyvy += src_stride_uyvy * 2;
848 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
[all...]
H A Drow_common.cc786 void UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, argument
790 dst_u[0] = (src_uyvy[0] + src_uyvy[src_stride_uyvy + 0] + 1) >> 1;
791 dst_v[0] = (src_uyvy[2] + src_uyvy[src_stride_uyvy + 2] + 1) >> 1;

Completed in 341 milliseconds