/external/libvpx/libvpx/ |
H A D | ivfenc.c | 30 mem_put_le16(header + 14, cfg->g_h); // height
|
H A D | webmenc.cc | 46 static_cast<int>(cfg->g_h), 75 video_track->set_display_height(cfg->g_h);
|
H A D | video_writer.c | 27 cfg.g_h = info->frame_height;
|
H A D | vpxenc.c | 1052 stream->config.cfg.g_h = 0; 1150 config->cfg.g_h = arg_parse_uint(&arg); 1285 if (!stream->config.cfg.g_w || !stream->config.cfg.g_h) 1339 if (!stream->config.cfg.g_h) 1342 stream->config.cfg.g_w = w * stream->config.cfg.g_h / h; 1344 if (!stream->config.cfg.g_h) { 1345 stream->config.cfg.g_h = h * stream->config.cfg.g_w / w; 1409 SHOW(g_h); 1597 (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { 1605 cfg->g_w, cfg->g_h, 1 [all...] |
/external/libvpx/libvpx/examples/ |
H A D | 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);
|
H A D | 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;
|
H A D | 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...] |
H A D | twopass_encoder.c | 166 cfg->g_h, 242 cfg.g_h = h;
|
H A D | simple_encoder.c | 218 cfg.g_h = info.frame_height;
|
H A D | vp8cx_set_ref.c | 152 cfg.g_h = info.frame_height;
|
H A D | vp9_lossless_encoder.c | 108 cfg.g_h = info.frame_height;
|
H A D | vpx_temporal_svc_encoder.c | 579 cfg.g_h = height; 660 info.frame_height = cfg.g_h; 703 svc_params.scaling_factor_num[0] = cfg.g_h; 704 svc_params.scaling_factor_den[0] = cfg.g_h;
|
/external/libvpx/libvpx/test/ |
H A D | 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;
|
H A D | 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;
|
H A D | svc_test.cc | 57 codec_enc_.g_h = kHeight; 117 codec_enc_.g_w, codec_enc_.g_h, 186 codec_enc_.g_w, codec_enc_.g_h, 762 codec_enc_.g_h = 144; 785 codec_enc_.g_h = 144;
|
/external/libvpx/libvpx/vpx/ |
H A D | vpx_encoder.h | 354 unsigned int g_h; member in struct:vpx_codec_enc_cfg
|
/external/libvpx/libvpx/vp8/ |
H A D | 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;
|
/external/libvpx/libvpx/vp9/ |
H A D | 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)) 984 data_sz = ctx->cfg.g_w * ctx->cfg.g_h * get_image_bp [all...] |
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
H A D | vp8_impl.cc | 538 configurations_[0].g_h = inst->height; 543 configurations_[0].g_w, configurations_[0].g_h, number_of_cores); 573 configurations_[i].g_h = inst->simulcastStream[stream_idx].height; 919 configurations_[0].g_h = codec_.height;
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
H A D | vp9_impl.cc | 288 config_->g_h = codec_.height; 323 NumberOfThreads(config_->g_w, config_->g_h, number_of_cores); 325 cpu_speed_ = GetCpuSpeed(config_->g_w, config_->g_h);
|
/external/libvpx/libvpx/vpx/src/ |
H A D | svc_encodeframe.c | 399 si->height = enc_cfg->g_h;
|