Searched refs:abs_crop_height (Results 1 - 4 of 4) sorted by relevance

/external/libyuv/files/source/
H A Dconvert_to_i420.cc50 const int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height; local
64 (src_height < 0) ? -abs_crop_height : abs_crop_height;
77 int y_size = crop_width * abs_crop_height;
78 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2);
252 abs_crop_height, rotation);
H A Dconvert_to_argb.cc62 int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height; local
73 int argb_size = crop_width * 4 * abs_crop_height;
255 crop_width, abs_crop_height, rotation);
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_to_i420.cc44 const int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height; local
57 (src_height < 0) ? -abs_crop_height : abs_crop_height;
71 int y_size = crop_width * abs_crop_height;
72 int uv_size = ((crop_width + 1) / 2) * ((abs_crop_height + 1) / 2);
326 crop_width, abs_crop_height, rotation);
H A Dconvert_to_argb.cc57 int abs_crop_height = (crop_height < 0) ? -crop_height : crop_height; local
69 int argb_size = crop_width * 4 * abs_crop_height;
294 crop_width, abs_crop_height, rotation);

Completed in 62 milliseconds