blob: 91ed0ff2926f1d0b52c648b3a89e3f4a98fc0ed1 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
12#include <limits.h>
13#include <math.h>
14
15#include "av1/encoder/aq_complexity.h"
16#include "av1/encoder/aq_variance.h"
17#include "av1/encoder/encodeframe.h"
18#include "av1/common/seg_common.h"
19#include "av1/encoder/segmentation.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070020#include "aom_dsp/aom_dsp_common.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070021#include "aom_ports/system_state.h"
22
23#define AQ_C_SEGMENTS 5
24#define DEFAULT_AQ2_SEG 3 // Neutral Q segment
25#define AQ_C_STRENGTHS 3
26static const double aq_c_q_adj_factor[AQ_C_STRENGTHS][AQ_C_SEGMENTS] = {
27 { 1.75, 1.25, 1.05, 1.00, 0.90 },
28 { 2.00, 1.50, 1.15, 1.00, 0.85 },
29 { 2.50, 1.75, 1.25, 1.00, 0.80 }
30};
31static const double aq_c_transitions[AQ_C_STRENGTHS][AQ_C_SEGMENTS] = {
32 { 0.15, 0.30, 0.55, 2.00, 100.0 },
33 { 0.20, 0.40, 0.65, 2.00, 100.0 },
34 { 0.25, 0.50, 0.75, 2.00, 100.0 }
35};
36static const double aq_c_var_thresholds[AQ_C_STRENGTHS][AQ_C_SEGMENTS] = {
37 { -4.0, -3.0, -2.0, 100.00, 100.0 },
38 { -3.5, -2.5, -1.5, 100.00, 100.0 },
39 { -3.0, -2.0, -1.0, 100.00, 100.0 }
40};
41
Yaowu Xuf883b422016-08-30 14:01:10 -070042static int get_aq_c_strength(int q_index, aom_bit_depth_t bit_depth) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070043 // Approximate base quatizer (truncated to int)
Monty Montgomery60f2a222017-11-01 19:48:38 -040044 const int base_quant = av1_ac_quant_Q3(q_index, 0, bit_depth) / 4;
Yaowu Xuc27fc142016-08-22 16:08:15 -070045 return (base_quant > 10) + (base_quant > 25);
46}
47
Yaowu Xuf883b422016-08-30 14:01:10 -070048void av1_setup_in_frame_q_adj(AV1_COMP *cpi) {
49 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -070050 struct segmentation *const seg = &cm->seg;
51
52 // Make SURE use of floating point in this function is safe.
Yaowu Xuf883b422016-08-30 14:01:10 -070053 aom_clear_system_state();
Yaowu Xuc27fc142016-08-22 16:08:15 -070054
55 if (frame_is_intra_only(cm) || cm->error_resilient_mode ||
56 cpi->refresh_alt_ref_frame ||
57 (cpi->refresh_golden_frame && !cpi->rc.is_src_frame_alt_ref)) {
58 int segment;
59 const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth);
60
61 // Clear down the segment map.
62 memset(cpi->segmentation_map, DEFAULT_AQ2_SEG, cm->mi_rows * cm->mi_cols);
63
Yaowu Xuf883b422016-08-30 14:01:10 -070064 av1_clearall_segfeatures(seg);
Yaowu Xuc27fc142016-08-22 16:08:15 -070065
66 // Segmentation only makes sense if the target bits per SB is above a
67 // threshold. Below this the overheads will usually outweigh any benefit.
68 if (cpi->rc.sb64_target_rate < 256) {
Yaowu Xuf883b422016-08-30 14:01:10 -070069 av1_disable_segmentation(seg);
Yaowu Xuc27fc142016-08-22 16:08:15 -070070 return;
71 }
72
Yaowu Xuf883b422016-08-30 14:01:10 -070073 av1_enable_segmentation(seg);
Yaowu Xuc27fc142016-08-22 16:08:15 -070074
Yaowu Xuc27fc142016-08-22 16:08:15 -070075 // Default segment "Q" feature is disabled so it defaults to the baseline Q.
Yaowu Xuf883b422016-08-30 14:01:10 -070076 av1_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q);
Yaowu Xuc27fc142016-08-22 16:08:15 -070077
78 // Use some of the segments for in frame Q adjustment.
79 for (segment = 0; segment < AQ_C_SEGMENTS; ++segment) {
80 int qindex_delta;
81
82 if (segment == DEFAULT_AQ2_SEG) continue;
83
Yaowu Xuf883b422016-08-30 14:01:10 -070084 qindex_delta = av1_compute_qdelta_by_rate(
Yaowu Xuc27fc142016-08-22 16:08:15 -070085 &cpi->rc, cm->frame_type, cm->base_qindex,
86 aq_c_q_adj_factor[aq_strength][segment], cm->bit_depth);
87
88 // For AQ complexity mode, we dont allow Q0 in a segment if the base
89 // Q is not 0. Q0 (lossless) implies 4x4 only and in AQ mode 2 a segment
90 // Q delta is sometimes applied without going back around the rd loop.
91 // This could lead to an illegal combination of partition size and q.
92 if ((cm->base_qindex != 0) && ((cm->base_qindex + qindex_delta) == 0)) {
93 qindex_delta = -cm->base_qindex + 1;
94 }
95 if ((cm->base_qindex + qindex_delta) > 0) {
Yaowu Xuf883b422016-08-30 14:01:10 -070096 av1_enable_segfeature(seg, segment, SEG_LVL_ALT_Q);
97 av1_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta);
Yaowu Xuc27fc142016-08-22 16:08:15 -070098 }
99 }
100 }
101}
102
103#define DEFAULT_LV_THRESH 10.0
104#define MIN_DEFAULT_LV_THRESH 8.0
Yaowu Xuc27fc142016-08-22 16:08:15 -0700105// Select a segment for the current block.
106// The choice of segment for a block depends on the ratio of the projected
107// bits for the block vs a target average and its spatial complexity.
Urvang Joshi52648442016-10-13 17:27:51 -0700108void av1_caq_select_segment(const AV1_COMP *cpi, MACROBLOCK *mb, BLOCK_SIZE bs,
Yaowu Xuf883b422016-08-30 14:01:10 -0700109 int mi_row, int mi_col, int projected_rate) {
Urvang Joshi52648442016-10-13 17:27:51 -0700110 const AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700111
112 const int mi_offset = mi_row * cm->mi_cols + mi_col;
Jingning Hanc709e1f2016-12-06 14:48:09 -0800113 const int xmis = AOMMIN(cm->mi_cols - mi_col, mi_size_wide[bs]);
114 const int ymis = AOMMIN(cm->mi_rows - mi_row, mi_size_high[bs]);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700115 int x, y;
116 int i;
117 unsigned char segment;
118
119 if (0) {
120 segment = DEFAULT_AQ2_SEG;
121 } else {
122 // Rate depends on fraction of a SB64 in frame (xmis * ymis / bw * bh).
Debargha Mukherjee4c987332017-12-05 19:25:36 -0800123 // It is converted to bits << AV1_PROB_COST_SHIFT units.
124 const int64_t num = (int64_t)(cpi->rc.sb64_target_rate * xmis * ymis)
125 << AV1_PROB_COST_SHIFT;
Sebastien Alaiwan07e33f42017-02-17 10:59:30 +0100126 const int denom = cm->mib_size * cm->mib_size;
127 const int target_rate = (int)(num / denom);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700128 double logvar;
129 double low_var_thresh;
130 const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth);
131
Yaowu Xuf883b422016-08-30 14:01:10 -0700132 aom_clear_system_state();
133 low_var_thresh = (cpi->oxcf.pass == 2) ? AOMMAX(cpi->twopass.mb_av_energy,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700134 MIN_DEFAULT_LV_THRESH)
135 : DEFAULT_LV_THRESH;
136
Alex Conversef77fd0b2017-04-20 11:00:24 -0700137 av1_setup_src_planes(mb, cpi->source, mi_row, mi_col);
Yaowu Xuf883b422016-08-30 14:01:10 -0700138 logvar = av1_log_block_var(cpi, mb, bs);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700139
140 segment = AQ_C_SEGMENTS - 1; // Just in case no break out below.
141 for (i = 0; i < AQ_C_SEGMENTS; ++i) {
142 // Test rate against a threshold value and variance against a threshold.
143 // Increasing segment number (higher variance and complexity) = higher Q.
144 if ((projected_rate < target_rate * aq_c_transitions[aq_strength][i]) &&
145 (logvar < (low_var_thresh + aq_c_var_thresholds[aq_strength][i]))) {
146 segment = i;
147 break;
148 }
149 }
150 }
151
152 // Fill in the entires in the segment map corresponding to this SB64.
153 for (y = 0; y < ymis; y++) {
154 for (x = 0; x < xmis; x++) {
155 cpi->segmentation_map[mi_offset + y * cm->mi_cols + x] = segment;
156 }
157 }
158}