Home
last modified time | relevance | path

Searched refs:dst_argb (Results 1 – 25 of 86) sorted by relevance

1234

/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc29 uint8* dst_argb, int dst_stride_argb, in ARGBCopy() argument
31 if (!src_argb || !dst_argb || in ARGBCopy()
42 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBCopy()
52 uint8* dst_argb, int dst_stride_argb, in I444ToARGB() argument
61 !dst_argb || in I444ToARGB()
68 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in I444ToARGB()
106 I444ToARGBRow(src_y, src_u, src_v, dst_argb, width); in I444ToARGB()
107 dst_argb += dst_stride_argb; in I444ToARGB()
120 uint8* dst_argb, int dst_stride_argb, in I422ToARGB() argument
129 !dst_argb || in I422ToARGB()
[all …]
Drow_common.cc73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument
79 dst_argb[0] = b; in RGB24ToARGBRow_C()
80 dst_argb[1] = g; in RGB24ToARGBRow_C()
81 dst_argb[2] = r; in RGB24ToARGBRow_C()
82 dst_argb[3] = 255u; in RGB24ToARGBRow_C()
83 dst_argb += 4; in RGB24ToARGBRow_C()
88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_C() argument
94 dst_argb[0] = b; in RAWToARGBRow_C()
95 dst_argb[1] = g; in RAWToARGBRow_C()
96 dst_argb[2] = r; in RAWToARGBRow_C()
[all …]
Dplanar_functions.cc483 uint8* dst_argb, int dst_stride_argb, in ARGBMirror() argument
488 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
524 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
526 dst_argb += dst_stride_argb; in ARGBMirror()
537 uint8* dst_argb, int width) = ARGBBlendRow_C; in GetARGBBlend()
561 uint8* dst_argb, int dst_stride_argb, in ARGBBlend() argument
565 uint8* dst_argb, int width) = GetARGBBlend(); in ARGBBlend()
566 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend()
572 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBBlend()
585 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend()
[all …]
Drow_gcc.cc145 void TestRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) { in TestRow_SSE2() argument
231 "+r"(dst_argb), // %1 in TestRow_SSE2()
240 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) { in J400ToARGBRow_SSE2() argument
260 "+r"(dst_argb), // %1 in J400ToARGBRow_SSE2()
268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3() argument
299 "+r"(dst_argb), // %1 in RGB24ToARGBRow_SSSE3()
306 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { in RAWToARGBRow_SSSE3() argument
337 "+r"(dst_argb), // %1 in RAWToARGBRow_SSSE3()
1601 "movdqu %%xmm0," MEMACCESS([dst_argb]) " \n" \
1602 "movdqu %%xmm1," MEMACCESS2(0x10, [dst_argb]) " \n" \
[all …]
Drow_neon.cc173 uint8* dst_argb, in I444ToARGBRow_NEON() argument
189 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
203 uint8* dst_argb, in I422ToARGBRow_NEON() argument
219 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
233 uint8* dst_argb, in I411ToARGBRow_NEON() argument
249 "+r"(dst_argb), // %3 in I411ToARGBRow_NEON()
541 uint8* dst_argb, in I400ToARGBRow_NEON() argument
555 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
567 uint8* dst_argb, in J400ToARGBRow_NEON() argument
582 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
Drow_neon64.cc174 uint8* dst_argb, in I444ToARGBRow_NEON() argument
189 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
203 uint8* dst_argb, in I422ToARGBRow_NEON() argument
218 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
232 uint8* dst_argb, in I411ToARGBRow_NEON() argument
247 "+r"(dst_argb), // %3 in I411ToARGBRow_NEON()
518 uint8* dst_argb, in I400ToARGBRow_NEON() argument
532 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
544 uint8* dst_argb, in J400ToARGBRow_NEON() argument
558 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
Dscale_argb.cc36 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown2() argument
42 uint8* dst_argb, int dst_width) = in ScaleARGBDown2()
84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
86 dst_argb += dst_stride; in ScaleARGBDown2()
96 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown4Box() argument
104 uint8* dst_argb, int dst_width) = ScaleARGBRowDown2Box_C; in ScaleARGBDown4Box()
130 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width); in ScaleARGBDown4Box()
132 dst_argb += dst_stride; in ScaleARGBDown4Box()
143 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDownEven() argument
150 int src_step, uint8* dst_argb, int dst_width) = in ScaleARGBDownEven()
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h505 uint8* dst_argb,
510 uint8* dst_argb,
515 uint8* dst_argb,
559 uint8* dst_argb,
563 uint8* dst_argb,
574 uint8* dst_argb,
577 uint8* dst_argb,
817 void ARGBCopyAlphaRow_C(const uint8* src_argb, uint8* dst_argb, int width);
818 void ARGBCopyAlphaRow_SSE2(const uint8* src_argb, uint8* dst_argb, int width);
819 void ARGBCopyAlphaRow_AVX2(const uint8* src_argb, uint8* dst_argb, int width);
[all …]
Dconvert_argb.h37 uint8* dst_argb, int dst_stride_argb,
45 uint8* dst_argb, int dst_stride_argb,
53 uint8* dst_argb, int dst_stride_argb,
61 uint8* dst_argb, int dst_stride_argb,
69 uint8* dst_argb, int dst_stride_argb,
75 uint8* dst_argb, int dst_stride_argb,
81 uint8* dst_argb, int dst_stride_argb,
91 uint8* dst_argb, int dst_stride_argb,
98 uint8* dst_argb, int dst_stride_argb,
104 uint8* dst_argb, int dst_stride_argb,
[all …]
Dplanar_functions.h139 uint8* dst_argb, int dst_stride_argb,
191 int ARGBRect(uint8* dst_argb, int dst_stride_argb,
197 uint8* dst_argb, int dst_stride_argb,
202 int ARGBGray(uint8* dst_argb, int dst_stride_argb,
207 int ARGBSepia(uint8* dst_argb, int dst_stride_argb,
218 uint8* dst_argb, int dst_stride_argb,
229 int RGBColorMatrix(uint8* dst_argb, int dst_stride_argb,
236 int ARGBColorTable(uint8* dst_argb, int dst_stride_argb,
243 int RGBColorTable(uint8* dst_argb, int dst_stride_argb,
252 uint8* dst_argb, int dst_stride_argb,
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_argb.cc31 uint8_t* dst_argb, in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width * 4, in ARGBCopy()
57 uint8_t* dst_argb, in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
73 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in I420ToARGBMatrix()
110 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix()
111 dst_argb += dst_stride_argb; in I420ToARGBMatrix()
129 uint8_t* dst_argb, in I420ToARGB() argument
134 src_stride_v, dst_argb, dst_stride_argb, in I420ToARGB()
[all …]
Drotate_argb.cc26 uint8_t* dst_argb, in ARGBTranspose() argument
34 uint8_t* dst_argb, int dst_width) = ScaleARGBRowDownEven_C; in ARGBTranspose()
61 ScaleARGBRowDownEven(src_argb, 0, src_pixel_step, dst_argb, height); in ARGBTranspose()
62 dst_argb += dst_stride_argb; in ARGBTranspose()
69 uint8_t* dst_argb, in ARGBRotate90() argument
78 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
84 uint8_t* dst_argb, in ARGBRotate270() argument
91 dst_argb += dst_stride_argb * (width - 1); in ARGBRotate270()
93 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
99 uint8_t* dst_argb, in ARGBRotate180() argument
[all …]
Drow_gcc.cc155 void J400ToARGBRow_SSE2(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_SSE2() argument
176 "+r"(dst_argb), // %1 in J400ToARGBRow_SSE2()
185 uint8_t* dst_argb, in RGB24ToARGBRow_SSSE3() argument
218 "+r"(dst_argb), // %1 in RGB24ToARGBRow_SSSE3()
224 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument
256 "+r"(dst_argb), // %1 in RAWToARGBRow_SSSE3()
2010 uint8_t* dst_argb, in I444ToARGBRow_SSSE3() argument
2028 [dst_argb]"+r"(dst_argb), // %[dst_argb] in I444ToARGBRow_SSSE3()
2085 uint8_t* dst_argb, in I422ToARGBRow_SSSE3() argument
2103 [dst_argb]"+r"(dst_argb), // %[dst_argb] in I422ToARGBRow_SSSE3()
[all …]
Dconvert_to_argb.cc44 uint8_t* dst_argb, in ConvertToARGB() argument
68 (rotation && format != FOURCC_ARGB) || dst_argb == sample; in ConvertToARGB()
69 uint8_t* dest_argb = dst_argb; in ConvertToARGB()
74 if (dst_argb == NULL || sample == NULL || src_width <= 0 || crop_width <= 0 || in ConvertToARGB()
88 dst_argb = rotate_buffer; in ConvertToARGB()
96 r = YUY2ToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
101 r = UYVYToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
106 r = RGB24ToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
111 r = RAWToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
117 r = ARGBToARGB(src, src_width * 4, dst_argb, dst_stride_argb, in ConvertToARGB()
[all …]
Drow_neon.cc112 uint8_t* dst_argb, in I444ToARGBRow_NEON() argument
125 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
138 uint8_t* dst_argb, in I422ToARGBRow_NEON() argument
151 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
165 uint8_t* dst_argb, in I422AlphaToARGBRow_NEON() argument
179 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON()
345 void I400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in I400ToARGBRow_NEON() argument
354 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
364 void J400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_NEON() argument
375 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
Drow_neon64.cc118 uint8_t* dst_argb, in I444ToARGBRow_NEON() argument
133 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
147 uint8_t* dst_argb, in I422ToARGBRow_NEON() argument
162 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
177 uint8_t* dst_argb, in I422AlphaToARGBRow_NEON() argument
193 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON()
373 void I400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in I400ToARGBRow_NEON() argument
384 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
395 void J400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_NEON() argument
406 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
/external/libyuv/files/source/
Dconvert_argb.cc31 uint8_t* dst_argb, in ARGBCopy() argument
35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy()
45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width * 4, in ARGBCopy()
57 uint8_t* dst_argb, in I420ToARGBMatrix() argument
67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix()
73 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in I420ToARGBMatrix()
110 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix()
111 dst_argb += dst_stride_argb; in I420ToARGBMatrix()
129 uint8_t* dst_argb, in I420ToARGB() argument
134 src_stride_v, dst_argb, dst_stride_argb, in I420ToARGB()
[all …]
Drow_gcc.cc155 void J400ToARGBRow_SSE2(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_SSE2() argument
176 "+r"(dst_argb), // %1 in J400ToARGBRow_SSE2()
185 uint8_t* dst_argb, in RGB24ToARGBRow_SSSE3() argument
218 "+r"(dst_argb), // %1 in RGB24ToARGBRow_SSSE3()
224 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument
256 "+r"(dst_argb), // %1 in RAWToARGBRow_SSSE3()
2010 uint8_t* dst_argb, in I444ToARGBRow_SSSE3() argument
2028 [dst_argb]"+r"(dst_argb), // %[dst_argb] in I444ToARGBRow_SSSE3()
2085 uint8_t* dst_argb, in I422ToARGBRow_SSSE3() argument
2103 [dst_argb]"+r"(dst_argb), // %[dst_argb] in I422ToARGBRow_SSSE3()
[all …]
Drotate_argb.cc26 uint8_t* dst_argb, in ARGBTranspose() argument
34 uint8_t* dst_argb, int dst_width) = ScaleARGBRowDownEven_C; in ARGBTranspose()
69 ScaleARGBRowDownEven(src_argb, 0, src_pixel_step, dst_argb, height); in ARGBTranspose()
70 dst_argb += dst_stride_argb; in ARGBTranspose()
77 uint8_t* dst_argb, in ARGBRotate90() argument
86 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
92 uint8_t* dst_argb, in ARGBRotate270() argument
99 dst_argb += dst_stride_argb * (width - 1); in ARGBRotate270()
101 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
107 uint8_t* dst_argb, in ARGBRotate180() argument
[all …]
Dconvert_to_argb.cc42 uint8_t* dst_argb, in ConvertToARGB() argument
66 (rotation && format != FOURCC_ARGB) || dst_argb == sample; in ConvertToARGB()
67 uint8_t* dest_argb = dst_argb; in ConvertToARGB()
72 if (dst_argb == NULL || sample == NULL || src_width <= 0 || crop_width <= 0 || in ConvertToARGB()
86 dst_argb = rotate_buffer; in ConvertToARGB()
94 r = YUY2ToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
99 r = UYVYToARGB(src, aligned_src_width * 2, dst_argb, dst_stride_argb, in ConvertToARGB()
104 r = RGB24ToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
109 r = RAWToARGB(src, src_width * 3, dst_argb, dst_stride_argb, crop_width, in ConvertToARGB()
115 r = ARGBToARGB(src, src_width * 4, dst_argb, dst_stride_argb, in ConvertToARGB()
[all …]
Drow_neon.cc112 uint8_t* dst_argb, in I444ToARGBRow_NEON() argument
125 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
138 uint8_t* dst_argb, in I422ToARGBRow_NEON() argument
151 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
165 uint8_t* dst_argb, in I422AlphaToARGBRow_NEON() argument
179 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON()
345 void I400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in I400ToARGBRow_NEON() argument
354 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
364 void J400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_NEON() argument
375 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
Drow_neon64.cc118 uint8_t* dst_argb, in I444ToARGBRow_NEON() argument
133 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON()
147 uint8_t* dst_argb, in I422ToARGBRow_NEON() argument
162 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON()
177 uint8_t* dst_argb, in I422AlphaToARGBRow_NEON() argument
193 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON()
373 void I400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in I400ToARGBRow_NEON() argument
384 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON()
395 void J400ToARGBRow_NEON(const uint8_t* src_y, uint8_t* dst_argb, int width) { in J400ToARGBRow_NEON() argument
406 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON()
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_argb.h35 uint8_t* dst_argb,
48 uint8_t* dst_argb,
74 uint8_t* dst_argb,
87 uint8_t* dst_argb,
113 uint8_t* dst_argb,
139 uint8_t* dst_argb,
152 uint8_t* dst_argb,
165 uint8_t* dst_argb,
193 uint8_t* dst_argb,
219 uint8_t* dst_argb,
[all …]
Dplanar_functions.h289 uint8_t* dst_argb,
374 int ARGBRect(uint8_t* dst_argb,
386 uint8_t* dst_argb,
393 int ARGBGray(uint8_t* dst_argb,
402 int ARGBSepia(uint8_t* dst_argb,
418 uint8_t* dst_argb,
431 int RGBColorMatrix(uint8_t* dst_argb,
442 int ARGBColorTable(uint8_t* dst_argb,
453 int RGBColorTable(uint8_t* dst_argb,
467 uint8_t* dst_argb,
[all …]
/external/libyuv/files/include/libyuv/
Dconvert_argb.h35 uint8_t* dst_argb,
48 uint8_t* dst_argb,
74 uint8_t* dst_argb,
87 uint8_t* dst_argb,
113 uint8_t* dst_argb,
139 uint8_t* dst_argb,
152 uint8_t* dst_argb,
165 uint8_t* dst_argb,
193 uint8_t* dst_argb,
219 uint8_t* dst_argb,
[all …]

1234