Searched defs:argb_stride (Results 1 - 12 of 12) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_jpeg.cc228 int argb_stride; member in struct:libyuv::ARGBBuffers
241 dest->argb, dest->argb_stride,
243 dest->argb += rows * dest->argb_stride;
255 dest->argb, dest->argb_stride,
257 dest->argb += rows * dest->argb_stride;
269 dest->argb, dest->argb_stride,
271 dest->argb += rows * dest->argb_stride;
283 dest->argb, dest->argb_stride,
285 dest->argb += rows * dest->argb_stride;
295 dest->argb, dest->argb_stride,
304 MJPGToARGB(const uint8* sample, size_t sample_size, uint8* argb, int argb_stride, int w, int h, int dw, int dh) argument
[all...]
H A Dconvert_to_argb.cc33 uint8* crop_argb, int argb_stride,
55 int dest_argb_stride = argb_stride;
75 argb_stride = crop_width * 4;
83 crop_argb, argb_stride,
89 crop_argb, argb_stride,
95 crop_argb, argb_stride,
101 crop_argb, argb_stride,
107 crop_argb, argb_stride,
113 crop_argb, argb_stride,
119 crop_argb, argb_stride,
32 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
[all...]
/external/libyuv/files/source/
H A Dconvert_jpeg.cc187 int argb_stride; member in struct:libyuv::ARGBBuffers
198 dest->argb, dest->argb_stride, dest->w, rows);
199 dest->argb += rows * dest->argb_stride;
209 dest->argb, dest->argb_stride, dest->w, rows);
210 dest->argb += rows * dest->argb_stride;
220 dest->argb, dest->argb_stride, dest->w, rows);
221 dest->argb += rows * dest->argb_stride;
230 I400ToARGB(data[0], strides[0], dest->argb, dest->argb_stride, dest->w, rows);
231 dest->argb += rows * dest->argb_stride;
241 int argb_stride,
238 MJPGToARGB(const uint8* sample, size_t sample_size, uint8* argb, int argb_stride, int w, int h, int dw, int dh) argument
[all...]
H A Dconvert_to_argb.cc35 int argb_stride,
60 int dest_argb_stride = argb_stride;
79 argb_stride = crop_width * 4;
86 r = YUY2ToARGB(src, aligned_src_width * 2, crop_argb, argb_stride,
91 r = UYVYToARGB(src, aligned_src_width * 2, crop_argb, argb_stride,
96 r = RGB24ToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width,
101 r = RAWToARGB(src, src_width * 3, crop_argb, argb_stride, crop_width,
107 r = ARGBToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width,
113 r = BGRAToARGB(src, src_width * 4, crop_argb, argb_stride, crop_width,
118 r = ABGRToARGB(src, src_width * 4, crop_argb, argb_stride, crop_widt
32 ConvertToARGB(const uint8* sample, size_t sample_size, uint8* crop_argb, int argb_stride, int crop_x, int crop_y, int src_width, int src_height, int crop_width, int crop_height, enum RotationMode rotation, uint32 fourcc) argument
[all...]
/external/webp/src/dsp/
H A Dalpha_processing_neon.c134 static int ExtractAlpha_NEON(const uint8_t* argb, int argb_stride, argument
155 argb += argb_stride;
H A Dalpha_processing_sse41.c22 static int ExtractAlpha_SSE41(const uint8_t* argb, int argb_stride, argument
70 argb += argb_stride;
H A Dalpha_processing.c325 static int ExtractAlpha_C(const uint8_t* argb, int argb_stride, argument
337 argb += argb_stride;
H A Dalpha_processing_sse2.c101 static int ExtractAlpha_SSE2(const uint8_t* argb, int argb_stride, argument
138 argb += argb_stride;
/external/webp/include/webp/
H A Dencode.h297 // It is recommended to use ARGB input (*argb, argb_stride) for lossless
313 int argb_stride; // This is stride in pixels units, not bytes. member in struct:WebPPicture
/external/webp/src/webp/
H A Dencode.h297 // It is recommended to use ARGB input (*argb, argb_stride) for lossless
313 int argb_stride; // This is stride in pixels units, not bytes. member in struct:WebPPicture
/external/webp/src/enc/
H A Dpicture_csp_enc.c67 4, picture->argb_stride * sizeof(*picture->argb));
999 return ImportYUVAFromRGBA(r, g, b, a, 4, 4 * picture->argb_stride,
1044 const int argb_stride = 4 * picture->argb_stride; local
1052 dst += argb_stride;
1060 dst, dst + argb_stride, width);
1062 dst += 2 * argb_stride;
1071 uint32_t* const argb_dst = picture->argb + y * picture->argb_stride;
1119 dst += picture->argb_stride;
1129 dst += picture->argb_stride;
[all...]
H A Dvp8l_enc.c191 int width, int height, int argb_stride,
243 curr_row += argb_stride;
402 if (!AnalyzeEntropy(pic->argb, width, height, pic->argb_stride, use_palette,
1261 picture->argb + y * picture->argb_stride,
1425 const int src_stride = in_place ? enc->current_width_ : pic->argb_stride;
190 AnalyzeEntropy(const uint32_t* argb, int width, int height, int argb_stride, int use_palette, int palette_size, int transform_bits, EntropyIx* const min_entropy_ix, int* const red_and_blue_always_zero) argument

Completed in 168 milliseconds