Home
last modified time | relevance | path

Searched refs:g_h (Results 1 – 18 of 18) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
Dvp9_spatial_scalable_encoder.c147 enc_cfg->g_h = default_height; in parse_command_line()
170 enc_cfg->g_h = arg_parse_uint(&arg); in parse_command_line()
266 if (enc_cfg->g_w < 16 || enc_cfg->g_w % 2 || enc_cfg->g_h < 16 || in parse_command_line()
267 enc_cfg->g_h % 2) in parse_command_line()
268 die("Invalid resolution: %d x %d\n", enc_cfg->g_w, enc_cfg->g_h); in parse_command_line()
278 svc_ctx->spatial_layers, enc_cfg->g_w, enc_cfg->g_h, in parse_command_line()
305 if (!vpx_img_alloc(&raw, VPX_IMG_FMT_I420, enc_cfg.g_w, enc_cfg.g_h, 32)) in main()
306 die("Failed to allocate image %dx%d\n", enc_cfg.g_w, enc_cfg.g_h); in main()
Dset_maps.c69 roi.rows = (cfg->g_h + 15) / 16; in set_roi_map()
102 map.rows = (cfg->g_h + 15) / 16; in set_active_map()
119 map.rows = (cfg->g_h + 15) / 16; in unset_active_map()
201 cfg.g_h = info.frame_height; in main()
205 cfg.g_h * fps / 1000); in main()
Dvp8_multi_resolution_encoder.c147 mem_put_le16(header+14, cfg->g_h); /* height */ in write_ivf_file_header()
260 cfg[0].g_h = height; in main()
302 unsigned int ih = cfg[i-1].g_h*dsf[i-1].den + dsf[i-1].num - 1; in main()
304 cfg[i].g_h = ih/dsf[i-1].num; in main()
310 if((cfg[i].g_h)%2)cfg[i].g_h++; in main()
315 if(!vpx_img_alloc(&raw[i], VPX_IMG_FMT_I420, cfg[i].g_w, cfg[i].g_h, 32)) in main()
316 die("Failed to allocate image", cfg[i].g_w, cfg[i].g_h); in main()
Dvp8cx_set_ref.c148 cfg.g_h = info.frame_height; in main()
Dsimple_encoder.c217 cfg.g_h = info.frame_height; in main()
Dtwopass_encoder.c178 cfg.g_h = info.frame_height; in main()
Dvpx_temporal_scalable_patterns.c499 cfg.g_h = height; in main()
556 info.frame_height = cfg.g_h; in main()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dencode_test_driver.cc45 cfg_.g_h = img->d_h; in EncodeFrameInternal()
54 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal()
56 cfg_.g_h = img->d_h; in EncodeFrameInternal()
Dresize_test.cc49 mem_put_le16(header + 14, cfg->g_h); /* height */ in write_ivf_file_header()
Dsvc_test.cc55 codec_enc_.g_h = kHeight; in SetUp()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Divfenc.c30 mem_put_le16(header + 14, cfg->g_h); // height in ivf_write_file_header()
Dvideo_writer.c27 cfg.g_h = info->frame_height; in write_header()
Dvpxenc.c838 stream->config.cfg.g_h = 0; in new_stream()
915 config->cfg.g_h = arg_parse_uint(&arg); in parse_stream_params()
1023 if (!stream->config.cfg.g_w || !stream->config.cfg.g_h) in validate_stream_config()
1064 if (!stream->config.cfg.g_h) in set_stream_dimensions()
1067 stream->config.cfg.g_w = w * stream->config.cfg.g_h / h; in set_stream_dimensions()
1069 if (!stream->config.cfg.g_h) { in set_stream_dimensions()
1070 stream->config.cfg.g_h = h * stream->config.cfg.g_w / w; in set_stream_dimensions()
1110 SHOW(g_h); in show_stream_config()
1272 if (img && (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { in encode_frame()
1275 cfg->g_w, cfg->g_h, 16); in encode_frame()
[all …]
Dwebmenc.c167 unsigned int pixelHeight = cfg->g_h; in write_webm_file_header()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_cx_iface.c141 RANGE_CHECK(cfg, g_h, 1, 16383); /* 14 bits available */ in validate_config()
278 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h)) in validate_img()
294 oxcf->Height = cfg.g_h; in set_vp8e_config()
453 if (((cfg->g_w != ctx->cfg.g_w) || (cfg->g_h != ctx->cfg.g_h)) in vp8e_set_config()
552 int mb_cols = ((cfg->g_h + 15) >>4); in vp8e_mr_alloc_mem()
623 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 2; in vp8e_init()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_cx_iface.c146 RANGE_CHECK(cfg, g_h, 1, 65535); // 16 bits available in validate_config()
273 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h) in validate_img()
285 oxcf->height = cfg->g_h; in set_vp9e_config()
421 if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) in vp9e_set_config()
544 priv->cx_data_sz = priv->cfg.g_w * priv->cfg.g_h * 3 / 2 * 8; in vp9e_common_init()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dvpx_encoder.h317 unsigned int g_h; member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
Dsvc_encodeframe.c510 si->height = enc_cfg->g_h; in vpx_svc_init()