HomeSort by relevance Sort by last modified time
    Searched refs:output_height (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/webrtc/talk/media/base/
videoframefactory.cc 40 int output_height) const {
47 cropped_input_height == output_height) {
56 std::swap(output_width, output_height);
63 output_frame_->GetHeight() != static_cast<size_t>(output_height)) {
65 cropped_input_frame->Stretch(output_width, output_height, true, true));
68 << output_height; local
videoframefactory.h 58 // |output_height|.
63 int output_height) const;
  /external/libvpx/libvpx/vp8/common/x86/
vp8_asm_stubs.c 25 unsigned int output_height,
36 unsigned int output_height,
46 unsigned int output_height,
56 unsigned int output_height,
67 unsigned int output_height,
78 unsigned int output_height,
87 unsigned int output_height,
96 unsigned int output_height,
105 unsigned int output_height,
114 unsigned int output_height,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
vp8_asm_stubs.c 25 unsigned int output_height,
36 unsigned int output_height,
46 unsigned int output_height,
56 unsigned int output_height,
67 unsigned int output_height,
78 unsigned int output_height,
87 unsigned int output_height,
96 unsigned int output_height,
105 unsigned int output_height,
114 unsigned int output_height,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_rendering.c 53 void ParseArgs(int argc, char **argv, unsigned int *output_width, unsigned int *output_height, double *acceptable_error, int *prompt);
55 void ParseArgs(int argc, char **argv, unsigned int *output_width, unsigned int *output_height, double *acceptable_error, int *prompt)
61 *output_height = DEFAULT_OUTPUT_HEIGHT;
74 if (sscanf(argv[++i], "%u", output_height) != 1)
133 unsigned int output_height; local
152 ParseArgs(argc, argv, &output_width, &output_height, &acceptable_error, &prompt);
181 window = XCreateSimpleWindow(display, root, 0, 0, output_width, output_height, 0, 0, colorkey);
273 assert(XvMCPutSurface(display, NULL, window, 0, 0, INPUT_WIDTH, INPUT_HEIGHT, 0, 0, output_width, output_height, XVMC_FRAME_PICTURE) == XvMCBadSurface);
301 0, 0, output_width, output_height,
xvmc_bench.c 56 unsigned int output_height; member in struct:Config
72 config->output_height = 0;
96 if (sscanf(argv[++i], "%u", &config->output_height) != 1)
167 if (config->output_height == 0)
168 config->output_height = config->input_height;
227 window = XCreateSimpleWindow(display, root, 0, 0, config.output_width, config.output_height, 0, 0, colorkey);
269 assert(XvMCPutSurface(display, &surface, window, 0, 0, config.input_width, config.input_height, 0, 0, config.output_width, config.output_height, XVMC_FRAME_PICTURE) == Success);
278 printf("Input: %u,%u\nOutput: %u,%u\n", config.input_width, config.input_height, config.output_width, config.output_height);
  /external/libjpeg-turbo/
