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 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 12 | #ifndef AOM_AV1_ENCODER_RD_H_ |
| 13 | #define AOM_AV1_ENCODER_RD_H_ |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 14 | |
| 15 | #include <limits.h> |
| 16 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 17 | #include "av1/common/blockd.h" |
| 18 | |
| 19 | #include "av1/encoder/block.h" |
| 20 | #include "av1/encoder/context_tree.h" |
| 21 | #include "av1/encoder/cost.h" |
| 22 | |
| 23 | #ifdef __cplusplus |
| 24 | extern "C" { |
| 25 | #endif |
| 26 | |
| 27 | #define RDDIV_BITS 7 |
| 28 | #define RD_EPB_SHIFT 6 |
| 29 | |
Angie Chiang | e4ea748 | 2018-03-15 11:36:41 -0700 | [diff] [blame] | 30 | #define RDCOST(RM, R, D) \ |
| 31 | (ROUND_POWER_OF_TWO(((int64_t)(R)) * (RM), AV1_PROB_COST_SHIFT) + \ |
| 32 | ((D) * (1 << RDDIV_BITS))) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 33 | |
sdeng | 256c4d3 | 2019-06-11 12:19:48 -0700 | [diff] [blame] | 34 | #define RDCOST_NEG_R(RM, R, D) \ |
| 35 | (((D) * (1 << RDDIV_BITS)) - \ |
| 36 | ROUND_POWER_OF_TWO(((int64_t)(R)) * (RM), AV1_PROB_COST_SHIFT)) |
| 37 | |
Urvang Joshi | 70006e4 | 2017-06-14 16:08:55 -0700 | [diff] [blame] | 38 | #define RDCOST_DBL(RM, R, D) \ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 39 | (((((double)(R)) * (RM)) / (double)(1 << AV1_PROB_COST_SHIFT)) + \ |
Urvang Joshi | 70006e4 | 2017-06-14 16:08:55 -0700 | [diff] [blame] | 40 | ((double)(D) * (1 << RDDIV_BITS))) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 41 | |
| 42 | #define QIDX_SKIP_THRESH 115 |
| 43 | |
| 44 | #define MV_COST_WEIGHT 108 |
| 45 | #define MV_COST_WEIGHT_SUB 120 |
| 46 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 47 | #define RD_THRESH_MAX_FACT 64 |
| 48 | #define RD_THRESH_INC 1 |
| 49 | |
Peng Bin | c7101aa | 2018-06-22 20:47:05 +0800 | [diff] [blame] | 50 | // Factor to weigh the rate for switchable interp filters. |
| 51 | #define SWITCHABLE_INTERP_RATE_FACTOR 1 |
| 52 | |
Cherma Rajan A | 628efce | 2019-09-18 18:55:12 +0530 | [diff] [blame] | 53 | enum { |
| 54 | // Default initialization |
| 55 | DEFAULT_EVAL = 0, |
| 56 | // Initialization for default mode evaluation |
| 57 | MODE_EVAL, |
| 58 | // Initialization for winner mode evaluation |
| 59 | WINNER_MODE_EVAL, |
| 60 | // All mode evaluation types |
| 61 | MODE_EVAL_TYPES, |
| 62 | } UENUM1BYTE(MODE_EVAL_TYPE); |
| 63 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 64 | typedef struct RD_OPT { |
| 65 | // Thresh_mult is used to set a threshold for the rd score. A higher value |
| 66 | // means that we will accept the best mode so far more often. This number |
| 67 | // is used in combination with the current block size, and thresh_freq_fact |
| 68 | // to pick a threshold. |
| 69 | int thresh_mult[MAX_MODES]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 70 | |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 71 | int threshes[MAX_SEGMENTS][BLOCK_SIZES_ALL][MAX_MODES]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 72 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 73 | int RDMULT; |
Yue Chen | 7cae98f | 2018-08-24 10:43:16 -0700 | [diff] [blame] | 74 | |
Debargha Mukherjee | d0c0b77 | 2019-05-27 23:05:06 -0700 | [diff] [blame] | 75 | double r0, arf_r0; |
Yue Chen | bd93423 | 2019-08-05 14:23:39 -0700 | [diff] [blame] | 76 | #if !USE_TPL_CLASSIC_MODEL |
Debargha Mukherjee | 88ff738 | 2019-05-01 12:36:10 -0700 | [diff] [blame] | 77 | double mc_saved_base, mc_count_base; |
Yue Chen | bd93423 | 2019-08-05 14:23:39 -0700 | [diff] [blame] | 78 | #endif // !USE_TPL_CLASSIC_MODEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 79 | } RD_OPT; |
| 80 | |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 81 | static INLINE void av1_init_rd_stats(RD_STATS *rd_stats) { |
| 82 | #if CONFIG_RD_DEBUG |
| 83 | int plane; |
| 84 | #endif |
| 85 | rd_stats->rate = 0; |
| 86 | rd_stats->dist = 0; |
| 87 | rd_stats->rdcost = 0; |
| 88 | rd_stats->sse = 0; |
| 89 | rd_stats->skip = 1; |
Jingning Han | 3bce754 | 2017-07-25 10:53:57 -0700 | [diff] [blame] | 90 | rd_stats->zero_rate = 0; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 91 | #if CONFIG_RD_DEBUG |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 92 | // This may run into problems when monochrome video is |
| 93 | // encoded, as there will only be 1 plane |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 94 | for (plane = 0; plane < MAX_MB_PLANE; ++plane) { |
| 95 | rd_stats->txb_coeff_cost[plane] = 0; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 96 | { |
| 97 | int r, c; |
| 98 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) |
| 99 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) |
| 100 | rd_stats->txb_coeff_cost_map[plane][r][c] = 0; |
| 101 | } |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 102 | } |
| 103 | #endif |
| 104 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 105 | |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 106 | static INLINE void av1_invalid_rd_stats(RD_STATS *rd_stats) { |
| 107 | #if CONFIG_RD_DEBUG |
| 108 | int plane; |
| 109 | #endif |
| 110 | rd_stats->rate = INT_MAX; |
| 111 | rd_stats->dist = INT64_MAX; |
| 112 | rd_stats->rdcost = INT64_MAX; |
| 113 | rd_stats->sse = INT64_MAX; |
| 114 | rd_stats->skip = 0; |
Jingning Han | 3bce754 | 2017-07-25 10:53:57 -0700 | [diff] [blame] | 115 | rd_stats->zero_rate = 0; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 116 | #if CONFIG_RD_DEBUG |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 117 | // This may run into problems when monochrome video is |
| 118 | // encoded, as there will only be 1 plane |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 119 | for (plane = 0; plane < MAX_MB_PLANE; ++plane) { |
| 120 | rd_stats->txb_coeff_cost[plane] = INT_MAX; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 121 | { |
| 122 | int r, c; |
| 123 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) |
| 124 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) |
Jingning Han | 46564ea | 2019-10-28 15:29:54 -0700 | [diff] [blame^] | 125 | rd_stats->txb_coeff_cost_map[plane][r][c] = INT16_MAX; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 126 | } |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 127 | } |
| 128 | #endif |
| 129 | } |
| 130 | |
| 131 | static INLINE void av1_merge_rd_stats(RD_STATS *rd_stats_dst, |
| 132 | const RD_STATS *rd_stats_src) { |
Hui Su | cd73550 | 2019-04-08 11:23:02 -0700 | [diff] [blame] | 133 | assert(rd_stats_dst->rate != INT_MAX && rd_stats_src->rate != INT_MAX); |
Venkat | 7248175 | 2019-07-01 16:33:49 +0530 | [diff] [blame] | 134 | rd_stats_dst->rate = (int)AOMMIN( |
| 135 | ((int64_t)rd_stats_dst->rate + (int64_t)rd_stats_src->rate), INT_MAX); |
Debargha Mukherjee | de80e76 | 2017-11-30 13:58:56 -0800 | [diff] [blame] | 136 | if (!rd_stats_dst->zero_rate) |
| 137 | rd_stats_dst->zero_rate = rd_stats_src->zero_rate; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 138 | rd_stats_dst->dist += rd_stats_src->dist; |
| 139 | rd_stats_dst->sse += rd_stats_src->sse; |
| 140 | rd_stats_dst->skip &= rd_stats_src->skip; |
| 141 | #if CONFIG_RD_DEBUG |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 142 | // This may run into problems when monochrome video is |
| 143 | // encoded, as there will only be 1 plane |
Hui Su | cd73550 | 2019-04-08 11:23:02 -0700 | [diff] [blame] | 144 | for (int plane = 0; plane < MAX_MB_PLANE; ++plane) { |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 145 | rd_stats_dst->txb_coeff_cost[plane] += rd_stats_src->txb_coeff_cost[plane]; |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 146 | { |
| 147 | // TODO(angiebird): optimize this part |
| 148 | int r, c; |
| 149 | int ref_txb_coeff_cost = 0; |
| 150 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) |
| 151 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 152 | rd_stats_dst->txb_coeff_cost_map[plane][r][c] += |
| 153 | rd_stats_src->txb_coeff_cost_map[plane][r][c]; |
| 154 | ref_txb_coeff_cost += rd_stats_dst->txb_coeff_cost_map[plane][r][c]; |
| 155 | } |
| 156 | assert(ref_txb_coeff_cost == rd_stats_dst->txb_coeff_cost[plane]); |
| 157 | } |
Angie Chiang | 2a2a7dd | 2017-04-25 16:08:47 -0700 | [diff] [blame] | 158 | } |
| 159 | #endif |
| 160 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 161 | |
Venkat | d5d823c | 2019-06-25 16:48:23 +0530 | [diff] [blame] | 162 | static INLINE void av1_accumulate_rd_stats(RD_STATS *rd_stats, int64_t dist, |
| 163 | int rate, int skip, int64_t sse, |
| 164 | int zero_rate) { |
| 165 | assert(rd_stats->rate != INT_MAX && rate != INT_MAX); |
| 166 | rd_stats->rate += rate; |
| 167 | if (!rd_stats->zero_rate) rd_stats->zero_rate = zero_rate; |
| 168 | rd_stats->dist += dist; |
| 169 | rd_stats->skip &= skip; |
| 170 | rd_stats->sse += sse; |
| 171 | } |
| 172 | |
sdeng | 256c4d3 | 2019-06-11 12:19:48 -0700 | [diff] [blame] | 173 | static INLINE int64_t av1_calculate_rd_cost(int mult, int rate, int64_t dist) { |
| 174 | assert(mult >= 0); |
| 175 | if (rate >= 0) { |
| 176 | return RDCOST(mult, rate, dist); |
| 177 | } |
| 178 | return RDCOST_NEG_R(mult, -rate, dist); |
| 179 | } |
| 180 | |
| 181 | static INLINE void av1_rd_cost_update(int mult, RD_STATS *rd_cost) { |
sdeng | afdb851 | 2019-06-12 16:15:56 -0700 | [diff] [blame] | 182 | if (rd_cost->rate < INT_MAX && rd_cost->dist < INT64_MAX && |
| 183 | rd_cost->rdcost < INT64_MAX) { |
sdeng | 256c4d3 | 2019-06-11 12:19:48 -0700 | [diff] [blame] | 184 | rd_cost->rdcost = av1_calculate_rd_cost(mult, rd_cost->rate, rd_cost->dist); |
| 185 | } else { |
| 186 | av1_invalid_rd_stats(rd_cost); |
| 187 | } |
| 188 | } |
| 189 | |
sdeng | afdb851 | 2019-06-12 16:15:56 -0700 | [diff] [blame] | 190 | static INLINE void av1_rd_stats_subtraction(int mult, |
| 191 | const RD_STATS *const left, |
sdeng | eff3bb4 | 2019-06-11 15:56:04 -0700 | [diff] [blame] | 192 | const RD_STATS *const right, |
| 193 | RD_STATS *result) { |
| 194 | if (left->rate == INT_MAX || right->rate == INT_MAX || |
| 195 | left->dist == INT64_MAX || right->dist == INT64_MAX || |
| 196 | left->rdcost == INT64_MAX || right->rdcost == INT64_MAX) { |
| 197 | av1_invalid_rd_stats(result); |
| 198 | } else { |
| 199 | result->rate = left->rate - right->rate; |
| 200 | result->dist = left->dist - right->dist; |
sdeng | afdb851 | 2019-06-12 16:15:56 -0700 | [diff] [blame] | 201 | result->rdcost = av1_calculate_rd_cost(mult, result->rate, result->dist); |
sdeng | eff3bb4 | 2019-06-11 15:56:04 -0700 | [diff] [blame] | 202 | } |
| 203 | } |
| 204 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 205 | struct TileInfo; |
| 206 | struct TileDataEnc; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 207 | struct AV1_COMP; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 208 | struct macroblock; |
| 209 | |
Yaowu Xu | ea8a6ca | 2018-11-07 14:53:46 -0800 | [diff] [blame] | 210 | int av1_compute_rd_mult_based_on_qindex(const struct AV1_COMP *cpi, int qindex); |
Ravi Chaudhary | 9549205 | 2018-10-24 11:51:28 +0530 | [diff] [blame] | 211 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 212 | int av1_compute_rd_mult(const struct AV1_COMP *cpi, int qindex); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 213 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 214 | void av1_initialize_rd_consts(struct AV1_COMP *cpi); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 215 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 216 | void av1_initialize_me_consts(const struct AV1_COMP *cpi, MACROBLOCK *x, |
| 217 | int qindex); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 218 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 219 | void av1_model_rd_from_var_lapndz(int64_t var, unsigned int n, |
| 220 | unsigned int qstep, int *rate, int64_t *dist); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 221 | |
Debargha Mukherjee | 0007983 | 2019-01-17 11:28:52 -0800 | [diff] [blame] | 222 | void av1_model_rd_curvfit(BLOCK_SIZE bsize, double sse_norm, double xqr, |
Debargha Mukherjee | a7b3731 | 2019-01-14 15:15:49 -0800 | [diff] [blame] | 223 | double *rate_f, double *distbysse_f); |
Debargha Mukherjee | 0007983 | 2019-01-17 11:28:52 -0800 | [diff] [blame] | 224 | void av1_model_rd_surffit(BLOCK_SIZE bsize, double sse_norm, double xm, |
| 225 | double yl, double *rate_f, double *distbysse_f); |
Debargha Mukherjee | 483e295 | 2018-07-25 07:34:26 -0700 | [diff] [blame] | 226 | |
Yue Chen | b23d00a | 2017-07-28 17:01:21 -0700 | [diff] [blame] | 227 | int av1_get_switchable_rate(const AV1_COMMON *const cm, MACROBLOCK *x, |
| 228 | const MACROBLOCKD *xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 229 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 230 | YV12_BUFFER_CONFIG *av1_get_scaled_ref_frame(const struct AV1_COMP *cpi, |
| 231 | int ref_frame); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 232 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 233 | void av1_init_me_luts(void); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 234 | |
Yaowu Xu | 901d622 | 2018-02-21 21:40:48 -0800 | [diff] [blame] | 235 | void av1_set_mvcost(MACROBLOCK *x, int ref, int ref_mv_idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 236 | |
Yunqing Wang | ef2afb4 | 2018-05-01 09:41:00 -0700 | [diff] [blame] | 237 | void av1_get_entropy_contexts(BLOCK_SIZE bsize, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 238 | const struct macroblockd_plane *pd, |
Wan-Teh Chang | 660f8ed | 2018-05-11 17:28:08 -0700 | [diff] [blame] | 239 | ENTROPY_CONTEXT t_above[MAX_MIB_SIZE], |
| 240 | ENTROPY_CONTEXT t_left[MAX_MIB_SIZE]); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 241 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 242 | void av1_set_rd_speed_thresholds(struct AV1_COMP *cpi); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 243 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 244 | void av1_update_rd_thresh_fact(const AV1_COMMON *const cm, |
| 245 | int (*fact)[MAX_MODES], int rd_thresh, int bsize, |
| 246 | int best_mode_index); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 247 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 248 | static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh, |
| 249 | int thresh_fact) { |
| 250 | return best_rd < ((int64_t)thresh * thresh_fact >> 5) || thresh == INT_MAX; |
| 251 | } |
| 252 | |
Urvang Joshi | 5264844 | 2016-10-13 17:27:51 -0700 | [diff] [blame] | 253 | void av1_mv_pred(const struct AV1_COMP *cpi, MACROBLOCK *x, |
| 254 | uint8_t *ref_y_buffer, int ref_y_stride, int ref_frame, |
| 255 | BLOCK_SIZE block_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 256 | |
| 257 | static INLINE void set_error_per_bit(MACROBLOCK *x, int rdmult) { |
| 258 | x->errorperbit = rdmult >> RD_EPB_SHIFT; |
| 259 | x->errorperbit += (x->errorperbit == 0); |
| 260 | } |
| 261 | |
Ranjit Kumar Tulabandu | 824f9db | 2019-07-05 15:16:37 +0530 | [diff] [blame] | 262 | // Get the threshold for R-D optimization of coefficients depending upon mode |
| 263 | // decision/winner mode processing |
| 264 | static INLINE uint32_t get_rd_opt_coeff_thresh( |
| 265 | const uint32_t *const coeff_opt_dist_threshold, |
| 266 | int enable_winner_mode_for_coeff_opt, int is_winner_mode) { |
| 267 | // Default initialization of threshold |
Cherma Rajan A | 628efce | 2019-09-18 18:55:12 +0530 | [diff] [blame] | 268 | uint32_t coeff_opt_thresh = coeff_opt_dist_threshold[DEFAULT_EVAL]; |
Ranjit Kumar Tulabandu | 824f9db | 2019-07-05 15:16:37 +0530 | [diff] [blame] | 269 | // TODO(any): Experiment with coeff_opt_dist_threshold values when |
| 270 | // enable_winner_mode_for_coeff_opt is ON |
| 271 | // TODO(any): Skip the winner mode processing for blocks with lower residual |
| 272 | // energy as R-D optimization of coefficients would have been enabled during |
| 273 | // mode decision |
| 274 | if (enable_winner_mode_for_coeff_opt) { |
| 275 | // Use conservative threshold during mode decision and perform R-D |
| 276 | // optimization of coeffs always for winner modes |
| 277 | if (is_winner_mode) |
Cherma Rajan A | 628efce | 2019-09-18 18:55:12 +0530 | [diff] [blame] | 278 | coeff_opt_thresh = coeff_opt_dist_threshold[WINNER_MODE_EVAL]; |
Ranjit Kumar Tulabandu | 824f9db | 2019-07-05 15:16:37 +0530 | [diff] [blame] | 279 | else |
Cherma Rajan A | 628efce | 2019-09-18 18:55:12 +0530 | [diff] [blame] | 280 | coeff_opt_thresh = coeff_opt_dist_threshold[MODE_EVAL]; |
Ranjit Kumar Tulabandu | 824f9db | 2019-07-05 15:16:37 +0530 | [diff] [blame] | 281 | } |
| 282 | return coeff_opt_thresh; |
| 283 | } |
| 284 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 285 | void av1_setup_pred_block(const MACROBLOCKD *xd, |
| 286 | struct buf_2d dst[MAX_MB_PLANE], |
| 287 | const YV12_BUFFER_CONFIG *src, int mi_row, int mi_col, |
| 288 | const struct scale_factors *scale, |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 289 | const struct scale_factors *scale_uv, |
| 290 | const int num_planes); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 291 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 292 | int av1_get_intra_cost_penalty(int qindex, int qdelta, |
| 293 | aom_bit_depth_t bit_depth); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 294 | |
Yue Chen | b23d00a | 2017-07-28 17:01:21 -0700 | [diff] [blame] | 295 | void av1_fill_mode_rates(AV1_COMMON *const cm, MACROBLOCK *x, |
| 296 | FRAME_CONTEXT *fc); |
| 297 | |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 298 | void av1_fill_coeff_costs(MACROBLOCK *x, FRAME_CONTEXT *fc, |
| 299 | const int num_planes); |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 300 | |
Wan-Teh Chang | ec5cb19 | 2019-09-16 08:50:06 -0700 | [diff] [blame] | 301 | void av1_fill_mv_costs(const FRAME_CONTEXT *fc, int integer_mv, int usehp, |
Debargha Mukherjee | 8d27341 | 2019-09-11 10:36:50 -0700 | [diff] [blame] | 302 | MACROBLOCK *x); |
| 303 | |
Yue Chen | 7cae98f | 2018-08-24 10:43:16 -0700 | [diff] [blame] | 304 | int av1_get_adaptive_rdmult(const struct AV1_COMP *cpi, double beta); |
| 305 | |
Debargha Mukherjee | cfcd5ad | 2019-05-20 20:27:17 -0700 | [diff] [blame] | 306 | int av1_get_deltaq_offset(const struct AV1_COMP *cpi, int qindex, double beta); |
| 307 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 308 | #ifdef __cplusplus |
| 309 | } // extern "C" |
| 310 | #endif |
| 311 | |
James Zern | e1cbb13 | 2018-08-22 14:10:36 -0700 | [diff] [blame] | 312 | #endif // AOM_AV1_ENCODER_RD_H_ |