Home
last modified time | relevance | path

Searched refs:src_rgb24 (Results 1 – 15 of 15) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc790 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument
797 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420()
799 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int pix) = in RGB24ToI420()
809 if (!src_rgb24 || !dst_y || !dst_u || !dst_v || in RGB24ToI420()
816 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420()
870 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width); in RGB24ToI420()
871 RGB24ToYRow(src_rgb24, dst_y, width); in RGB24ToI420()
872 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width); in RGB24ToI420()
874 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420()
875 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToI420()
[all …]
Drow_neon64.cc911 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument
921 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON()
1856 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument
1858 const uint8* src_rgb24_1 = src_rgb24 + src_stride_rgb24; in RGB24ToUVRow_NEON()
1884 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON()
2329 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument
2347 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
Drow_neon.cc931 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument
942 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON()
1883 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToUVRow_NEON() argument
1921 : "+r"(src_rgb24), // %0 in RGB24ToUVRow_NEON()
2356 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { in RGB24ToYRow_NEON() argument
2375 : "+r"(src_rgb24), // %0 in RGB24ToYRow_NEON()
Dconvert_argb.cc448 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument
454 if (!src_rgb24 || !dst_argb || in RGB24ToARGB()
461 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB()
489 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB()
490 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
Drow_common.cc73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument
76 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C()
77 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C()
78 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C()
84 src_rgb24 += 3; in RGB24ToARGBRow_C()
Drow_gcc.cc268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
298 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
Drow_win.cc385 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
/external/libyuv/files/source/
Drow_neon.cc600 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_NEON() argument
609 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_NEON()
Dconvert_argb.cc398 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToARGB() argument
401 if (!src_rgb24 || !dst_argb || in RGB24ToARGB()
408 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToARGB()
411 void (*RGB24ToARGBRow)(const uint8* src_rgb24, uint8* dst_argb, int pix) = in RGB24ToARGB()
422 RGB24ToARGBRow(src_rgb24, dst_argb, width); in RGB24ToARGB()
423 src_rgb24 += src_stride_rgb24; in RGB24ToARGB()
Dconvert.cc1158 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, in RGB24ToI420() argument
1165 } else if (!src_rgb24 || in RGB24ToI420()
1173 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24; in RGB24ToI420()
1182 TestReadSafe(src_rgb24, src_stride_rgb24, width, height, 3, 48)) { in RGB24ToI420()
1210 RGB24ToARGBRow(src_rgb24, row, width); in RGB24ToI420()
1211 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kMaxStride, width); in RGB24ToI420()
1215 src_rgb24 += src_stride_rgb24 * 2; in RGB24ToI420()
1221 RGB24ToARGBRow_C(src_rgb24, row, width); in RGB24ToI420()
Drow_common.cc70 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument
72 uint8 b = src_rgb24[0]; in RGB24ToARGBRow_C()
73 uint8 g = src_rgb24[1]; in RGB24ToARGBRow_C()
74 uint8 r = src_rgb24[2]; in RGB24ToARGBRow_C()
80 src_rgb24 += 3; in RGB24ToARGBRow_C()
Drow_posix.cc246 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
276 : "+r"(src_rgb24), // %0 in RGB24ToARGBRow_SSSE3()
Drow_win.cc238 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
/external/libyuv/files/include/libyuv/
Drow.h291 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
292 void RAWToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
300 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
301 void RAWToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
306 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
307 void RAWToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h588 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix);
608 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24,
621 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix);
631 void RGB24ToYRow_C(const uint8* src_rgb24, uint8* dst_y, int pix);
641 void RGB24ToYRow_Any_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix);
648 void RGB24ToYRow_Any_NEON(const uint8* src_rgb24, uint8* dst_y, int pix);
694 void RGB24ToUVRow_Any_NEON(const uint8* src_rgb24, int src_stride_rgb24,
716 void RGB24ToUVRow_C(const uint8* src_rgb24, int src_stride_rgb24,
856 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
869 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
[all …]