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

  /external/chromium_org/third_party/libvpx/source/libvpx/test/
resize_util.sh 53 local target_height=$((${YUV_RAW_INPUT_HEIGHT} / 2))
55 resize_util "${target_width}x${target_height}"
61 local target_height=$((${YUV_RAW_INPUT_HEIGHT} * 2))
63 resize_util "${target_width}x${target_height}"
  /external/chromium_org/ui/gfx/
platform_font_win_unittest.cc 16 // Returns a font based on |base_font| with height at most |target_height| and
19 int target_height) {
21 if (base_font.GetHeight() < target_height) {
22 // Increase size while height is <= |target_height|.
24 while (larger_font.GetHeight() <= target_height) {
28 } else if (expected_font.GetHeight() > target_height) {
29 // Decrease size until height is <= |target_height|.
32 } while (expected_font.GetHeight() > target_height);
45 const int target_height = base_font.GetHeight() + i; local
46 Font expected_font = AdjustFontSizeForHeight(base_font, target_height);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
48 int width, height, target_width, target_height; local
63 if (!parse_dim(argv[3], &target_width, &target_height)) {
89 target_width, target_height);
96 outbuf = (uint8_t*)malloc(target_width * target_height * 3 / 2);
99 outbuf_u = outbuf + target_width * target_height;
100 outbuf_v = outbuf_u + target_width * target_height / 4;
109 target_height, target_width);
110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
  /external/libvpx/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
48 int width, height, target_width, target_height; local
63 if (!parse_dim(argv[3], &target_width, &target_height)) {
89 target_width, target_height);
96 outbuf = (uint8_t*)malloc(target_width * target_height * 3 / 2);
99 outbuf_u = outbuf + target_width * target_height;
100 outbuf_v = outbuf_u + target_width * target_height / 4;
109 target_height, target_width);
110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
resize_util.c 22 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
48 int width, height, target_width, target_height; local
63 if (!parse_dim(argv[3], &target_width, &target_height)) {
89 target_width, target_height);
96 outbuf = (uint8_t*)malloc(target_width * target_height * 3 / 2);
99 outbuf_u = outbuf + target_width * target_height;
100 outbuf_v = outbuf_u + target_width * target_height / 4;
109 target_height, target_width);
110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_impl.cc 288 int target_height = height; local
292 target_height = width;
300 abs(target_height),
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 264 // Returns height that is as close as possible to |target_height| while
266 int GetWindowHeightCloseTo(const aura::Window* window, int target_height) {
281 target_height = std::max(target_height, minimum_height);
283 target_height = std::min(target_height, maximum_height);
284 return target_height;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.cc 3904 int target_height = new_height; local
    [all...]

Completed in 1136 milliseconds