Home
last modified time | relevance | path

Searched refs:src_stride_argb (Results 1 – 25 of 37) sorted by relevance

12

/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from_argb.cc25 int ARGBToI444(const uint8* src_argb, int src_stride_argb, in ARGBToI444() argument
40 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
41 src_stride_argb = -src_stride_argb; in ARGBToI444()
44 if (src_stride_argb == width * 4 && in ARGBToI444()
50 src_stride_argb = dst_stride_y = dst_stride_u = dst_stride_v = 0; 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 (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGBToI422()
124 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI422()
125 src_stride_argb = -src_stride_argb; in ARGBToI422()
[all …]
Dplanar_functions.cc615 int ARGBMirror(const uint8* src_argb, int src_stride_argb, in ARGBMirror() argument
627 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
628 src_stride_argb = -src_stride_argb; in ARGBMirror()
658 src_argb += src_stride_argb; in ARGBMirror()
1423 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb, in ARGBAttenuate() argument
1434 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBAttenuate()
1435 src_stride_argb = -src_stride_argb; in ARGBAttenuate()
1438 if (src_stride_argb == width * 4 && in ARGBAttenuate()
1442 src_stride_argb = dst_stride_argb = 0; in ARGBAttenuate()
1471 src_argb += src_stride_argb; in ARGBAttenuate()
[all …]
Drotate_argb.cc161 int ARGBRotate(const uint8* src_argb, int src_stride_argb, in ARGBRotate() argument
171 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
172 src_stride_argb = -src_stride_argb; in ARGBRotate()
178 return ARGBCopy(src_argb, src_stride_argb, in ARGBRotate()
182 ARGBRotate90(src_argb, src_stride_argb, in ARGBRotate()
187 ARGBRotate270(src_argb, src_stride_argb, in ARGBRotate()
192 ARGBRotate180(src_argb, src_stride_argb, in ARGBRotate()
Dconvert.cc479 int ARGBToI420(const uint8* src_argb, int src_stride_argb, in ARGBToI420() argument
485 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGBToI420()
497 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI420()
498 src_stride_argb = -src_stride_argb; in ARGBToI420()
538 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width); in ARGBToI420()
540 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width); in ARGBToI420()
541 src_argb += src_stride_argb * 2; in ARGBToI420()
767 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB24ToI420()
881 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RAWToI420()
995 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB565ToI420()
[all …]
Dscale_argb.cc788 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb, in ARGBScaleClip() argument
802 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, in ARGBScaleClip()
810 int ARGBScale(const uint8* src_argb, int src_stride_argb, in ARGBScale() argument
820 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, in ARGBScale()
/external/libyuv/files/source/
Dconvert_from_argb.cc26 int src_stride_argb, in ARGBToI444() argument
45 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI444()
46 src_stride_argb = -src_stride_argb; in ARGBToI444()
49 if (src_stride_argb == width * 4 && dst_stride_y == width && in ARGBToI444()
53 src_stride_argb = dst_stride_y = dst_stride_u = dst_stride_v = 0; in ARGBToI444()
123 src_argb += src_stride_argb; in ARGBToI444()
134 int src_stride_argb, in ARGBToI422() argument
144 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, in ARGBToI422()
154 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI422()
155 src_stride_argb = -src_stride_argb; in ARGBToI422()
[all …]
Dplanar_functions.cc772 int src_stride_argb, in ARGBMirror() argument
786 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBMirror()
787 src_stride_argb = -src_stride_argb; in ARGBMirror()
825 src_argb += src_stride_argb; in ARGBMirror()
1689 int src_stride_argb, in ARGBAttenuate() argument
1702 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBAttenuate()
1703 src_stride_argb = -src_stride_argb; in ARGBAttenuate()
1706 if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) { in ARGBAttenuate()
1709 src_stride_argb = dst_stride_argb = 0; in ARGBAttenuate()
1746 src_argb += src_stride_argb; in ARGBAttenuate()
[all …]
Drotate_argb.cc197 int src_stride_argb, in ARGBRotate() argument
210 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBRotate()
211 src_stride_argb = -src_stride_argb; in ARGBRotate()
217 return ARGBCopy(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBRotate()
220 ARGBRotate90(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()
224 ARGBRotate270(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()
228 ARGBRotate180(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width, in ARGBRotate()
Dconvert.cc523 int src_stride_argb, in ARGBToI420() argument
533 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, in ARGBToI420()
543 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI420()
544 src_stride_argb = -src_stride_argb; in ARGBToI420()
616 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width); in ARGBToI420()
618 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width); in ARGBToI420()
619 src_argb += src_stride_argb * 2; in ARGBToI420()
955 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, in RGB24ToI420()
1085 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, in RAWToI420()
1216 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, uint8* dst_u, in RGB565ToI420()
[all …]
Drow_neon.cc1390 int src_stride_argb, in ARGBToUVRow_NEON() argument
1430 "+r"(src_stride_argb), // %1 in ARGBToUVRow_NEON()
1442 int src_stride_argb, in ARGBToUVJRow_NEON() argument
1482 "+r"(src_stride_argb), // %1 in ARGBToUVJRow_NEON()
Dscale_argb.cc908 int src_stride_argb, in ARGBScaleClip() argument
927 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, dst_argb, in ARGBScaleClip()
936 int src_stride_argb, in ARGBScale() argument
948 ScaleARGB(src_argb, src_stride_argb, src_width, src_height, dst_argb, in ARGBScale()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h24 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
30 int ARGBToBGRA(const uint8* src_argb, int src_stride_argb,
36 int ARGBToABGR(const uint8* src_argb, int src_stride_argb,
42 int ARGBToRGBA(const uint8* src_argb, int src_stride_argb,
48 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
54 int ARGBToRAW(const uint8* src_argb, int src_stride_argb,
60 int ARGBToRGB565(const uint8* src_argb, int src_stride_argb,
70 int ARGBToRGB565Dither(const uint8* src_argb, int src_stride_argb,
76 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
82 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
[all …]
Dplanar_functions.h151 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
210 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
231 int ARGBColorMatrix(const uint8* src_argb, int src_stride_argb,
265 int ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb,
279 int ARGBPolynomial(const uint8* src_argb, int src_stride_argb,
295 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
301 int ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb,
307 int ARGBExtractAlpha(const uint8* src_argb, int src_stride_argb,
397 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
403 int ARGBUnattenuate(const uint8* src_argb, int src_stride_argb,
[all …]
Dscale_argb.h23 int ARGBScale(const uint8* src_argb, int src_stride_argb,
31 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb,
Drotate_argb.h24 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
Drow.h665 void ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb,
667 void ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb,
723 void ARGBToUVRow_AVX2(const uint8* src_argb, int src_stride_argb,
725 void ARGBToUVJRow_AVX2(const uint8* src_argb, int src_stride_argb,
727 void ARGBToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb,
729 void ARGBToUVJRow_SSSE3(const uint8* src_argb, int src_stride_argb,
737 void ARGBToUVRow_Any_AVX2(const uint8* src_argb, int src_stride_argb,
739 void ARGBToUVJRow_Any_AVX2(const uint8* src_argb, int src_stride_argb,
741 void ARGBToUVRow_Any_SSSE3(const uint8* src_argb, int src_stride_argb,
743 void ARGBToUVJRow_Any_SSSE3(const uint8* src_argb, int src_stride_argb,
[all …]
/external/libyuv/files/include/libyuv/
Dconvert_from_argb.h25 int src_stride_argb,
34 int src_stride_argb,
43 int src_stride_argb,
52 int src_stride_argb,
61 int src_stride_argb,
70 int src_stride_argb,
79 int src_stride_argb,
92 int src_stride_argb,
102 int src_stride_argb,
111 int src_stride_argb,
[all …]
Dplanar_functions.h226 int src_stride_argb,
323 int src_stride_argb,
355 int src_stride_argb,
404 int src_stride_argb,
421 int src_stride_argb,
457 int src_stride_argb,
466 int src_stride_argb,
475 int src_stride_argb,
615 int src_stride_argb,
624 int src_stride_argb,
[all …]
Dscale_argb.h24 int src_stride_argb,
36 int src_stride_argb,
Drotate_argb.h25 int src_stride_argb,
Drow.h883 int src_stride_argb,
892 int src_stride_argb,
897 int src_stride_argb,
942 int src_stride_argb,
1016 int src_stride_argb,
1066 int src_stride_argb,
1071 int src_stride_argb,
1076 int src_stride_argb,
1081 int src_stride_argb,
1101 int src_stride_argb,
[all …]
/external/libyuv/files/unit_test/
Dscale_argb_test.cc42 int src_stride_argb = (b * 2 + Abs(src_width)) * 4; in ARGBTestFilter() local
65 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
69 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
75 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
84 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBTestFilter()
120 int src_stride_argb, in TileARGBScale() argument
138 int r = ARGBScaleClip(src_argb, src_stride_argb, src_width, src_height, in TileARGBScale()
162 int src_stride_argb = (b * 2 + Abs(src_width)) * 4; in ARGBClipTestFilter() local
177 src_argb[(i * src_stride_argb) + j] = (fastrand() & 0xff); in ARGBClipTestFilter()
192 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb, in ARGBClipTestFilter()
[all …]
Drotate_argb_test.cc40 int src_stride_argb = src_width * kBpp; in TestRotateBpp() local
41 int src_argb_plane_size = src_stride_argb * abs(src_height); in TestRotateBpp()
56 RotatePlane(src_argb, src_stride_argb, dst_argb_c, dst_stride_argb, in TestRotateBpp()
61 RotatePlane(src_argb, src_stride_argb, dst_argb_opt, dst_stride_argb, in TestRotateBpp()
66 ARGBRotate(src_argb, src_stride_argb, dst_argb_c, dst_stride_argb, in TestRotateBpp()
71 ARGBRotate(src_argb, src_stride_argb, dst_argb_opt, dst_stride_argb, in TestRotateBpp()
/external/libyuv/files/docs/
Drotation.md72 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
91 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
/external/libyuv/files/util/
Dyuvconvert.cc162 int src_stride_argb, in TileARGBScale() argument
180 int r = libyuv::ARGBScaleClip(src_argb, src_stride_argb, src_width, in TileARGBScale()

12