HomeSort by relevance Sort by last modified time
    Searched refs:dst_height (Results 1 - 10 of 10) sorted by null

  /external/libyuv/files/include/libyuv/
general.h 37 int dst_width, int dst_height);
43 int dst_width, int dst_height);
scale.h 42 int dst_width, int dst_height,
47 // and stretched to (dst_height - dst_height_offset * 2) pixels high,
48 // instead of dst_height.
50 uint8* dst, int dst_width, int dst_height, int dst_height_offset,
59 int dst_width, int dst_height,
  /external/libyuv/files/source/
general.cc 75 int dst_width, int dst_height)
80 if (src_width == dst_width && src_height == dst_height) {
82 return 3 * dst_height * dst_width / 2;
84 if (dst_width > src_width || dst_height > src_height) {
92 int halfdst_height = dst_height / 2;
95 int crop_height = ( src_height - dst_height ) / 2;
98 for (i = src_width * crop_height + crop_width; loop < dst_height ;
124 int dst_width, int dst_height)
126 if (src_width < 1 || dst_width < 1 || src_height < 1 || dst_height < 1) {
129 if (src_width == dst_width && src_height == dst_height) {
    [all...]
scale.cc     [all...]
  /external/libyuv/files/unit_test/
scale_test.cc 47 int dst_height = src_height >> 2; local
50 int dst_height_uv = (dst_height + 1) >> 1;
52 int dst_y_plane_size = (dst_width + (2 * b)) * (dst_height + (2 * b));
120 dst_width, dst_height,
129 for (i = b; i < (dst_height + b); ++i) {
  /external/webp/src/dec/
webpi.h 37 int dst_width, dst_height; // destination dimensions member in struct:__anon13754
io.c 426 int dst_width, int dst_height, int dst_stride,
433 wrk->dst_height = dst_height;
445 ((int64_t)dst_height << RFIX) / (x_sub * src_height) :
446 ((int64_t)dst_height << RFIX) / (x_add * src_height);
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
nine_box.cc 113 int dst_height = dst->allocation.height; local
120 int y2 = images_[6] ? dst_height - gdk_pixbuf_get_height(images_[6]) : y1;
159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity);
  /external/webp/src/enc/
picture.c 280 int dst_width, int dst_height, int dst_stride,
283 const int fy_scale = (1 << RFIX) / dst_height;
285 ((int64_t)dst_height << RFIX) / (dst_width * src_height) :
286 ((int64_t)dst_height << RFIX) / (src_width * src_height);
298 y_accum -= dst_height;
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
deblock.cpp 117 int i, j, dst_width, dst_height, dst_widthc, dst_heightc; local
194 dst_height = 20;
202 dst_height = 16;
232 for (j = 0; j < dst_height; j++)
    [all...]

Completed in 211 milliseconds