OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:target_width
(Results
1 - 4
of
4
) sorted by null
/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;
107
outbuf,
target_width
, outbuf_u, outbuf_v,
108
target_width
/ 2,
109
target_height,
target_width
);
[
all
...]
/external/libvpx/libvpx/examples/
resize_util.c
25
printf("%s <input_yuv> <width>x<height> <
target_width
>x<target_height> ",
56
int width, height,
target_width
, target_height;
local
73
if (!parse_dim(argv[3], &
target_width
, &target_height)) {
99
target_width
, target_height);
106
outbuf = (uint8_t*)malloc(
target_width
* target_height * 3 / 2);
109
outbuf_u = outbuf +
target_width
* target_height;
110
outbuf_v = outbuf_u +
target_width
* target_height / 4;
117
outbuf,
target_width
, outbuf_u, outbuf_v,
118
target_width
/ 2,
119
target_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
;
Completed in 765 milliseconds