/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | vp9_spatial_scalable_encoder.c | 147 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()
|
D | set_maps.c | 69 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()
|
D | vp8_multi_resolution_encoder.c | 147 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()
|
D | vp8cx_set_ref.c | 148 cfg.g_h = info.frame_height; in main()
|
D | simple_encoder.c | 217 cfg.g_h = info.frame_height; in main()
|
D | twopass_encoder.c | 178 cfg.g_h = info.frame_height; in main()
|
D | vpx_temporal_scalable_patterns.c | 499 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/ |
D | encode_test_driver.cc | 45 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()
|
D | resize_test.cc | 49 mem_put_le16(header + 14, cfg->g_h); /* height */ in write_ivf_file_header()
|
D | svc_test.cc | 55 codec_enc_.g_h = kHeight; in SetUp()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | ivfenc.c | 30 mem_put_le16(header + 14, cfg->g_h); // height in ivf_write_file_header()
|
D | video_writer.c | 27 cfg.g_h = info->frame_height; in write_header()
|
D | vpxenc.c | 838 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 …]
|
D | webmenc.c | 167 unsigned int pixelHeight = cfg->g_h; in write_webm_file_header()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_cx_iface.c | 141 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/ |
D | vp9_cx_iface.c | 146 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/ |
D | vpx_encoder.h | 317 unsigned int g_h; member
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
D | svc_encodeframe.c | 510 si->height = enc_cfg->g_h; in vpx_svc_init()
|