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

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_argb.cc884 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, argument
897 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
898 src_stride_uyvy = -src_stride_uyvy;
901 if (src_stride_uyvy == width * 2 &&
905 src_stride_uyvy = dst_stride_argb = 0;
913 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16) &&
929 src_uyvy += src_stride_uyvy;
H A Dconvert.cc588 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
594 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
601 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
602 src_stride_uyvy = -src_stride_uyvy;
611 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
644 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
646 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
647 src_uyvy += src_stride_uyvy * 2;
H A Dplanar_functions.cc352 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
366 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
367 src_stride_uyvy = -src_stride_uyvy;
370 if (src_stride_uyvy == width * 2 &&
376 src_stride_uyvy = dst_stride_y = dst_stride_u = dst_stride_v = 0;
385 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
420 src_uyvy += src_stride_uyvy;
H A Drow_common.cc1640 void UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, argument
1645 dst_u[0] = (src_uyvy[0] + src_uyvy[src_stride_uyvy + 0] + 1) >> 1;
1646 dst_v[0] = (src_uyvy[2] + src_uyvy[src_stride_uyvy + 2] + 1) >> 1;
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_argb.cc884 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy, argument
897 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
898 src_stride_uyvy = -src_stride_uyvy;
901 if (src_stride_uyvy == width * 2 &&
905 src_stride_uyvy = dst_stride_argb = 0;
913 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16) &&
929 src_uyvy += src_stride_uyvy;
H A Dconvert.cc588 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy, argument
594 void (*UYVYToUVRow)(const uint8* src_uyvy, int src_stride_uyvy,
601 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
602 src_stride_uyvy = -src_stride_uyvy;
611 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
644 UYVYToUVRow(src_uyvy, src_stride_uyvy, dst_u, dst_v, width);
646 UYVYToYRow(src_uyvy + src_stride_uyvy, dst_y + dst_stride_y, width);
647 src_uyvy += src_stride_uyvy * 2;
H A Dplanar_functions.cc352 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy, argument
366 src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
367 src_stride_uyvy = -src_stride_uyvy;
370 if (src_stride_uyvy == width * 2 &&
376 src_stride_uyvy = dst_stride_y = dst_stride_u = dst_stride_v = 0;
385 if (IS_ALIGNED(src_uyvy, 16) && IS_ALIGNED(src_stride_uyvy, 16)) {
420 src_uyvy += src_stride_uyvy;
H A Drow_common.cc1640 void UYVYToUVRow_C(const uint8* src_uyvy, int src_stride_uyvy, argument
1645 dst_u[0] = (src_uyvy[0] + src_uyvy[src_stride_uyvy + 0] + 1) >> 1;
1646 dst_v[0] = (src_uyvy[2] + src_uyvy[src_stride_uyvy + 2] + 1) >> 1;
/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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
H A Dconvert_argb.h122 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy,
H A Dconvert.h102 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy,
H A Dplanar_functions.h81 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy,
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Dconvert_argb.h122 int UYVYToARGB(const uint8* src_uyvy, int src_stride_uyvy,
H A Dconvert.h102 int UYVYToI420(const uint8* src_uyvy, int src_stride_uyvy,
H A Dplanar_functions.h81 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 199 milliseconds