/* * Copyright (c) 2020, Alliance for Open Media. All rights reserved. * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file, you can * obtain it at www.aomedia.org/license/software. If the Alliance for Open * Media Patent License 1.0 was not distributed with this source code in the * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
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; constint q = av1_rc_pick_q_and_bounds(
cpi, frm_dim_cfg->width, frm_dim_cfg->height, cpi->gf_frame_index,
&bottom_index, &top_index);
constint 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; constint q = av1_rc_pick_q_and_bounds(
cpi, frm_dim_cfg->width, frm_dim_cfg->height, cpi->gf_frame_index,
&bottom_index, &top_index);
staticint dimension_is_ok(int orig_dim, int resized_dim, int denom) { return (resized_dim * SCALE_NUMERATOR >= orig_dim * denom / 2);
}
staticint 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);
}
staticint 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. return 1;
}
// 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;
}
} elseif (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);
}
}
} elseif (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. return 0;
} 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);
}
}
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
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.