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

1 2

  /external/libvpx/libvpx/
ivfenc.c 30 mem_put_le16(header + 14, cfg->g_h); // height
webmenc.cc 46 static_cast<int>(cfg->g_h),
75 video_track->set_display_height(cfg->g_h);
video_writer.c 27 cfg.g_h = info->frame_height;
vpxenc.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
ivfenc.c 30 mem_put_le16(header + 14, cfg->g_h); // height
video_writer.c 27 cfg.g_h = info->frame_height;
  /external/libvpx/libvpx/examples/
set_maps.c 70 roi.rows = (cfg->g_h + 15) / 16;
103 map.rows = (cfg->g_h + 15) / 16;
120 map.rows = (cfg->g_h + 15) / 16;
209 cfg.g_h = info.frame_height;
213 cfg.g_h * fps / 1000);
vp8_multi_resolution_encoder.c 151 mem_put_le16(header+14, cfg->g_h); /* height */
456 cfg[0].g_h = height;
495 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1;
497 cfg[i].g_h = ih/dsf[i-1].num;
503 if((cfg[i].g_h)%2)cfg[i].g_h++;
515 if(!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32))
516 die("Failed to allocate image", cfg[i].g_w, cfg[i].g_h);
613 length_frame = cfg[i].g_w * cfg[i].g_h *3/2;
vp9_spatial_svc_encoder.c 187 enc_cfg->g_h = default_height;
209 enc_cfg->g_h = arg_parse_uint(&arg);
351 if (enc_cfg->g_w < 16 || enc_cfg->g_w % 2 || enc_cfg->g_h < 16 ||
352 enc_cfg->g_h % 2)
353 die("Invalid resolution: %d x %d\n", enc_cfg->g_w, enc_cfg->g_h);
363 svc_ctx->spatial_layers, enc_cfg->g_w, enc_cfg->g_h,
637 enc_cfg.g_w, enc_cfg.g_h, 32)) {
638 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
641 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) {
642 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
    [all...]
twopass_encoder.c 166 cfg->g_h,
242 cfg.g_h = h;
simple_encoder.c 218 cfg.g_h = info.frame_height;
vp8cx_set_ref.c 152 cfg.g_h = info.frame_height;
vp9_lossless_encoder.c 108 cfg.g_h = info.frame_height;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
set_maps.c 69 roi.rows = (cfg->g_h + 15) / 16;
102 map.rows = (cfg->g_h + 15) / 16;
119 map.rows = (cfg->g_h + 15) / 16;
201 cfg.g_h = info.frame_height;
205 cfg.g_h * fps / 1000);
vp8_multi_resolution_encoder.c 147 mem_put_le16(header+14, cfg->g_h); /* height */
260 cfg[0].g_h = height;
302 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1;
304 cfg[i].g_h = ih/dsf[i-1].num;
310 if((cfg[i].g_h)%2)cfg[i].g_h++;
315 if(!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32))
316 die("Failed to allocate image", cfg[i].g_w, cfg[i].g_h);
vp9_spatial_scalable_encoder.c 147 enc_cfg->g_h = default_height;
170 enc_cfg->g_h = arg_parse_uint(&arg);
266 if (enc_cfg->g_w < 16 || enc_cfg->g_w % 2 || enc_cfg->g_h < 16 ||
267 enc_cfg->g_h % 2)
268 die("Invalid resolution: %d x %d\n", enc_cfg->g_w, enc_cfg->g_h);
278 svc_ctx->spatial_layers, enc_cfg->g_w, enc_cfg->g_h,
305 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32))
306 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h);
simple_encoder.c 217 cfg.g_h = info.frame_height;
vp8cx_set_ref.c 148 cfg.g_h = info.frame_height;
  /external/libvpx/libvpx/test/
encode_test_driver.cc 29 cfg_.g_h = img->d_h;
87 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
89 cfg_.g_h = img->d_h;
resize_test.cc 49 mem_put_le16(header + 14, cfg->g_h); /* height */
284 cfg_.g_h = 288;
322 cfg_.g_h = 288;
360 unsigned int last_h = cfg_.g_h;
393 unsigned int last_h = cfg_.g_h;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
encode_test_driver.cc 45 cfg_.g_h = img->d_h;
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
56 cfg_.g_h = img->d_h;
  /external/libvpx/libvpx/vpx/
vpx_encoder.h 354 unsigned int g_h; member in struct:vpx_codec_enc_cfg
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_encoder.h 317 unsigned int g_h; member in struct:vpx_codec_enc_cfg
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 137 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */
276 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
292 oxcf->Height = cfg.g_h;
453 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h)
458 (ctx->cpi->initial_height && (int)cfg->g_h > ctx->cpi->initial_height))
621 int mb_cols = ((cfg->g_h + 15) >>4);
681 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2;
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 158 RANGE_CHECK(cfg, g_h, 1, 65535); // 16 bits available
192 RANGE_CHECK(cfg, rc_scaled_height, 0, cfg->g_h);
365 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h)
396 oxcf->height = cfg->g_h;
565 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
568 if (!valid_ref_frame_size(ctx->cfg.g_w, ctx->cfg.g_h, cfg->g_w, cfg->g_h) ||
570 (ctx->cpi->initial_height && (int)cfg->g_h > ctx->cpi->initial_height))
    [all...]

Completed in 643 milliseconds

1 2