Searched defs:crop_argb (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_to_argb.cc33 uint8* crop_argb, int argb_stride,
50 // For in-place conversion, if destination crop_argb is same as source sample,
53 crop_argb == sample;
54 uint8* dest_argb = crop_argb;
59 if (crop_argb == NULL || sample == NULL ||
74 crop_argb = rotate_buffer;
83 crop_argb, argb_stride,
89 crop_argb, argb_stride,
95 crop_argb, argb_stride,
101 crop_argb, argb_strid
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_to_argb.cc34 uint8* crop_argb,
55 // For in-place conversion, if destination crop_argb is same as source sample,
58 (rotation && format != FOURCC_ARGB) || crop_argb == sample;
59 uint8* dest_argb = crop_argb;
64 if (crop_argb == NULL || sample == NULL || src_width <= 0 ||
78 crop_argb = rotate_buffer;
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_strid
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...]

Completed in 966 milliseconds