static uint8_t get_superres_denom_for_qindex(const AV1_COMP *cpi, int qindex,
int sr_kf, int sr_arf) { // Use superres for Key-frames and Alt-ref frames only. const GF_GROUP *gf_group = &cpi->ppi->gf_group;
if (gf_group->update_type[cpi->gf_frame_index] != KF_UPDATE &&
gf_group->update_type[cpi->gf_frame_index] != ARF_UPDATE) { return SCALE_NUMERATOR;
}
if (gf_group->update_type[cpi->gf_frame_index] == KF_UPDATE && !sr_kf) { return SCALE_NUMERATOR;
}
if (gf_group->update_type[cpi->gf_frame_index] == ARF_UPDATE && !sr_arf) { return SCALE_NUMERATOR;
}
double energy[16];
analyze_hor_freq(cpi, energy);
constdouble energy_by_q2_thresh =
get_energy_by_q2_thresh(gf_group, &cpi->rc, cpi->gf_frame_index);
int denom = get_superres_denom_from_qindex_energy(
qindex, energy, energy_by_q2_thresh, SUPERRES_ENERGY_BY_AC_THRESH); /* printf("\nenergy=["); for(intk=1;k<16;++k)printf("%f,",energy[k]); printf("]\n"); printf("boost=%d\n", (gf_group->update_type[cpi->gf_frame_index]==KF_UPDATE) ?cpi->ppi->p_rc.kf_boost :cpi->rc.gfu_boost); printf("denom=%d\n",denom);
*/
if (av1_superres_in_recode_allowed(cpi)) {
assert(cpi->superres_mode != AOM_SUPERRES_NONE); // Force superres to be tried in the recode loop, as full-res is also going // to be tried anyway.
denom = AOMMAX(denom, SCALE_NUMERATOR + 1);
} return denom;
}
static uint8_t calculate_next_superres_scale(AV1_COMP *cpi) { // Choose an arbitrary random number staticunsigned int seed = 34567; const AV1EncoderConfig *oxcf = &cpi->oxcf; const SuperResCfg *const superres_cfg = &oxcf->superres_cfg; const FrameDimensionCfg *const frm_dim_cfg = &oxcf->frm_dim_cfg; const RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
if (is_stat_generation_stage(cpi)) return SCALE_NUMERATOR;
uint8_t new_denom = SCALE_NUMERATOR;
// Make sure that superres mode of the frame is consistent with the // sequence-level flag.
assert(IMPLIES(superres_cfg->superres_mode != AOM_SUPERRES_NONE,
cpi->common.seq_params->enable_superres));
assert(IMPLIES(!cpi->common.seq_params->enable_superres,
superres_cfg->superres_mode == AOM_SUPERRES_NONE)); // Make sure that superres mode for current encoding is consistent with user // provided superres mode.
assert(IMPLIES(superres_cfg->superres_mode != AOM_SUPERRES_AUTO,
cpi->superres_mode == superres_cfg->superres_mode));
// Note: we must look at the current superres_mode to be tried in 'cpi' here, // not the user given mode in 'oxcf'. switch (cpi->superres_mode) { case AOM_SUPERRES_NONE: new_denom = SCALE_NUMERATOR; break; case AOM_SUPERRES_FIXED:
if (cpi->common.current_frame.frame_type == KEY_FRAME)
new_denom = superres_cfg->superres_kf_scale_denominator; else
new_denom = superres_cfg->superres_scale_denominator; break; case AOM_SUPERRES_RANDOM: new_denom = lcg_rand16(&seed) % 9 + 8; break; case AOM_SUPERRES_QTHRESH: { // Do not use superres when screen content tools are used.
if (cpi->common.features.allow_screen_content_tools) break;
if (rc_cfg->mode == AOM_VBR || rc_cfg->mode == AOM_CQ)
av1_set_target_rate(cpi, frm_dim_cfg->width, frm_dim_cfg->height);
// Now decide the use of superres based on 'q'.
int bottom_index, top_index; const int q = av1_rc_pick_q_and_bounds(
cpi, frm_dim_cfg->width, frm_dim_cfg->height, cpi->gf_frame_index,
&bottom_index, &top_index);
const int qthresh = (frame_is_intra_only(&cpi->common))
? superres_cfg->superres_kf_qthresh
: superres_cfg->superres_qthresh;
if (q <= qthresh) {
new_denom = SCALE_NUMERATOR;
} else {
new_denom = get_superres_denom_for_qindex(cpi, q, 1, 1);
} break;
} case AOM_SUPERRES_AUTO: {
if (cpi->common.features.allow_screen_content_tools) break;
if (rc_cfg->mode == AOM_VBR || rc_cfg->mode == AOM_CQ)
av1_set_target_rate(cpi, frm_dim_cfg->width, frm_dim_cfg->height);
// Now decide the use of superres based on 'q'.
int bottom_index, top_index; const int q = av1_rc_pick_q_and_bounds(
cpi, frm_dim_cfg->width, frm_dim_cfg->height, cpi->gf_frame_index,
&bottom_index, &top_index);
static int dimension_is_ok(int orig_dim, int resized_dim, int denom) { return (resized_dim * SCALE_NUMERATOR >= orig_dim * denom / 2);
}
static int dimensions_are_ok(int owidth, int oheight, size_params_type *rsz) { // Only need to check the width, as scaling is horizontal only.
(void)oheight; return dimension_is_ok(owidth, rsz->resize_width, rsz->superres_denom);
}
static int validate_size_scales(RESIZE_MODE resize_mode,
aom_superres_mode superres_mode, int owidth,
int oheight, size_params_type *rsz) {
if (dimensions_are_ok(owidth, oheight, rsz)) { // Nothing to do. return1;
}
// Calculate current resize scale.
int resize_denom =
AOMMAX(DIVIDE_AND_ROUND(owidth * SCALE_NUMERATOR, rsz->resize_width),
DIVIDE_AND_ROUND(oheight * SCALE_NUMERATOR, rsz->resize_height));
if (resize_mode != RESIZE_RANDOM && superres_mode == AOM_SUPERRES_RANDOM) { // Alter superres scale as needed to enforce conformity.
rsz->superres_denom =
(2 * SCALE_NUMERATOR * SCALE_NUMERATOR) / resize_denom;
if (!dimensions_are_ok(owidth, oheight, rsz)) {
if (rsz->superres_denom > SCALE_NUMERATOR) --rsz->superres_denom;
}
} else if (resize_mode == RESIZE_RANDOM &&
superres_mode != AOM_SUPERRES_RANDOM) { // Alter resize scale as needed to enforce conformity.
resize_denom =
(2 * SCALE_NUMERATOR * SCALE_NUMERATOR) / rsz->superres_denom;
rsz->resize_width = owidth;
rsz->resize_height = oheight;
av1_calculate_scaled_size(&rsz->resize_width, &rsz->resize_height,
resize_denom);
if (!dimensions_are_ok(owidth, oheight, rsz)) {
if (resize_denom > SCALE_NUMERATOR) {
--resize_denom;
rsz->resize_width = owidth;
rsz->resize_height = oheight;
av1_calculate_scaled_size(&rsz->resize_width, &rsz->resize_height,
resize_denom);
}
}
} else if (resize_mode == RESIZE_RANDOM &&
superres_mode == AOM_SUPERRES_RANDOM) { // Alter both resize and superres scales as needed to enforce conformity. do {
if (resize_denom > rsz->superres_denom)
--resize_denom; else
--rsz->superres_denom;
rsz->resize_width = owidth;
rsz->resize_height = oheight;
av1_calculate_scaled_size(&rsz->resize_width, &rsz->resize_height,
resize_denom);
} while (!dimensions_are_ok(owidth, oheight, rsz) &&
(resize_denom > SCALE_NUMERATOR ||
rsz->superres_denom > SCALE_NUMERATOR));
} else { // We are allowed to alter neither resize scale nor superres // scale. return0;
} return dimensions_are_ok(owidth, oheight, rsz);
}
// If regular resizing is occurring the source will need to be downscaled to // match the upscaled superres resolution. Otherwise the original source is // used.
if (!av1_resize_scaled(cm)) {
cpi->source = cpi->unscaled_source;
if (cpi->last_source != NULL) cpi->last_source = cpi->unscaled_last_source;
} else {
assert(cpi->unscaled_source->y_crop_width != cm->superres_upscaled_width);
assert(cpi->unscaled_source->y_crop_height != cm->superres_upscaled_height); // Do downscale. cm->(width|height) has been updated by // av1_superres_upscale
cpi->source = realloc_and_scale_source(cpi, cm->superres_upscaled_width,
cm->superres_upscaled_height);
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.