Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * 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 Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 20 | #include "aom_dsp/aom_dsp_common.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 21 | #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 |
| 26 | static 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 | }; |
| 31 | static 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 | }; |
| 36 | static 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 42 | static int get_aq_c_strength(int q_index, aom_bit_depth_t bit_depth) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 43 | // Approximate base quatizer (truncated to int) |
Monty Montgomery | 60f2a22 | 2017-11-01 19:48:38 -0400 | [diff] [blame] | 44 | const int base_quant = av1_ac_quant_Q3(q_index, 0, bit_depth) / 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 45 | return (base_quant > 10) + (base_quant > 25); |
| 46 | } |
| 47 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 48 | void av1_setup_in_frame_q_adj(AV1_COMP *cpi) { |
| 49 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 50 | struct segmentation *const seg = &cm->seg; |
| 51 | |
| 52 | // Make SURE use of floating point in this function is safe. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 53 | aom_clear_system_state(); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 54 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 64 | av1_clearall_segfeatures(seg); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 65 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 69 | av1_disable_segmentation(seg); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 70 | return; |
| 71 | } |
| 72 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 73 | av1_enable_segmentation(seg); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 74 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 75 | // Default segment "Q" feature is disabled so it defaults to the baseline Q. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 76 | av1_disable_segfeature(seg, DEFAULT_AQ2_SEG, SEG_LVL_ALT_Q); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 77 | |
| 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 84 | qindex_delta = av1_compute_qdelta_by_rate( |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 85 | &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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 96 | av1_enable_segfeature(seg, segment, SEG_LVL_ALT_Q); |
| 97 | av1_set_segdata(seg, segment, SEG_LVL_ALT_Q, qindex_delta); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | #define DEFAULT_LV_THRESH 10.0 |
| 104 | #define MIN_DEFAULT_LV_THRESH 8.0 |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 105 | // 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 Joshi | 5264844 | 2016-10-13 17:27:51 -0700 | [diff] [blame] | 108 | void av1_caq_select_segment(const AV1_COMP *cpi, MACROBLOCK *mb, BLOCK_SIZE bs, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 109 | int mi_row, int mi_col, int projected_rate) { |
Urvang Joshi | 5264844 | 2016-10-13 17:27:51 -0700 | [diff] [blame] | 110 | const AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 111 | |
| 112 | const int mi_offset = mi_row * cm->mi_cols + mi_col; |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 113 | 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 Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 115 | 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 Mukherjee | 4c98733 | 2017-12-05 19:25:36 -0800 | [diff] [blame] | 123 | // 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 Alaiwan | 07e33f4 | 2017-02-17 10:59:30 +0100 | [diff] [blame] | 126 | const int denom = cm->mib_size * cm->mib_size; |
| 127 | const int target_rate = (int)(num / denom); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 128 | double logvar; |
| 129 | double low_var_thresh; |
| 130 | const int aq_strength = get_aq_c_strength(cm->base_qindex, cm->bit_depth); |
| 131 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 132 | aom_clear_system_state(); |
| 133 | low_var_thresh = (cpi->oxcf.pass == 2) ? AOMMAX(cpi->twopass.mb_av_energy, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 134 | MIN_DEFAULT_LV_THRESH) |
| 135 | : DEFAULT_LV_THRESH; |
| 136 | |
Alex Converse | f77fd0b | 2017-04-20 11:00:24 -0700 | [diff] [blame] | 137 | av1_setup_src_planes(mb, cpi->source, mi_row, mi_col); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 138 | logvar = av1_log_block_var(cpi, mb, bs); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 139 | |
| 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 | } |