Searched refs:target_width (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/examples/ |
D | resize_util.c | 56 int width, height, target_width, target_height; in main() local 73 if (!parse_dim(argv[3], &target_width, &target_height)) { in main() 99 target_width, target_height); in main() 106 outbuf = (uint8_t*)malloc(target_width * target_height * 3 / 2); in main() 109 outbuf_u = outbuf + target_width * target_height; in main() 110 outbuf_v = outbuf_u + target_width * target_height / 4; in main() 117 outbuf, target_width, outbuf_u, outbuf_v, in main() 118 target_width / 2, in main() 119 target_height, target_width); in main() 120 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout); in main()
|
/external/libvpx/libvpx/test/ |
D | 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/webrtc/webrtc/test/ |
D | frame_generator.cc | 137 size_t target_width, in ScrollingImageFrameGenerator() argument 152 RTC_DCHECK_GE(source_width, target_width); in ScrollingImageFrameGenerator() 156 current_frame_.CreateEmptyFrame(static_cast<int>(target_width), in ScrollingImageFrameGenerator() 158 static_cast<int>(target_width), in ScrollingImageFrameGenerator() 159 static_cast<int>((target_width + 1) / 2), in ScrollingImageFrameGenerator() 160 static_cast<int>((target_width + 1) / 2)); in ScrollingImageFrameGenerator() 262 size_t target_width, in CreateScrollingInputFromYuvFiles() argument 275 clock, files, source_width, source_height, target_width, target_height, in CreateScrollingInputFromYuvFiles()
|
D | frame_generator.h | 56 size_t target_width,
|
/external/webrtc/webrtc/modules/video_processing/test/ |
D | video_processing_unittest.cc | 31 int target_width, 49 int target_width, 310 int target_width, argument 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, argument 357 PreprocessFrameAndVerify(source_frame, target_width, target_height, vpm, 376 psnr, source_frame.width(), source_frame.height(), target_width,
|
/external/webrtc/webrtc/modules/video_capture/ |
D | video_capture_impl.cc | 263 int target_width = width; in IncomingFrame() local 273 target_width = abs(height); in IncomingFrame() 283 int ret = _captureFrame.CreateEmptyFrame(target_width, in IncomingFrame()
|