Home
last modified time | relevance | path

Searched refs:src_argb (Results 1 – 25 of 85) sorted by relevance

1234

/external/libaom/libaom/third_party/libyuv/source/
Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, int src_stride_argb, in ARGBToI444() argument
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
33 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI444()
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
40 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
94 ARGBToUV444Row(src_argb, dst_u, dst_v, width); in ARGBToI444()
95 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
96 src_argb += src_stride_argb; in ARGBToI444()
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb, in ARGBToI422() argument
112 void (*ARGBToUV422Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI422()
[all …]
Drow_common.cc152 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument
155 uint8 b = src_argb[0]; in ARGBToRGB24Row_C()
156 uint8 g = src_argb[1]; in ARGBToRGB24Row_C()
157 uint8 r = src_argb[2]; in ARGBToRGB24Row_C()
162 src_argb += 4; in ARGBToRGB24Row_C()
166 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_C() argument
169 uint8 b = src_argb[0]; in ARGBToRAWRow_C()
170 uint8 g = src_argb[1]; in ARGBToRAWRow_C()
171 uint8 r = src_argb[2]; in ARGBToRAWRow_C()
176 src_argb += 4; in ARGBToRAWRow_C()
[all …]
Dscale_common.cc652 void ScaleARGBRowDown2_C(const uint8* src_argb, in ScaleARGBRowDown2_C() argument
655 const uint32* src = (const uint32*)(src_argb); in ScaleARGBRowDown2_C()
670 void ScaleARGBRowDown2Linear_C(const uint8* src_argb, in ScaleARGBRowDown2Linear_C() argument
675 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
676 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
677 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
678 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
679 src_argb += 8; in ScaleARGBRowDown2Linear_C()
684 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBRowDown2Box_C() argument
688 dst_argb[0] = (src_argb[0] + src_argb[4] + in ScaleARGBRowDown2Box_C()
[all …]
Dscale_argb.cc36 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown2() argument
41 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown2()
50 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown2()
52 src_argb += (y >> 16) * src_stride + ((x >> 16) - 1) * 4; in ScaleARGBDown2()
84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
85 src_argb += row_stride; in ScaleARGBDown2()
96 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown4Box() argument
103 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown4Box()
106 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown4Box()
127 ScaleARGBRowDown2(src_argb, src_stride, row, dst_width * 2); in ScaleARGBDown4Box()
[all …]
Dplanar_functions.cc482 int ARGBMirror(const uint8* src_argb, int src_stride_argb, in ARGBMirror() argument
488 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
494 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
524 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
525 src_argb += src_stride_argb; in ARGBMirror()
536 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
564 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
1244 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb, in ARGBAttenuate() argument
1248 void (*ARGBAttenuateRow)(const uint8* src_argb, uint8* dst_argb, in ARGBAttenuate()
1250 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBAttenuate()
[all …]
Drow_neon.cc1081 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1091 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
1099 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
1110 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1255 void ARGBShuffleRow_NEON(const uint8* src_argb, uint8* dst_argb, in ARGBShuffleRow_NEON() argument
1269 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
1331 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { in ARGBToRGB565Row_NEON() argument
1342 : "+r"(src_argb), // %0 in ARGBToRGB565Row_NEON()
1350 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument
1367 : "r"(src_argb), // %1 in ARGBToRGB565DitherRow_NEON()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from_argb.cc25 int ARGBToI444(const uint8_t* src_argb, in ARGBToI444() argument
36 void (*ARGBToYRow)(const uint8_t* src_argb, uint8_t* dst_y, int width) = in ARGBToI444()
38 void (*ARGBToUV444Row)(const uint8_t* src_argb, uint8_t* dst_u, in ARGBToI444()
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
113 ARGBToUV444Row(src_argb, dst_u, dst_v, width); in ARGBToI444()
114 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
115 src_argb += src_stride_argb; in ARGBToI444()
125 int ARGBToI422(const uint8_t* src_argb, in ARGBToI422() argument
139 void (*ARGBToYRow)(const uint8_t* src_argb, uint8_t* dst_y, int width) = in ARGBToI422()
[all …]
Drotate_argb.cc24 static void ARGBTranspose(const uint8_t* src_argb, in ARGBTranspose() argument
33 const uint8_t* src_argb, ptrdiff_t src_stride_argb, int src_step, in ARGBTranspose()
61 ScaleARGBRowDownEven(src_argb, 0, src_pixel_step, dst_argb, height); in ARGBTranspose()
63 src_argb += 4; in ARGBTranspose()
67 void ARGBRotate90(const uint8_t* src_argb, in ARGBRotate90() argument
76 src_argb += src_stride_argb * (height - 1); in ARGBRotate90()
78 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate90()
82 void ARGBRotate270(const uint8_t* src_argb, in ARGBRotate270() argument
93 ARGBTranspose(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate270()
97 void ARGBRotate180(const uint8_t* src_argb, in ARGBRotate180() argument
[all …]
Dscale_common.cc777 void ScaleARGBRowDown2_C(const uint8_t* src_argb, in ScaleARGBRowDown2_C() argument
781 const uint32_t* src = (const uint32_t*)(src_argb); in ScaleARGBRowDown2_C()
796 void ScaleARGBRowDown2Linear_C(const uint8_t* src_argb, in ScaleARGBRowDown2Linear_C() argument
803 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
804 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
805 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
806 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
807 src_argb += 8; in ScaleARGBRowDown2Linear_C()
812 void ScaleARGBRowDown2Box_C(const uint8_t* src_argb, in ScaleARGBRowDown2Box_C() argument
818 dst_argb[0] = (src_argb[0] + src_argb[4] + src_argb[src_stride] + in ScaleARGBRowDown2Box_C()
[all …]
Dscale_argb.cc39 const uint8_t* src_argb, in ScaleARGBDown2() argument
48 void (*ScaleARGBRowDown2)(const uint8_t* src_argb, ptrdiff_t src_stride, in ScaleARGBDown2()
61 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown2()
63 src_argb += (y >> 16) * src_stride + ((x >> 16) - 1) * 4; in ScaleARGBDown2()
119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
120 src_argb += row_stride; in ScaleARGBDown2()
134 const uint8_t* src_argb, in ScaleARGBDown4Box() argument
145 void (*ScaleARGBRowDown2)(const uint8_t* src_argb, ptrdiff_t src_stride, in ScaleARGBDown4Box()
149 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown4Box()
173 ScaleARGBRowDown2(src_argb, src_stride, row, dst_width * 2); in ScaleARGBDown4Box()
[all …]
Drow_neon.cc907 void ARGBToRGB24Row_NEON(const uint8_t* src_argb, in ARGBToRGB24Row_NEON() argument
917 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
925 void ARGBToRAWRow_NEON(const uint8_t* src_argb, uint8_t* dst_raw, int width) { in ARGBToRAWRow_NEON() argument
933 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1066 void ARGBShuffleRow_NEON(const uint8_t* src_argb, in ARGBShuffleRow_NEON() argument
1079 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
1131 void ARGBToRGB565Row_NEON(const uint8_t* src_argb, in ARGBToRGB565Row_NEON() argument
1141 : "+r"(src_argb), // %0 in ARGBToRGB565Row_NEON()
1148 void ARGBToRGB565DitherRow_NEON(const uint8_t* src_argb, in ARGBToRGB565DitherRow_NEON() argument
1164 : "r"(src_argb), // %1 in ARGBToRGB565DitherRow_NEON()
[all …]
Dscale_gcc.cc987 void ScaleARGBRowDown2_SSE2(const uint8_t* src_argb, in ScaleARGBRowDown2_SSE2() argument
1004 : "+r"(src_argb), // %0 in ScaleARGBRowDown2_SSE2()
1011 void ScaleARGBRowDown2Linear_SSE2(const uint8_t* src_argb, in ScaleARGBRowDown2Linear_SSE2() argument
1031 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Linear_SSE2()
1038 void ScaleARGBRowDown2Box_SSE2(const uint8_t* src_argb, in ScaleARGBRowDown2Box_SSE2() argument
1061 : "+r"(src_argb), // %0 in ScaleARGBRowDown2Box_SSE2()
1070 void ScaleARGBRowDownEven_SSE2(const uint8_t* src_argb, in ScaleARGBRowDownEven_SSE2() argument
1096 : "+r"(src_argb), // %0 in ScaleARGBRowDownEven_SSE2()
1107 void ScaleARGBRowDownEvenBox_SSE2(const uint8_t* src_argb, in ScaleARGBRowDownEvenBox_SSE2() argument
1142 : "+r"(src_argb), // %0 in ScaleARGBRowDownEvenBox_SSE2()
[all …]
/external/libyuv/files/source/
Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, in ARGBToI444() argument
36 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int width) = in ARGBToI444()
38 void (*ARGBToUV444Row)(const uint8* src_argb, uint8* dst_u, uint8* dst_v, in ARGBToI444()
40 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
121 ARGBToUV444Row(src_argb, dst_u, dst_v, width); in ARGBToI444()
122 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
123 src_argb += src_stride_argb; in ARGBToI444()
133 int ARGBToI422(const uint8* src_argb, in ARGBToI422() argument
146 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int width) = in ARGBToI422()
[all …]
Dscale_common.cc775 void ScaleARGBRowDown2_C(const uint8* src_argb, in ScaleARGBRowDown2_C() argument
779 const uint32* src = (const uint32*)(src_argb); in ScaleARGBRowDown2_C()
794 void ScaleARGBRowDown2Linear_C(const uint8* src_argb, in ScaleARGBRowDown2Linear_C() argument
801 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
802 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
803 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
804 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C()
805 src_argb += 8; in ScaleARGBRowDown2Linear_C()
810 void ScaleARGBRowDown2Box_C(const uint8* src_argb, in ScaleARGBRowDown2Box_C() argument
816 dst_argb[0] = (src_argb[0] + src_argb[4] + src_argb[src_stride] + in ScaleARGBRowDown2Box_C()
[all …]
Dscale_argb.cc39 const uint8* src_argb, in ScaleARGBDown2() argument
48 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown2()
61 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown2()
63 src_argb += (y >> 16) * src_stride + ((x >> 16) - 1) * 4; in ScaleARGBDown2()
119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2()
120 src_argb += row_stride; in ScaleARGBDown2()
134 const uint8* src_argb, in ScaleARGBDown4Box() argument
145 void (*ScaleARGBRowDown2)(const uint8* src_argb, ptrdiff_t src_stride, in ScaleARGBDown4Box()
149 src_argb += (y >> 16) * src_stride + (x >> 16) * 4; in ScaleARGBDown4Box()
173 ScaleARGBRowDown2(src_argb, src_stride, row, dst_width * 2); in ScaleARGBDown4Box()
[all …]
Drow_common.cc168 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument
171 uint8 b = src_argb[0]; in ARGBToRGB24Row_C()
172 uint8 g = src_argb[1]; in ARGBToRGB24Row_C()
173 uint8 r = src_argb[2]; in ARGBToRGB24Row_C()
178 src_argb += 4; in ARGBToRGB24Row_C()
182 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_C() argument
185 uint8 b = src_argb[0]; in ARGBToRAWRow_C()
186 uint8 g = src_argb[1]; in ARGBToRAWRow_C()
187 uint8 r = src_argb[2]; in ARGBToRAWRow_C()
192 src_argb += 4; in ARGBToRAWRow_C()
[all …]
Dplanar_functions.cc771 int ARGBMirror(const uint8* src_argb, in ARGBMirror() argument
780 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror()
786 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
824 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror()
825 src_argb += src_stride_argb; in ARGBMirror()
836 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in GetARGBBlend()
863 void (*ARGBBlendRow)(const uint8* src_argb, const uint8* src_argb1, in ARGBBlend()
1688 int ARGBAttenuate(const uint8* src_argb, in ARGBAttenuate() argument
1695 void (*ARGBAttenuateRow)(const uint8* src_argb, uint8* dst_argb, int width) = in ARGBAttenuate()
1697 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBAttenuate()
[all …]
Drow_neon.cc920 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int width) { in ARGBToRGB24Row_NEON() argument
929 : "+r"(src_argb), // %0 in ARGBToRGB24Row_NEON()
937 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int width) { in ARGBToRAWRow_NEON() argument
947 : "+r"(src_argb), // %0 in ARGBToRAWRow_NEON()
1096 void ARGBShuffleRow_NEON(const uint8* src_argb, in ARGBShuffleRow_NEON() argument
1112 : "+r"(src_argb), // %0 in ARGBShuffleRow_NEON()
1174 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int width) { in ARGBToRGB565Row_NEON() argument
1184 : "+r"(src_argb), // %0 in ARGBToRGB565Row_NEON()
1192 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, in ARGBToRGB565DitherRow_NEON() argument
1210 : "r"(src_argb), // %1 in ARGBToRGB565DitherRow_NEON()
[all …]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h24 int ARGBCopy(const uint8_t* src_argb,
33 int ARGBToBGRA(const uint8_t* src_argb,
42 int ARGBToABGR(const uint8_t* src_argb,
51 int ARGBToRGBA(const uint8_t* src_argb,
73 int ARGBToAR30(const uint8_t* src_argb,
82 int ARGBToRGB24(const uint8_t* src_argb,
91 int ARGBToRAW(const uint8_t* src_argb,
100 int ARGBToRGB565(const uint8_t* src_argb,
113 int ARGBToRGB565Dither(const uint8_t* src_argb,
123 int ARGBToARGB1555(const uint8_t* src_argb,
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h25 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
31 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb,
37 int ARGBToABGR(const uint8* src_argb, int src_stride_argb,
43 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb,
49 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
55 int ARGBToRAW(const uint8* src_argb, int src_stride_argb,
61 int ARGBToRGB565(const uint8* src_argb, int src_stride_argb,
71 int ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb,
77 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
83 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
[all …]
Drow.h580 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
581 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
582 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
583 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
584 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
585 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
591 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
592 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix);
593 void ARGBToUV444Row_NEON(const uint8* src_argb, uint8* dst_u, uint8* dst_v,
595 void ARGBToUV422Row_NEON(const uint8* src_argb, uint8* dst_u, uint8* dst_v,
[all …]
Dscale_row.h91 const uint8* src_argb, uint8* dst_argb,
98 const uint16* src_argb, uint16* dst_argb,
191 void ScaleARGBRowDown2_C(const uint8* src_argb,
194 void ScaleARGBRowDown2Linear_C(const uint8* src_argb,
197 void ScaleARGBRowDown2Box_C(const uint8* src_argb, ptrdiff_t src_stride,
199 void ScaleARGBRowDownEven_C(const uint8* src_argb, ptrdiff_t src_stride,
202 void ScaleARGBRowDownEvenBox_C(const uint8* src_argb,
206 void ScaleARGBCols_C(uint8* dst_argb, const uint8* src_argb,
208 void ScaleARGBCols64_C(uint8* dst_argb, const uint8* src_argb,
210 void ScaleARGBColsUp2_C(uint8* dst_argb, const uint8* src_argb,
[all …]
/external/libyuv/files/include/libyuv/
Dconvert_from_argb.h24 int ARGBCopy(const uint8* src_argb,
33 int ARGBToBGRA(const uint8* src_argb,
42 int ARGBToABGR(const uint8* src_argb,
51 int ARGBToRGBA(const uint8* src_argb,
60 int ARGBToRGB24(const uint8* src_argb,
69 int ARGBToRAW(const uint8* src_argb,
78 int ARGBToRGB565(const uint8* src_argb,
91 int ARGBToRGB565Dither(const uint8* src_argb,
101 int ARGBToARGB1555(const uint8* src_argb,
110 int ARGBToARGB4444(const uint8* src_argb,
[all …]
Drow.h863 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int width);
864 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int width);
865 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int width);
866 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int width);
867 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int width);
868 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int width);
874 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int width);
875 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int width);
876 void ARGBToYRow_MSA(const uint8* src_argb, uint8* dst_y, int width);
877 void ARGBToYJRow_MSA(const uint8* src_argb, uint8* dst_y, int width);
[all …]
Dscale_row.h122 const uint8* src_argb,
135 const uint16* src_argb,
309 void ScaleARGBRowDown2_C(const uint8* src_argb,
313 void ScaleARGBRowDown2Linear_C(const uint8* src_argb,
317 void ScaleARGBRowDown2Box_C(const uint8* src_argb,
321 void ScaleARGBRowDownEven_C(const uint8* src_argb,
326 void ScaleARGBRowDownEvenBox_C(const uint8* src_argb,
332 const uint8* src_argb,
337 const uint8* src_argb,
342 const uint8* src_argb,
[all …]

1234