HomeSort by relevance Sort by last modified time
    Searched full:src_stride_argb (Results 1 - 25 of 34) sorted by null

1 2

  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
convert_from_argb.h 24 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...]
scale_argb.h 23 int ARGBScale(const uint8* src_argb, int src_stride_argb,
31 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb,
rotate_argb.h 24 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
planar_functions.h 137 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
195 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
216 int ARGBColorMatrix(const uint8* src_argb, int src_stride_argb,
250 int ARGBLumaColorTable(const uint8* src_argb, int src_stride_argb,
264 int ARGBPolynomial(const uint8* src_argb, int src_stride_argb,
280 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
286 int ARGBCopyAlpha(const uint8* src_argb, int src_stride_argb,
350 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
356 int ARGBUnattenuate(const uint8* src_argb, int src_stride_argb,
370 int ARGBComputeCumulativeSum(const uint8* src_argb, int src_stride_argb,
    [all...]
row.h 598 void ARGBToUVRow_NEON(const uint8* src_argb, int src_stride_argb,
600 void ARGBToUVJRow_NEON(const uint8* src_argb, int src_stride_argb,
654 void ARGBToUVRow_AVX2(const uint8* src_argb, int src_stride_argb,
656 void ARGBToUVRow_Any_AVX2(const uint8* src_argb, int src_stride_argb,
658 void ARGBToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb,
660 void ARGBToUVJRow_SSSE3(const uint8* src_argb, int src_stride_argb,
668 void ARGBToUVRow_Any_SSSE3(const uint8* src_argb, int src_stride_argb,
670 void ARGBToUVJRow_Any_SSSE3(const uint8* src_argb, int src_stride_argb,
684 void ARGBToUVRow_Any_NEON(const uint8* src_argb, int src_stride_argb,
686 void ARGBToUVJRow_Any_NEON(const uint8* src_argb, int src_stride_argb,
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
convert_from_argb.cc 25 int ARGBToI444(const uint8* src_argb, int src_stride_argb,
40 src_argb = src_argb + (height - 1) * src_stride_argb;
41 src_stride_argb = -src_stride_argb;
44 if (src_stride_argb == width * 4 &&
50 src_stride_argb = dst_stride_y = dst_stride_u = dst_stride_v = 0;
96 src_argb += src_stride_argb;
106 int ARGBToI422(const uint8* src_argb, int src_stride_argb,
121 src_argb = src_argb + (height - 1) * src_stride_argb;
122 src_stride_argb = -src_stride_argb
    [all...]
rotate_argb.cc 161 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
171 src_argb = src_argb + (height - 1) * src_stride_argb;
172 src_stride_argb = -src_stride_argb;
178 return ARGBCopy(src_argb, src_stride_argb,
182 ARGBRotate90(src_argb, src_stride_argb,
187 ARGBRotate270(src_argb, src_stride_argb,
192 ARGBRotate180(src_argb, src_stride_argb,
planar_functions.cc 482 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
494 src_argb = src_argb + (height - 1) * src_stride_argb;
495 src_stride_argb = -src_stride_argb;
525 src_argb += src_stride_argb;
    [all...]
convert.cc 516 int ARGBToI420(const uint8* src_argb, int src_stride_argb,
522 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
534 src_argb = src_argb + (height - 1) * src_stride_argb;
535 src_stride_argb = -src_stride_argb;
575 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width);
577 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width);
578 src_argb += src_stride_argb * 2;
804 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
918 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
    [all...]
convert_argb.cc 28 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
38 src_argb = src_argb + (height - 1) * src_stride_argb;
39 src_stride_argb = -src_stride_argb;
42 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
    [all...]
scale_argb.cc 812 int ARGBScaleClip(const uint8* src_argb, int src_stride_argb,
826 ScaleARGB(src_argb, src_stride_argb, src_width, src_height,
834 int ARGBScale(const uint8* src_argb, int src_stride_argb,
844 ScaleARGB(src_argb, src_stride_argb, src_width, src_height,
  /external/libyuv/files/source/
planar_functions.cc 269 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
278 src_argb = src_argb + (height - 1) * src_stride_argb;
279 src_stride_argb = -src_stride_argb;
286 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16) &&
295 src_argb += src_stride_argb;
351 int ARGBToI400(const uint8* src_argb, int src_stride_argb,
359 src_argb = src_argb + (height - 1) * src_stride_argb;
360 src_stride_argb = -src_stride_argb;
    [all...]
rotate_argb.cc 130 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
141 src_argb = src_argb + (height - 1) * src_stride_argb;
142 src_stride_argb = -src_stride_argb;
148 return ARGBCopy(src_argb, src_stride_argb,
152 ARGBRotate90(src_argb, src_stride_argb,
157 ARGBRotate270(src_argb, src_stride_argb,
162 ARGBRotate180(src_argb, src_stride_argb,
format_conversion.cc 138 int ARGBToBayer(const uint8* src_argb, int src_stride_argb,
144 src_argb = src_argb + (height - 1) * src_stride_argb;
145 src_stride_argb = -src_stride_argb;
152 IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) {
167 src_argb += src_stride_argb;
376 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
527 int ARGBToBayer##BAYER(const uint8* src_argb, int src_stride_argb, \
530 return ARGBToBayer(src_argb, src_stride_argb, \
convert.cc 926 int ARGBToI420(const uint8* src_argb, int src_stride_argb,
939 src_argb = src_argb + (height - 1) * src_stride_argb;
940 src_stride_argb = -src_stride_argb;
943 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb,
957 if (IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) {
968 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width);
970 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width);
971 src_argb += src_stride_argb * 2;
    [all...]
convert_argb.cc 31 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
41 src_argb = src_argb + (height - 1) * src_stride_argb;
42 src_stride_argb = -src_stride_argb;
45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
    [all...]
scale_argb.cc     [all...]
  /external/libyuv/files/unit_test/
rotate_argb_test.cc 25 int src_stride_argb = (b * 2 + src_width) * 4; local
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff);
49 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
53 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
60 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
69 ARGBRotate(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
    [all...]
scale_argb_test.cc 25 int src_stride_argb = (b * 2 + src_width) * 4; local
38 src_argb[(i * src_stride_argb) + j] = (random() & 0xff);
49 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
54 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
62 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
72 ARGBScale(src_argb + (src_stride_argb * b) + b * 4, src_stride_argb,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
row.h 84 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
86 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
88 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
97 void RGB24ToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
99 void RAWToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
115 void ARGBToUVRow_C(const uint8* src_argb0, int src_stride_argb,
117 void BGRAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
119 void ABGRToUVRow_C(const uint8* src_argb0, int src_stride_argb,
121 void RGB24ToUVRow_C(const uint8* src_argb0, int src_stride_argb,
123 void RAWToUVRow_C(const uint8* src_argb0, int src_stride_argb,
    [all...]
  /external/libyuv/files/include/libyuv/
planar_functions.h 74 int ARGBMirror(const uint8* src_argb, int src_stride_argb,
104 int ARGBToRGB24(const uint8* src_argb, int src_stride_argb,
110 int ARGBToRAW(const uint8* src_argb, int src_stride_argb,
116 int ARGBToRGB565(const uint8* src_argb, int src_stride_argb,
122 int ARGBToARGB1555(const uint8* src_argb, int src_stride_argb,
128 int ARGBToARGB4444(const uint8* src_argb, int src_stride_argb,
134 int ARGBToI400(const uint8* src_argb, int src_stride_argb,
186 int ARGBGrayTo(const uint8* src_argb, int src_stride_argb,
228 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
265 int ARGBAttenuate(const uint8* src_argb, int src_stride_argb,
    [all...]
format_conversion.h 135 int ARGBToBayerBGGR(const uint8* src_argb, int src_stride_argb,
140 int ARGBToBayerGBRG(const uint8* src_argb, int src_stride_argb,
145 int ARGBToBayerGRBG(const uint8* src_argb, int src_stride_argb,
150 int ARGBToBayerRGGB(const uint8* src_argb, int src_stride_argb,
158 int ARGBToBayer(const uint8* src_argb, int src_stride_argb,
rotate_argb.h 24 int ARGBRotate(const uint8* src_argb, int src_stride_argb,
scale_argb.h 23 int ARGBScale(const uint8* src_argb, int src_stride_argb,
row.h 227 void ARGBToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
229 void BGRAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
231 void ABGRToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
233 void RGBAToUVRow_SSSE3(const uint8* src_argb0, int src_stride_argb,
235 void ARGBToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
237 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
239 void ABGRToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
241 void RGBAToUVRow_Unaligned_SSSE3(const uint8* src_argb0, int src_stride_argb,
279 void ARGBToUVRow_C(const uint8* src_argb0, int src_stride_argb,
281 void BGRAToUVRow_C(const uint8* src_argb0, int src_stride_argb,
    [all...]

Completed in 818 milliseconds

1 2