Lines Matching defs:width
228 int width = -30;
235 width, "g_usage:", cfg->g_usage,
236 width, "g_threads:", cfg->g_threads,
237 width, "g_profile:", cfg->g_profile,
238 width, "g_w:", cfg->g_w,
239 width, "g_h:", cfg->g_h,
240 width, "g_bit_depth:", cfg->g_bit_depth,
241 width, "g_input_bit_depth:", cfg->g_input_bit_depth,
242 width, "g_timebase:", cfg->g_timebase.num, cfg->g_timebase.den,
243 width, "g_error_resilient:", cfg->g_error_resilient,
244 width, "g_pass:", cfg->g_pass,
245 width, "g_lag_in_frames:", cfg->g_lag_in_frames);
248 width, "rc_dropframe_thresh:", cfg->rc_dropframe_thresh,
249 width, "rc_end_usage:", cfg->rc_end_usage,
250 width, "rc_twopass_stats_in:", cfg->rc_twopass_stats_in.buf, cfg->rc_twopass_stats_in.sz,
251 width, "rc_target_bitrate:", cfg->rc_target_bitrate);
254 width, "rc_min_quantizer:", cfg->rc_min_quantizer,
255 width, "rc_max_quantizer:", cfg->rc_max_quantizer);
258 width, "rc_undershoot_pct:", cfg->rc_undershoot_pct,
259 width, "rc_overshoot_pct:", cfg->rc_overshoot_pct);
262 width, "rc_buf_sz:", cfg->rc_buf_sz,
263 width, "rc_buf_initial_sz:", cfg->rc_buf_initial_sz,
264 width, "rc_buf_optimal_sz:", cfg->rc_buf_optimal_sz);
267 width, "rc_2pass_vbr_bias_pct:", cfg->rc_2pass_vbr_bias_pct,
268 width, "rc_2pass_vbr_minsection_pct:", cfg->rc_2pass_vbr_minsection_pct,
269 width, "rc_2pass_vbr_maxsection_pct:", cfg->rc_2pass_vbr_maxsection_pct);
272 width, "kf_mode:", cfg->kf_mode,
273 width, "kf_min_dist:", cfg->kf_min_dist,
274 width, "kf_max_dist:", cfg->kf_max_dist);
277 width, "tile_width_count:", cfg->tile_width_count,
278 width, "tile_height_count:", cfg->tile_height_count);
319 int width = -30;
323 av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, val);
349 int width = -30;
353 av_log(avctx, AV_LOG_DEBUG, " %*s%d\n", width, buf, *ptr);
516 ctx->tile_cols = (avctx->width + AV1_MAX_TILE_WIDTH - 1) /
520 "columns to fill width.\n", ctx->tile_cols);
526 FFALIGN((FFALIGN(avctx->width, 128) +
538 if ((avctx->width + 63) / 64 < ctx->tile_cols ||
551 if (avctx->width / ctx->tile_cols > AV1_MAX_TILE_WIDTH) {
553 "not allow tiles of width greater than %d.\n",
566 (avctx->width + 127) / 128 >= ctx->tile_cols &&
574 uniform_cols = count_uniform_tiling(avctx->width,
584 uniform_cols = count_uniform_tiling(avctx->width,
634 sb_width = (avctx->width + sb_size - 1) / sb_size;
693 enccfg.g_w = avctx->width;
984 aom_img_wrap(&ctx->rawimg, img_fmt, avctx->width, avctx->height, 1,