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

  /external/libvpx/libvpx/test/
resize_util.sh 52 local target_width=$((${YUV_RAW_INPUT_WIDTH} / 2))
55 resize_util "${target_width}x${target_height}"
60 local target_width=$((${YUV_RAW_INPUT_WIDTH} * 2))
63 resize_util "${target_width}x${target_height}"
  /external/libvpx/libvpx/examples/
resize_util.c 25 printf("%s <input_yuv> <width>x<height> <target_width>x<target_height> ",
54 int width, height, target_width, target_height; local
71 if (!parse_dim(argv[3], &target_width, &target_height)) {
95 printf("Target size: %dx%d, Frames: ", target_width, target_height);
102 outbuf = (uint8_t *)malloc(target_width * target_height * 3 / 2);
105 outbuf_u = outbuf + target_width * target_height;
106 outbuf_v = outbuf_u + target_width * target_height / 4;
111 width, outbuf, target_width, outbuf_u, outbuf_v,
112 target_width / 2, target_height, target_width);
    [all...]
  /external/webrtc/webrtc/test/
frame_generator.h 46 // is the size of the source images, target_width/target_height is the size of
56 size_t target_width,
frame_generator.cc 137 size_t target_width,
152 RTC_DCHECK_GE(source_width, target_width);
156 current_frame_.CreateEmptyFrame(static_cast<int>(target_width),
158 static_cast<int>(target_width),
159 static_cast<int>((target_width + 1) / 2),
160 static_cast<int>((target_width + 1) / 2));
262 size_t target_width,
275 clock, files, source_width, source_height, target_width, target_height,
  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.cc 31 int target_width,
43 // The |source_data| is cropped and scaled to |target_width| x |target_height|,
49 int target_width,
310 int target_width,
314 ASSERT_EQ(VPM_OK, vpm->SetTargetResolution(target_width, target_height, 30));
319 if (target_width == source.width() && target_height == source.height()) {
328 EXPECT_EQ(target_width, (out_frame)->width());
350 int target_width,
357 PreprocessFrameAndVerify(source_frame, target_width, target_height, vpm,
376 psnr, source_frame.width(), source_frame.height(), target_width,
    [all...]
  /external/webrtc/webrtc/modules/video_capture/
video_capture_impl.cc 263 int target_width = width; local
273 target_width = abs(height);
279 //Calc16ByteAlignedStride(target_width, &stride_y, &stride_uv);
283 int ret = _captureFrame.CreateEmptyFrame(target_width,
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
blit_engine_c2d.cpp 314 int target_width = 0; local
345 target_width = std::max(target_width, width);
359 if (blit_needed && (AllocateBlitTargetBuffers(target_width, target_height,
370 layer->input_buffer->width = target_width;
  /hardware/qcom/display/msm8998/sdm/libs/hwc/
blit_engine_c2d.cpp 320 int target_width = 0; local
352 target_width = std::max(target_width, width);
372 if (blit_needed && (AllocateBlitTargetBuffers(target_width, target_height,
385 layer->input_buffer.unaligned_width = target_width;

Completed in 242 milliseconds