wrrle.c 101 if (cinfo->output_width > 32767 || cinfo->output_height > 32767)
103 cinfo->output_height);
160 if (cinfo->output_scanline < cinfo->output_height) {
193 header.ymax = cinfo->output_height - 1;
217 progress->pub.pass_limit = cinfo->output_height;
224 for (row = cinfo->output_height-1; row >= 0; row--) {
237 for (row = cinfo->output_height-1; row >= 0; row--) {
301 cinfo->output_height, (JDIMENSION) 1);
jdapistd.c 110 while (cinfo->output_scanline < cinfo->output_height) {
115 cinfo->progress->pass_limit = (long) cinfo->output_height;
266 if (cinfo->output_scanline >= cinfo->output_height) {
274 cinfo->progress->pass_limit = (long) cinfo->output_height;
369 if (cinfo->output_scanline + num_lines >= cinfo->output_height) {
370 cinfo->output_scanline = cinfo->output_height;
371 return cinfo->output_height - cinfo->output_scanline;
421 upsample->rows_to_go = cinfo->output_height - cinfo->output_scanline;
434 upsample->rows_to_go = cinfo->output_height - cinfo->output_scanline;
469 upsample->rows_to_go = cinfo->output_height - cinfo->output_scanline
    [all...]
jdmaster.c 105 cinfo->output_height = (JDIMENSION)
113 cinfo->output_height = (JDIMENSION)
121 cinfo->output_height = (JDIMENSION)
129 cinfo->output_height = (JDIMENSION)
137 cinfo->output_height = (JDIMENSION)
145 cinfo->output_height = (JDIMENSION)
153 cinfo->output_height = (JDIMENSION)
161 cinfo->output_height = (JDIMENSION)
169 cinfo->output_height = (JDIMENSION)
177 cinfo->output_height = (JDIMENSION
    [all...]
djpeg.c 672 if (skip_end > cinfo.output_height - 1) {
674 cinfo.output_height);
681 tmp = cinfo.output_height;
682 cinfo.output_height -= (skip_end - skip_start + 1);
684 cinfo.output_height = tmp;
693 while (cinfo.output_scanline < cinfo.output_height) {
707 crop_y + crop_height > cinfo.output_height) {
709 progname, cinfo.output_width, cinfo.output_height);
721 tmp = cinfo.output_height;
722 cinfo.output_height = crop_height
    [all...]
wrbmp.c 226 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
242 PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
294 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height;
310 PUT_2B(bmpcoreheader, 6, cinfo->output_height); /* bcHeight */
399 for (row = cinfo->output_height; row > 0; row--) {
401 progress->pub.pass_counter = (long) (cinfo->output_height - row);
402 progress->pub.pass_limit = (long) cinfo->output_height;
477 dest->row_width, cinfo->output_height, (JDIMENSION) 1);
transupp.h 147 JDIMENSION output_height; member in struct:__anon15256
  /hardware/ti/omap4-aah/camera/
Decoder_libjpeg.cpp 214 mHeight = cinfo.output_height;
215 CAMHAL_LOGEA("w x h = %d x %d. stride=%d", cinfo.output_width, cinfo.output_height, stride);
217 else if ((cinfo.output_width > mWidth) || (cinfo.output_height > mHeight)) {
219 mWidth, mHeight, cinfo.output_width, cinfo.output_height);
223 unsigned int decoded_uv_buffer_size = cinfo.output_width * cinfo.output_height / 2;
224 if (Y_Plane == NULL)Y_Plane = (unsigned char **)malloc(cinfo.output_height * sizeof(unsigned char *));
225 if (U_Plane == NULL)U_Plane = (unsigned char **)malloc(cinfo.output_height * sizeof(unsigned char *));
226 if (V_Plane == NULL)V_Plane = (unsigned char **)malloc(cinfo.output_height * sizeof(unsigned char *));
237 for (unsigned int j = 0; j < cinfo.output_height; j++, row += stride)
243 for (unsigned int j = 0; j < cinfo.output_height; j+=2, row += cinfo.output_width / 2)
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/
filter_arm.c 24 unsigned int output_height,
35 unsigned int output_height,
46 unsigned int output_height,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/
filter_arm.c 24 unsigned int output_height,
35 unsigned int output_height,
46 unsigned int output_height,
  /external/opencv3/3rdparty/libjpeg/
jdinput.c 61 cinfo->output_height = (JDIMENSION)
69 cinfo->output_height = (JDIMENSION)
77 cinfo->output_height = (JDIMENSION)
85 cinfo->output_height = (JDIMENSION)
93 cinfo->output_height = (JDIMENSION)
101 cinfo->output_height = (JDIMENSION)
109 cinfo->output_height = (JDIMENSION)
117 cinfo->output_height = (JDIMENSION)
125 cinfo->output_height = (JDIMENSION)
133 cinfo->output_height = (JDIMENSION
    [all...]
jdapistd.c 107 while (cinfo->output_scanline < cinfo->output_height) {
112 cinfo->progress->pass_limit = (long) cinfo->output_height;
159 if (cinfo->output_scanline >= cinfo->output_height) {
167 cinfo->progress->pass_limit = (long) cinfo->output_height;
192 if (cinfo->output_scanline >= cinfo->output_height) {
200 cinfo->progress->pass_limit = (long) cinfo->output_height;
  /external/libvpx/libvpx/vpx_dsp/arm/
subpel_variance_neon.c 35 unsigned int output_height,
41 for (i = 0; i < output_height; ++i) {
58 unsigned int output_height,
64 for (i = 0; i < output_height; ++i) {
  /packages/apps/Camera2/jni/
tinyplanet.cc 95 int output_height) {
97 ImageRGBA output(output_image, output_width, output_height);
105 for (int y = 0; y < output_height; y++) {
107 float yf = (y - output_height / 2.0f) / image_scale;
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 94 int output_height) {
96 ImageRGBA output(output_image, output_width, output_height);
104 for (int y = 0; y < output_height; y++) {
106 float yf = (y - output_height / 2.0f) / image_scale;
  /external/libvpx/libvpx/test/
pp_filter_test.cc 52 const int output_height = block_height; local
54 const int output_size = output_width * output_height;
convolve_test.cc 88 unsigned int output_height) {
95 (kInterp_Extend - 1) + output_height + kInterp_Extend;
137 for (i = 0; i < output_height; ++i) {
164 unsigned int output_height) {
166 for (i = 0; i < output_height; ++i) {
181 unsigned int output_height) {
185 assert(output_height <= kMaxDimension);
187 output_width, output_height);
189 output_width, output_height);
200 unsigned int output_height,
509 dst_stride, output_width, output_height, local
535 output_width, output_height, UUT_->use_highbd_); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
pp_filter_test.cc 52 const int output_height = block_height; local
54 const int output_size = output_width * output_height;
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdapistd.c 107 while (cinfo->output_scanline < cinfo->output_height) {
112 cinfo->progress->pass_limit = (long) cinfo->output_height;
160 if (cinfo->output_scanline >= cinfo->output_height) {
168 cinfo->progress->pass_limit = (long) cinfo->output_height;
193 if (cinfo->output_scanline >= cinfo->output_height) {
201 cinfo->progress->pass_limit = (long) cinfo->output_height;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_subpixel_8t_intrin_ssse3.c 45 unsigned int output_height,
72 for (i = 0; i < output_height; i++) {
114 unsigned int output_height,
147 for (i = 0; i < output_height; i++) {
194 unsigned int output_height,
227 for (i = 0; i < output_height; i++) {
311 unsigned int output_height,
334 for (i = 0; i < output_height; i++) {
389 unsigned int output_height,
412 for (i = 0; i < output_height; i++)
    [all...]

Completed in 643 milliseconds

1 2 3 4 5 6