Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017, Alliance for Open Media. All rights reserved |
| 3 | * |
| 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. |
| 10 | */ |
| 11 | |
Linfeng Zhang | ae7b2f3 | 2017-11-08 15:46:57 -0800 | [diff] [blame] | 12 | #include "aom_ports/mem.h" |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 13 | #include "av1/common/scan.h" |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 14 | #include "av1/common/blockd.h" |
Angie Chiang | e50f3ec | 2017-04-10 15:50:33 -0700 | [diff] [blame] | 15 | #include "av1/common/idct.h" |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 16 | #include "av1/common/pred_common.h" |
Angie Chiang | 1628fcc | 2017-04-13 16:30:30 -0700 | [diff] [blame] | 17 | #include "av1/encoder/bitstream.h" |
| 18 | #include "av1/encoder/encodeframe.h" |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 19 | #include "av1/encoder/cost.h" |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 20 | #include "av1/encoder/encodetxb.h" |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 21 | #include "av1/encoder/rdopt.h" |
Angie Chiang | 800df03 | 2017-03-22 11:14:12 -0700 | [diff] [blame] | 22 | #include "av1/encoder/subexp.h" |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 23 | #include "av1/encoder/tokenize.h" |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 24 | |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 25 | #define TEST_OPTIMIZE_TXB 0 |
| 26 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 27 | typedef struct LevelDownStats { |
| 28 | int update; |
| 29 | tran_low_t low_qc; |
| 30 | tran_low_t low_dqc; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 31 | int64_t dist0; |
| 32 | int rate; |
| 33 | int rate_low; |
| 34 | int64_t dist; |
| 35 | int64_t dist_low; |
| 36 | int64_t rd; |
| 37 | int64_t rd_low; |
| 38 | int nz_rate; // for eob |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 39 | int64_t rd_diff; |
| 40 | int cost_diff; |
| 41 | int64_t dist_diff; |
| 42 | int new_eob; |
| 43 | } LevelDownStats; |
| 44 | |
Angie Chiang | f0fbf9d | 2017-03-15 15:01:22 -0700 | [diff] [blame] | 45 | void av1_alloc_txb_buf(AV1_COMP *cpi) { |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 46 | #if 0 |
Angie Chiang | f0fbf9d | 2017-03-15 15:01:22 -0700 | [diff] [blame] | 47 | AV1_COMMON *cm = &cpi->common; |
| 48 | int mi_block_size = 1 << MI_SIZE_LOG2; |
| 49 | // TODO(angiebird): Make sure cm->subsampling_x/y is set correctly, and then |
| 50 | // use precise buffer size according to cm->subsampling_x/y |
| 51 | int pixel_stride = mi_block_size * cm->mi_cols; |
| 52 | int pixel_height = mi_block_size * cm->mi_rows; |
| 53 | int i; |
| 54 | for (i = 0; i < MAX_MB_PLANE; ++i) { |
| 55 | CHECK_MEM_ERROR( |
| 56 | cm, cpi->tcoeff_buf[i], |
| 57 | aom_malloc(sizeof(*cpi->tcoeff_buf[i]) * pixel_stride * pixel_height)); |
| 58 | } |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 59 | #else |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 60 | AV1_COMMON *cm = &cpi->common; |
Dominic Symes | 917d6c0 | 2017-10-11 18:00:52 +0200 | [diff] [blame] | 61 | int size = ((cm->mi_rows >> cm->mib_size_log2) + 1) * |
| 62 | ((cm->mi_cols >> cm->mib_size_log2) + 1); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 63 | |
Angie Chiang | 9367e3e | 2017-10-02 16:28:11 -0700 | [diff] [blame] | 64 | av1_free_txb_buf(cpi); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 65 | // TODO(jingning): This should be further reduced. |
| 66 | CHECK_MEM_ERROR(cm, cpi->coeff_buffer_base, |
| 67 | aom_malloc(sizeof(*cpi->coeff_buffer_base) * size)); |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 68 | #endif |
Angie Chiang | f0fbf9d | 2017-03-15 15:01:22 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void av1_free_txb_buf(AV1_COMP *cpi) { |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 72 | #if 0 |
Angie Chiang | f0fbf9d | 2017-03-15 15:01:22 -0700 | [diff] [blame] | 73 | int i; |
| 74 | for (i = 0; i < MAX_MB_PLANE; ++i) { |
| 75 | aom_free(cpi->tcoeff_buf[i]); |
| 76 | } |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 77 | #else |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 78 | aom_free(cpi->coeff_buffer_base); |
Angie Chiang | c484abe | 2017-03-20 15:43:11 -0700 | [diff] [blame] | 79 | #endif |
Angie Chiang | f0fbf9d | 2017-03-15 15:01:22 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 82 | void av1_set_coeff_buffer(const AV1_COMP *const cpi, MACROBLOCK *const x, |
| 83 | int mi_row, int mi_col) { |
Dominic Symes | 917d6c0 | 2017-10-11 18:00:52 +0200 | [diff] [blame] | 84 | int mib_size_log2 = cpi->common.mib_size_log2; |
| 85 | int stride = (cpi->common.mi_cols >> mib_size_log2) + 1; |
| 86 | int offset = (mi_row >> mib_size_log2) * stride + (mi_col >> mib_size_log2); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 87 | CB_COEFF_BUFFER *coeff_buf = &cpi->coeff_buffer_base[offset]; |
| 88 | const int txb_offset = x->cb_offset / (TX_SIZE_W_MIN * TX_SIZE_H_MIN); |
| 89 | for (int plane = 0; plane < MAX_MB_PLANE; ++plane) { |
| 90 | x->mbmi_ext->tcoeff[plane] = coeff_buf->tcoeff[plane] + x->cb_offset; |
| 91 | x->mbmi_ext->eobs[plane] = coeff_buf->eobs[plane] + txb_offset; |
| 92 | x->mbmi_ext->txb_skip_ctx[plane] = |
| 93 | coeff_buf->txb_skip_ctx[plane] + txb_offset; |
| 94 | x->mbmi_ext->dc_sign_ctx[plane] = |
| 95 | coeff_buf->dc_sign_ctx[plane] + txb_offset; |
| 96 | } |
| 97 | } |
| 98 | |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 99 | static void write_golomb(aom_writer *w, int level) { |
| 100 | int x = level + 1; |
| 101 | int i = x; |
| 102 | int length = 0; |
| 103 | |
| 104 | while (i) { |
| 105 | i >>= 1; |
| 106 | ++length; |
| 107 | } |
| 108 | assert(length > 0); |
| 109 | |
| 110 | for (i = 0; i < length - 1; ++i) aom_write_bit(w, 0); |
| 111 | |
| 112 | for (i = length - 1; i >= 0; --i) aom_write_bit(w, (x >> i) & 0x01); |
| 113 | } |
| 114 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 115 | static INLINE tran_low_t get_lower_coeff(tran_low_t qc) { |
| 116 | if (qc == 0) { |
| 117 | return 0; |
| 118 | } |
| 119 | return qc > 0 ? qc - 1 : qc + 1; |
| 120 | } |
| 121 | |
| 122 | static INLINE tran_low_t qcoeff_to_dqcoeff(tran_low_t qc, int dqv, int shift) { |
| 123 | int sgn = qc < 0 ? -1 : 1; |
| 124 | return sgn * ((abs(qc) * dqv) >> shift); |
| 125 | } |
| 126 | |
| 127 | static INLINE int64_t get_coeff_dist(tran_low_t tcoeff, tran_low_t dqcoeff, |
| 128 | int shift) { |
Monty Montgomery | 4a05a58 | 2017-11-01 21:21:07 -0400 | [diff] [blame] | 129 | #if CONFIG_DAALA_TX |
| 130 | int depth_shift = (TX_COEFF_DEPTH - 11) * 2; |
| 131 | int depth_round = depth_shift > 1 ? (1 << (depth_shift - 1)) : 0; |
| 132 | const int64_t diff = tcoeff - dqcoeff; |
| 133 | const int64_t error = diff * diff + depth_round >> depth_shift; |
| 134 | (void)shift; |
| 135 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 136 | const int64_t diff = (tcoeff - dqcoeff) * (1 << shift); |
| 137 | const int64_t error = diff * diff; |
Monty Montgomery | 4a05a58 | 2017-11-01 21:21:07 -0400 | [diff] [blame] | 138 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 139 | return error; |
| 140 | } |
| 141 | |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 142 | void av1_update_eob_context(int eob, int seg_eob, TX_SIZE tx_size, |
| 143 | TX_TYPE tx_type, PLANE_TYPE plane, |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 144 | FRAME_CONTEXT *ec_ctx, FRAME_COUNTS *counts, |
| 145 | uint8_t allow_update_cdf) { |
Linfeng Zhang | 0c72b2f | 2017-12-04 10:59:28 -0800 | [diff] [blame] | 146 | int eob_extra, dummy; |
| 147 | const int eob_pt = get_eob_pos_token(eob, &eob_extra); |
| 148 | const int max_eob_pt = get_eob_pos_token(seg_eob, &dummy); |
Debargha Mukherjee | b3eda2f | 2017-11-28 16:00:20 -0800 | [diff] [blame] | 149 | TX_SIZE txs_ctx = get_txsize_entropy_ctx(tx_size); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 150 | |
| 151 | for (int i = 1; i < max_eob_pt; i++) { |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 152 | int eob_pos_ctx = av1_get_eob_pos_ctx(tx_type, i); |
| 153 | counts->eob_flag[txs_ctx][plane][eob_pos_ctx][eob_pt == i]++; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 154 | if (allow_update_cdf) |
| 155 | update_cdf(ec_ctx->eob_flag_cdf[txs_ctx][plane][eob_pos_ctx], eob_pt == i, |
| 156 | 2); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 157 | if (eob_pt == i) { |
| 158 | break; |
| 159 | } |
| 160 | } |
Jingning Han | 00803a7 | 2017-10-25 16:04:34 -0700 | [diff] [blame] | 161 | |
Angie Chiang | 7ab884e | 2017-10-18 15:57:12 -0700 | [diff] [blame] | 162 | if (k_eob_offset_bits[eob_pt] > 0) { |
| 163 | int eob_shift = k_eob_offset_bits[eob_pt] - 1; |
| 164 | int bit = (eob_extra & (1 << eob_shift)) ? 1 : 0; |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 165 | counts->eob_extra[txs_ctx][plane][eob_pt][bit]++; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 166 | if (allow_update_cdf) |
| 167 | update_cdf(ec_ctx->eob_extra_cdf[txs_ctx][plane][eob_pt], bit, 2); |
Angie Chiang | 7ab884e | 2017-10-18 15:57:12 -0700 | [diff] [blame] | 168 | } |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | static int get_eob_cost(int eob, int seg_eob, |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 172 | const LV_MAP_COEFF_COST *txb_costs, TX_TYPE tx_type) { |
Linfeng Zhang | 0c72b2f | 2017-12-04 10:59:28 -0800 | [diff] [blame] | 173 | int eob_extra, dummy; |
| 174 | const int eob_pt = get_eob_pos_token(eob, &eob_extra); |
| 175 | const int max_eob_pt = get_eob_pos_token(seg_eob, &dummy); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 176 | int eob_cost = 0; |
| 177 | |
| 178 | // printf("Enc: [%d, %d], (%d, %d) ", seg_eob, eob, eob_pt, eob_extra); |
| 179 | for (int i = 1; i < max_eob_pt; i++) { |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 180 | int eob_pos_ctx = av1_get_eob_pos_ctx(tx_type, i); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 181 | eob_cost += txb_costs->eob_cost[eob_pos_ctx][eob_pt == i]; |
| 182 | if (eob_pt == i) { |
| 183 | break; |
| 184 | } |
| 185 | } |
| 186 | if (k_eob_offset_bits[eob_pt] > 0) { |
Angie Chiang | 7ab884e | 2017-10-18 15:57:12 -0700 | [diff] [blame] | 187 | int eob_shift = k_eob_offset_bits[eob_pt] - 1; |
| 188 | int bit = (eob_extra & (1 << eob_shift)) ? 1 : 0; |
| 189 | eob_cost += txb_costs->eob_extra_cost[eob_pt][bit]; |
| 190 | for (int i = 1; i < k_eob_offset_bits[eob_pt]; i++) { |
| 191 | eob_shift = k_eob_offset_bits[eob_pt] - 1 - i; |
| 192 | bit = (eob_extra & (1 << eob_shift)) ? 1 : 0; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 193 | eob_cost += av1_cost_bit(128, bit); |
| 194 | } |
| 195 | } |
| 196 | return eob_cost; |
| 197 | } |
| 198 | |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 199 | static int get_coeff_cost(const tran_low_t qc, const int scan_idx, |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 200 | #if CONFIG_LV_MAP_MULTI |
| 201 | const int is_eob, |
| 202 | #endif |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 203 | const TxbInfo *const txb_info, |
| 204 | const LV_MAP_COEFF_COST *const txb_costs); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 205 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 206 | static void get_dist_cost_stats(LevelDownStats *const stats, const int scan_idx, |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 207 | #if CONFIG_LV_MAP_MULTI |
| 208 | const int is_eob, |
| 209 | #endif |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 210 | const LV_MAP_COEFF_COST *const txb_costs, |
| 211 | TxbInfo *const txb_info) { |
| 212 | const int16_t *const scan = txb_info->scan_order->scan; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 213 | const int coeff_idx = scan[scan_idx]; |
| 214 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 215 | const uint8_t *const levels = txb_info->levels; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 216 | stats->new_eob = -1; |
| 217 | stats->update = 0; |
| 218 | |
| 219 | const tran_low_t tqc = txb_info->tcoeff[coeff_idx]; |
| 220 | const int dqv = txb_info->dequant[coeff_idx != 0]; |
| 221 | |
| 222 | const tran_low_t dqc = qcoeff_to_dqcoeff(qc, dqv, txb_info->shift); |
| 223 | const int64_t dqc_dist = get_coeff_dist(tqc, dqc, txb_info->shift); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 224 | #if CONFIG_LV_MAP_MULTI |
| 225 | const int qc_cost = get_coeff_cost(qc, scan_idx, is_eob, txb_info, txb_costs); |
| 226 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 227 | const int qc_cost = get_coeff_cost(qc, scan_idx, txb_info, txb_costs); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 228 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 229 | |
| 230 | // distortion difference when coefficient is quantized to 0 |
| 231 | const tran_low_t dqc0 = qcoeff_to_dqcoeff(0, dqv, txb_info->shift); |
| 232 | stats->dist0 = get_coeff_dist(tqc, dqc0, txb_info->shift); |
| 233 | stats->dist = dqc_dist - stats->dist0; |
| 234 | stats->rate = qc_cost; |
| 235 | |
| 236 | if (qc == 0) { |
| 237 | return; |
| 238 | } |
| 239 | stats->rd = RDCOST(txb_info->rdmult, stats->rate, stats->dist); |
| 240 | |
| 241 | stats->low_qc = get_lower_coeff(qc); |
| 242 | stats->low_dqc = qcoeff_to_dqcoeff(stats->low_qc, dqv, txb_info->shift); |
| 243 | const int64_t low_dqc_dist = |
| 244 | get_coeff_dist(tqc, stats->low_dqc, txb_info->shift); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 245 | #if CONFIG_LV_MAP_MULTI |
| 246 | const int low_qc_cost = |
| 247 | get_coeff_cost(stats->low_qc, scan_idx, is_eob, txb_info, txb_costs); |
| 248 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 249 | const int low_qc_cost = |
| 250 | get_coeff_cost(stats->low_qc, scan_idx, txb_info, txb_costs); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 251 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 252 | stats->dist_low = low_dqc_dist - stats->dist0; |
| 253 | stats->rate_low = low_qc_cost; |
| 254 | stats->rd_low = RDCOST(txb_info->rdmult, stats->rate_low, stats->dist_low); |
| 255 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 256 | #if CONFIG_LV_MAP_MULTI |
Ola Hugosson | e5a9b38 | 2017-11-16 17:02:28 +0100 | [diff] [blame] | 257 | (void)levels; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 258 | if ((stats->rd_low < stats->rd) && (stats->low_qc == 0)) { |
Ola Hugosson | e5a9b38 | 2017-11-16 17:02:28 +0100 | [diff] [blame] | 259 | stats->nz_rate = low_qc_cost; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 260 | } else { |
Ola Hugosson | e5a9b38 | 2017-11-16 17:02:28 +0100 | [diff] [blame] | 261 | if (stats->rd_low < stats->rd) { |
| 262 | const int low_qc_eob_cost = |
| 263 | get_coeff_cost(stats->low_qc, scan_idx, 1, txb_info, txb_costs); |
| 264 | stats->nz_rate = low_qc_cost - low_qc_eob_cost; |
| 265 | } else { |
| 266 | const int qc_eob_cost = |
| 267 | get_coeff_cost(qc, scan_idx, 1, txb_info, txb_costs); |
| 268 | stats->nz_rate = qc_cost - qc_eob_cost; |
| 269 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 270 | } |
| 271 | #else |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 272 | const int coeff_ctx = get_nz_map_ctx(levels, coeff_idx, txb_info->bwl, |
| 273 | txb_info->height, txb_info->tx_type); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 274 | if ((stats->rd_low < stats->rd) && (stats->low_qc == 0)) { |
| 275 | stats->nz_rate = txb_costs->nz_map_cost[coeff_ctx][0]; |
| 276 | } else { |
| 277 | stats->nz_rate = txb_costs->nz_map_cost[coeff_ctx][1]; |
| 278 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 279 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 282 | static INLINE void update_qcoeff(const int coeff_idx, const tran_low_t qc, |
| 283 | const TxbInfo *const txb_info) { |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 284 | txb_info->qcoeff[coeff_idx] = qc; |
Linfeng Zhang | d564737 | 2017-12-05 17:06:07 -0800 | [diff] [blame] | 285 | txb_info->levels[get_padded_idx(coeff_idx, txb_info->bwl)] = |
Jingning Han | 5cb408e | 2017-11-17 14:43:39 -0800 | [diff] [blame] | 286 | (uint8_t)clamp(abs(qc), 0, INT8_MAX); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static INLINE void update_coeff(const int coeff_idx, const tran_low_t qc, |
| 290 | const TxbInfo *const txb_info) { |
| 291 | update_qcoeff(coeff_idx, qc, txb_info); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 292 | const int dqv = txb_info->dequant[coeff_idx != 0]; |
| 293 | txb_info->dqcoeff[coeff_idx] = qcoeff_to_dqcoeff(qc, dqv, txb_info->shift); |
| 294 | } |
| 295 | |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 296 | static INLINE void av1_txb_init_levels(const tran_low_t *const coeff, |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 297 | const int width, const int height, |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 298 | uint8_t *const levels) { |
| 299 | const int stride = width + TX_PAD_HOR; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 300 | uint8_t *ls = levels; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 301 | |
| 302 | memset(levels - TX_PAD_TOP * stride, 0, |
| 303 | sizeof(*levels) * TX_PAD_TOP * stride); |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 304 | memset(levels + stride * height, 0, |
| 305 | sizeof(*levels) * (TX_PAD_BOTTOM * stride + TX_PAD_END)); |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 306 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 307 | for (int i = 0; i < height; i++) { |
| 308 | for (int j = 0; j < width; j++) { |
Jingning Han | 5cb408e | 2017-11-17 14:43:39 -0800 | [diff] [blame] | 309 | *ls++ = (uint8_t)clamp(abs(coeff[i * width + j]), 0, INT8_MAX); |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 310 | } |
| 311 | for (int j = 0; j < TX_PAD_HOR; j++) { |
| 312 | *ls++ = 0; |
| 313 | } |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 314 | } |
| 315 | } |
| 316 | |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 317 | void av1_write_coeffs_txb(const AV1_COMMON *const cm, MACROBLOCKD *xd, |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 318 | aom_writer *w, int blk_row, int blk_col, int block, |
| 319 | int plane, TX_SIZE tx_size, const tran_low_t *tcoeff, |
| 320 | uint16_t eob, TXB_CTX *txb_ctx) { |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 321 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Angie Chiang | cea11f2 | 2017-02-24 12:30:40 -0800 | [diff] [blame] | 322 | const PLANE_TYPE plane_type = get_plane_type(plane); |
Debargha Mukherjee | b3eda2f | 2017-11-28 16:00:20 -0800 | [diff] [blame] | 323 | const TX_SIZE txs_ctx = get_txsize_entropy_ctx(tx_size); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 324 | const TX_TYPE tx_type = |
| 325 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 326 | const SCAN_ORDER *const scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 327 | const int16_t *const scan = scan_order->scan; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 328 | const int seg_eob = av1_get_max_eob(tx_size); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 329 | int c; |
Angie Chiang | a9ba58e | 2017-12-01 19:22:43 -0800 | [diff] [blame] | 330 | const int bwl = get_txb_bwl(tx_size); |
| 331 | const int width = get_txb_wide(tx_size); |
| 332 | const int height = get_txb_high(tx_size); |
Linfeng Zhang | 848f7bc | 2017-10-31 15:26:07 -0700 | [diff] [blame] | 333 | int update_eob = -1; |
Jingning Han | 41c7f44 | 2017-09-05 14:54:00 -0700 | [diff] [blame] | 334 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 335 | uint8_t levels_buf[TX_PAD_2D]; |
| 336 | uint8_t *const levels = set_levels(levels_buf, width); |
Linfeng Zhang | ae7b2f3 | 2017-11-08 15:46:57 -0800 | [diff] [blame] | 337 | DECLARE_ALIGNED(16, uint8_t, level_counts[MAX_TX_SQUARE]); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 338 | |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 339 | (void)blk_row; |
| 340 | (void)blk_col; |
Jingning Han | 94cea4a | 2017-09-30 14:13:23 -0700 | [diff] [blame] | 341 | aom_write_bin(w, eob == 0, |
| 342 | ec_ctx->txb_skip_cdf[txs_ctx][txb_ctx->txb_skip_ctx], 2); |
Angie Chiang | a3f7d2e | 2017-12-07 19:51:14 -0800 | [diff] [blame^] | 343 | if (plane == 0 && eob == 0) { |
| 344 | assert(tx_type == DCT_DCT); |
| 345 | } |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 346 | if (eob == 0) return; |
Linfeng Zhang | ce065ca | 2017-10-17 16:49:30 -0700 | [diff] [blame] | 347 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 348 | av1_txb_init_levels(tcoeff, width, height, levels); |
Linfeng Zhang | ce065ca | 2017-10-17 16:49:30 -0700 | [diff] [blame] | 349 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 350 | #if CONFIG_TXK_SEL |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 351 | av1_write_tx_type(cm, xd, blk_row, blk_col, block, plane, |
| 352 | get_min_tx_size(tx_size), w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 353 | #endif |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 354 | |
Linfeng Zhang | 0c72b2f | 2017-12-04 10:59:28 -0800 | [diff] [blame] | 355 | int eob_extra, dummy; |
| 356 | const int eob_pt = get_eob_pos_token(eob, &eob_extra); |
| 357 | const int max_eob_pt = get_eob_pos_token(seg_eob, &dummy); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 358 | |
| 359 | // printf("Enc: [%d, %d], (%d, %d) ", seg_eob, eob, eob_pt, eob_extra); |
| 360 | for (int i = 1; i < max_eob_pt; i++) { |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 361 | int eob_pos_ctx = av1_get_eob_pos_ctx(tx_type, i); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 362 | |
| 363 | aom_write_bin(w, eob_pt == i, |
| 364 | ec_ctx->eob_flag_cdf[txs_ctx][plane_type][eob_pos_ctx], 2); |
| 365 | // aom_write_symbol(w, eob_pt == i, |
| 366 | // ec_ctx->eob_flag_cdf[AOMMIN(txs_ctx,3)][plane_type][eob_pos_ctx], 2); |
| 367 | if (eob_pt == i) { |
| 368 | break; |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | if (k_eob_offset_bits[eob_pt] > 0) { |
Angie Chiang | 7ab884e | 2017-10-18 15:57:12 -0700 | [diff] [blame] | 373 | int eob_shift = k_eob_offset_bits[eob_pt] - 1; |
| 374 | int bit = (eob_extra & (1 << eob_shift)) ? 1 : 0; |
| 375 | aom_write_bin(w, bit, ec_ctx->eob_extra_cdf[txs_ctx][plane_type][eob_pt], |
| 376 | 2); |
| 377 | for (int i = 1; i < k_eob_offset_bits[eob_pt]; i++) { |
| 378 | eob_shift = k_eob_offset_bits[eob_pt] - 1 - i; |
| 379 | bit = (eob_extra & (1 << eob_shift)) ? 1 : 0; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 380 | aom_write_bit(w, bit); |
| 381 | // printf("%d ", bit); |
| 382 | } |
| 383 | } |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 384 | |
| 385 | #if USE_CAUSAL_BASE_CTX |
| 386 | int coeff_ctx = 0; |
| 387 | for (int i = 0; i < eob; ++i) { |
| 388 | c = eob - 1 - i; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 389 | const int pos = scan[c]; |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 390 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 391 | #if CONFIG_LV_MAP_MULTI |
| 392 | coeff_ctx = |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 393 | get_nz_map_ctx(levels, pos, bwl, height, c, c == eob - 1, tx_type); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 394 | const tran_low_t v = tcoeff[pos]; |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 395 | #if USE_BASE_EOB_ALPHABET |
| 396 | if (c == eob - 1) { |
| 397 | aom_write_symbol( |
| 398 | w, AOMMIN(abs(v), 3) - 1, |
| 399 | ec_ctx->coeff_base_eob_cdf[txs_ctx][plane_type] |
| 400 | [coeff_ctx - SIG_COEF_CONTEXTS + |
| 401 | SIG_COEF_CONTEXTS_EOB], |
| 402 | 3); |
| 403 | } else { |
| 404 | aom_write_symbol(w, AOMMIN(abs(v), 3), |
| 405 | ec_ctx->coeff_base_cdf[txs_ctx][plane_type][coeff_ctx], |
| 406 | 4); |
| 407 | } |
| 408 | #else |
Thomas Davies | 736ddef | 2017-11-09 09:46:08 +0000 | [diff] [blame] | 409 | aom_write_symbol(w, AOMMIN(abs(v), 3), |
| 410 | ec_ctx->coeff_base_cdf[txs_ctx][plane_type][coeff_ctx], 4); |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 411 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 412 | #else |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 413 | coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 414 | const tran_low_t v = tcoeff[pos]; |
| 415 | const int is_nz = (v != 0); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 416 | |
| 417 | if (c < eob - 1) { |
| 418 | aom_write_bin(w, is_nz, |
| 419 | ec_ctx->nz_map_cdf[txs_ctx][plane_type][coeff_ctx], 2); |
| 420 | } |
| 421 | if (is_nz) { |
| 422 | const int level = abs(v); |
| 423 | int k; |
| 424 | for (k = 0; k < NUM_BASE_LEVELS; ++k) { |
| 425 | int is_k = (level > (k + 1)); |
| 426 | int ctx = coeff_ctx; |
| 427 | aom_write_bin(w, is_k, |
| 428 | ec_ctx->coeff_base_cdf[txs_ctx][plane_type][k][ctx], 2); |
| 429 | if (is_k == 0) break; |
| 430 | } |
| 431 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 432 | #endif |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 433 | } |
| 434 | update_eob = eob - 1; |
| 435 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 436 | for (int i = 1; i < eob; ++i) { |
| 437 | c = eob - 1 - i; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 438 | const int pos = scan[c]; |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 439 | const int coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 440 | const tran_low_t v = tcoeff[pos]; |
| 441 | const int is_nz = (v != 0); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 442 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 443 | aom_write_bin(w, is_nz, ec_ctx->nz_map_cdf[txs_ctx][plane_type][coeff_ctx], |
| 444 | 2); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 447 | for (int i = 0; i < NUM_BASE_LEVELS; ++i) { |
Linfeng Zhang | f72e138 | 2017-11-01 13:59:41 -0700 | [diff] [blame] | 448 | av1_get_base_level_counts(levels, i, width, height, level_counts); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 449 | for (c = eob - 1; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 450 | const int pos = scan[c]; |
| 451 | const tran_low_t level = abs(tcoeff[pos]); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 452 | int ctx; |
| 453 | |
| 454 | if (level <= i) continue; |
| 455 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 456 | ctx = get_base_ctx(levels, pos, bwl, i, level_counts[pos]); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 457 | |
| 458 | if (level == i + 1) { |
Jingning Han | 94cea4a | 2017-09-30 14:13:23 -0700 | [diff] [blame] | 459 | aom_write_bin(w, 1, ec_ctx->coeff_base_cdf[txs_ctx][plane_type][i][ctx], |
| 460 | 2); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 461 | continue; |
| 462 | } |
Jingning Han | 24b0cf9 | 2017-08-18 22:50:18 -0700 | [diff] [blame] | 463 | |
Jingning Han | 94cea4a | 2017-09-30 14:13:23 -0700 | [diff] [blame] | 464 | aom_write_bin(w, 0, ec_ctx->coeff_base_cdf[txs_ctx][plane_type][i][ctx], |
| 465 | 2); |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 466 | update_eob = AOMMAX(update_eob, c); |
| 467 | } |
| 468 | } |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 469 | #endif |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 470 | |
Dake He | 43edb76 | 2017-10-26 10:29:46 -0700 | [diff] [blame] | 471 | // Loop to code all signs in the transform block, |
| 472 | // starting with the sign of DC (if applicable) |
| 473 | for (c = 0; c < eob; ++c) { |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 474 | const tran_low_t v = tcoeff[scan[c]]; |
| 475 | const tran_low_t level = abs(v); |
| 476 | const int sign = (v < 0) ? 1 : 0; |
Dake He | 43edb76 | 2017-10-26 10:29:46 -0700 | [diff] [blame] | 477 | if (level == 0) continue; |
| 478 | |
| 479 | if (c == 0) { |
| 480 | #if LV_MAP_PROB |
| 481 | aom_write_bin(w, sign, |
| 482 | ec_ctx->dc_sign_cdf[plane_type][txb_ctx->dc_sign_ctx], 2); |
| 483 | #else |
| 484 | aom_write(w, sign, ec_ctx->dc_sign[plane_type][txb_ctx->dc_sign_ctx]); |
| 485 | #endif |
| 486 | } else { |
| 487 | aom_write_bit(w, sign); |
| 488 | } |
| 489 | } |
| 490 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 491 | if (update_eob >= 0) { |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 492 | #if !CONFIG_LV_MAP_MULTI |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 493 | av1_get_br_level_counts(levels, width, height, level_counts); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 494 | #endif |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 495 | for (c = update_eob; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 496 | const int pos = scan[c]; |
| 497 | const tran_low_t level = abs(tcoeff[pos]); |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 498 | int idx; |
| 499 | int ctx; |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 500 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 501 | if (level <= NUM_BASE_LEVELS) continue; |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 502 | |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 503 | // level is above 1. |
| 504 | #if !CONFIG_LV_MAP_MULTI |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 505 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos]); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 506 | #endif |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 507 | const int base_range = level - 1 - NUM_BASE_LEVELS; |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 508 | #if CONFIG_LV_MAP_MULTI |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 509 | #if USE_CAUSAL_BR_CTX |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 510 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos], tx_type); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 511 | |
| 512 | #else |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 513 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos]); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 514 | #endif |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 515 | for (idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 516 | const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 517 | aom_write_symbol( |
| 518 | w, k, |
| 519 | ec_ctx->coeff_br_cdf[AOMMIN(txs_ctx, TX_16X16)][plane_type][ctx], |
| 520 | BR_CDF_SIZE); |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 521 | if (k < BR_CDF_SIZE - 1) break; |
| 522 | } |
| 523 | if (base_range < COEFF_BASE_RANGE) continue; |
| 524 | #else |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 525 | int br_set_idx = 0; |
| 526 | int br_base = 0; |
| 527 | int br_offset = 0; |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 528 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 529 | if (base_range >= COEFF_BASE_RANGE) |
| 530 | br_set_idx = BASE_RANGE_SETS; |
| 531 | else |
| 532 | br_set_idx = coeff_to_br_index[base_range]; |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 533 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 534 | for (idx = 0; idx < BASE_RANGE_SETS; ++idx) { |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 535 | // printf("br: %d %d %d %d\n", txs_ctx, plane_type, idx, ctx); |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 536 | aom_write_bin(w, idx == br_set_idx, |
| 537 | ec_ctx->coeff_br_cdf[txs_ctx][plane_type][idx][ctx], 2); |
| 538 | if (idx == br_set_idx) { |
| 539 | br_base = br_index_to_coeff[br_set_idx]; |
| 540 | br_offset = base_range - br_base; |
| 541 | int extra_bits = (1 << br_extra_bits[idx]) - 1; |
| 542 | for (int tok = 0; tok < extra_bits; ++tok) { |
| 543 | if (tok == br_offset) { |
| 544 | aom_write_bin(w, 1, |
| 545 | ec_ctx->coeff_lps_cdf[txs_ctx][plane_type][ctx], 2); |
| 546 | break; |
| 547 | } |
| 548 | aom_write_bin(w, 0, ec_ctx->coeff_lps_cdf[txs_ctx][plane_type][ctx], |
Jingning Han | 94cea4a | 2017-09-30 14:13:23 -0700 | [diff] [blame] | 549 | 2); |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 550 | } |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 551 | // aom_write_literal(w, br_offset, br_extra_bits[idx]); |
| 552 | break; |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 553 | } |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 554 | } |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 555 | |
| 556 | if (br_set_idx < BASE_RANGE_SETS) continue; |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 557 | #endif |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 558 | // use 0-th order Golomb code to handle the residual level. |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 559 | write_golomb(w, |
| 560 | abs(tcoeff[pos]) - COEFF_BASE_RANGE - 1 - NUM_BASE_LEVELS); |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 561 | } |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 562 | } |
Jingning Han | 0bd3bf6 | 2017-11-28 17:11:51 -0800 | [diff] [blame] | 563 | |
| 564 | #if CONFIG_ADAPT_SCAN |
| 565 | const int mi_row = -xd->mb_to_top_edge >> (3 + MI_SIZE_LOG2); |
| 566 | av1_update_scan_count_facade(cm, xd, mi_row, tx_size, tx_type, tcoeff, eob); |
| 567 | #endif |
Angie Chiang | 80b8226 | 2017-02-24 11:39:47 -0800 | [diff] [blame] | 568 | } |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 569 | |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 570 | void av1_write_coeffs_mb(const AV1_COMMON *const cm, MACROBLOCK *x, |
| 571 | aom_writer *w, int plane) { |
| 572 | MACROBLOCKD *xd = &x->e_mbd; |
| 573 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
| 574 | BLOCK_SIZE bsize = mbmi->sb_type; |
| 575 | struct macroblockd_plane *pd = &xd->plane[plane]; |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 576 | const BLOCK_SIZE plane_bsize = |
Angie Chiang | ee4a34c | 2017-06-07 15:23:17 -0700 | [diff] [blame] | 577 | AOMMAX(BLOCK_4X4, get_plane_block_size(bsize, pd)); |
Angie Chiang | 8d6bc80 | 2017-04-12 15:14:05 -0700 | [diff] [blame] | 578 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
| 579 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
hui su | 0c6244b | 2017-07-12 17:11:43 -0700 | [diff] [blame] | 580 | const TX_SIZE tx_size = av1_get_tx_size(plane, xd); |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 581 | const int bkw = tx_size_wide_unit[tx_size]; |
| 582 | const int bkh = tx_size_high_unit[tx_size]; |
| 583 | const int step = tx_size_wide_unit[tx_size] * tx_size_high_unit[tx_size]; |
| 584 | int row, col; |
| 585 | int block = 0; |
Angie Chiang | 8d6bc80 | 2017-04-12 15:14:05 -0700 | [diff] [blame] | 586 | for (row = 0; row < max_blocks_high; row += bkh) { |
| 587 | for (col = 0; col < max_blocks_wide; col += bkw) { |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 588 | tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block); |
| 589 | uint16_t eob = x->mbmi_ext->eobs[plane][block]; |
| 590 | TXB_CTX txb_ctx = { x->mbmi_ext->txb_skip_ctx[plane][block], |
| 591 | x->mbmi_ext->dc_sign_ctx[plane][block] }; |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 592 | av1_write_coeffs_txb(cm, xd, w, row, col, block, plane, tx_size, tcoeff, |
| 593 | eob, &txb_ctx); |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 594 | block += step; |
| 595 | } |
| 596 | } |
| 597 | } |
| 598 | |
Yaowu Xu | 9b80391 | 2017-11-16 08:16:33 -0800 | [diff] [blame] | 599 | #if !USE_CAUSAL_BASE_CTX |
Linfeng Zhang | 841a84d | 2017-10-30 14:31:11 -0700 | [diff] [blame] | 600 | static INLINE void get_base_ctx_set(const uint8_t *const levels, |
| 601 | const int c, // raster order |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 602 | const int bwl, |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 603 | int ctx_set[NUM_BASE_LEVELS]) { |
| 604 | const int row = c >> bwl; |
| 605 | const int col = c - (row << bwl); |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 606 | const int width = 1 << bwl; |
| 607 | const int stride = width + TX_PAD_HOR; |
Jingning Han | e775b8b | 2017-10-26 16:56:22 -0700 | [diff] [blame] | 608 | int mag_count[NUM_BASE_LEVELS] = { 0 }; |
| 609 | int nb_mag[NUM_BASE_LEVELS][3] = { { 0 } }; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 610 | int idx; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 611 | int i; |
| 612 | |
| 613 | for (idx = 0; idx < BASE_CONTEXT_POSITION_NUM; ++idx) { |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 614 | const int ref_row = row + base_ref_offset[idx][0]; |
| 615 | const int ref_col = col + base_ref_offset[idx][1]; |
| 616 | const int pos = ref_row * stride + ref_col; |
Linfeng Zhang | 841a84d | 2017-10-30 14:31:11 -0700 | [diff] [blame] | 617 | const uint8_t abs_coeff = levels[pos]; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 618 | |
| 619 | for (i = 0; i < NUM_BASE_LEVELS; ++i) { |
| 620 | ctx_set[i] += abs_coeff > i; |
Jingning Han | e775b8b | 2017-10-26 16:56:22 -0700 | [diff] [blame] | 621 | if (base_ref_offset[idx][0] == 0 && base_ref_offset[idx][1] == 1) |
| 622 | nb_mag[i][0] = abs_coeff; |
| 623 | if (base_ref_offset[idx][0] == 1 && base_ref_offset[idx][1] == 0) |
| 624 | nb_mag[i][1] = abs_coeff; |
| 625 | if (base_ref_offset[idx][0] == 1 && base_ref_offset[idx][1] == 1) |
| 626 | nb_mag[i][2] = abs_coeff; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 627 | } |
| 628 | } |
| 629 | |
| 630 | for (i = 0; i < NUM_BASE_LEVELS; ++i) { |
Jingning Han | e775b8b | 2017-10-26 16:56:22 -0700 | [diff] [blame] | 631 | for (idx = 0; idx < 3; ++idx) mag_count[i] += nb_mag[i][idx] > i + 1; |
| 632 | ctx_set[i] = get_base_ctx_from_count_mag(row, col, ctx_set[i], |
| 633 | AOMMIN(2, mag_count[i])); |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 634 | } |
| 635 | return; |
| 636 | } |
Yaowu Xu | 9b80391 | 2017-11-16 08:16:33 -0800 | [diff] [blame] | 637 | #endif |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 638 | |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 639 | static INLINE int get_br_cost(tran_low_t abs_qc, int ctx, |
Angie Chiang | 26d3e45 | 2017-09-29 17:40:02 -0700 | [diff] [blame] | 640 | const int *coeff_lps) { |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 641 | const tran_low_t min_level = 1 + NUM_BASE_LEVELS; |
| 642 | const tran_low_t max_level = 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 643 | (void)ctx; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 644 | if (abs_qc >= min_level) { |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 645 | if (abs_qc >= max_level) |
Jingning Han | 772dee3 | 2017-09-15 08:53:18 -0700 | [diff] [blame] | 646 | return coeff_lps[COEFF_BASE_RANGE]; // COEFF_BASE_RANGE * cost0; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 647 | else |
Jingning Han | 772dee3 | 2017-09-15 08:53:18 -0700 | [diff] [blame] | 648 | return coeff_lps[(abs_qc - min_level)]; // * cost0 + cost1; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 649 | } else { |
| 650 | return 0; |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | static INLINE int get_base_cost(tran_low_t abs_qc, int ctx, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 655 | const int coeff_base[2], int base_idx) { |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 656 | const int level = base_idx + 1; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 657 | (void)ctx; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 658 | if (abs_qc < level) |
| 659 | return 0; |
| 660 | else |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 661 | return coeff_base[abs_qc == level]; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Angie Chiang | 3627de2 | 2017-08-18 20:15:59 -0700 | [diff] [blame] | 664 | int av1_cost_coeffs_txb(const AV1_COMMON *const cm, MACROBLOCK *x, int plane, |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 665 | int blk_row, int blk_col, int block, TX_SIZE tx_size, |
| 666 | TXB_CTX *txb_ctx) { |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 667 | MACROBLOCKD *const xd = &x->e_mbd; |
Debargha Mukherjee | b3eda2f | 2017-11-28 16:00:20 -0800 | [diff] [blame] | 668 | TX_SIZE txs_ctx = get_txsize_entropy_ctx(tx_size); |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 669 | const PLANE_TYPE plane_type = get_plane_type(plane); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 670 | const TX_TYPE tx_type = |
| 671 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 672 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
| 673 | const struct macroblock_plane *p = &x->plane[plane]; |
| 674 | const int eob = p->eobs[block]; |
| 675 | const tran_low_t *const qcoeff = BLOCK_OFFSET(p->qcoeff, block); |
| 676 | int c, cost; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 677 | int txb_skip_ctx = txb_ctx->txb_skip_ctx; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 678 | |
Angie Chiang | a9ba58e | 2017-12-01 19:22:43 -0800 | [diff] [blame] | 679 | const int bwl = get_txb_bwl(tx_size); |
| 680 | const int width = get_txb_wide(tx_size); |
| 681 | const int height = get_txb_high(tx_size); |
Jingning Han | 341d79e | 2017-06-13 15:57:59 -0700 | [diff] [blame] | 682 | |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 683 | const SCAN_ORDER *const scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 684 | const int16_t *const scan = scan_order->scan; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 685 | uint8_t levels_buf[TX_PAD_2D]; |
| 686 | uint8_t *const levels = set_levels(levels_buf, width); |
Linfeng Zhang | ae7b2f3 | 2017-11-08 15:46:57 -0800 | [diff] [blame] | 687 | DECLARE_ALIGNED(16, uint8_t, level_counts[MAX_TX_SQUARE]); |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 688 | |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 689 | LV_MAP_COEFF_COST *coeff_costs = &x->coeff_costs[txs_ctx][plane_type]; |
| 690 | |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 691 | cost = 0; |
| 692 | |
| 693 | if (eob == 0) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 694 | cost = coeff_costs->txb_skip_cost[txb_skip_ctx][1]; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 695 | return cost; |
| 696 | } |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 697 | cost = coeff_costs->txb_skip_cost[txb_skip_ctx][0]; |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 698 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 699 | av1_txb_init_levels(qcoeff, width, height, levels); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 700 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 701 | #if CONFIG_TXK_SEL |
Yue Chen | b23d00a | 2017-07-28 17:01:21 -0700 | [diff] [blame] | 702 | cost += av1_tx_type_cost(cm, x, xd, mbmi->sb_type, plane, tx_size, tx_type); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 703 | #endif |
Angie Chiang | 0591787 | 2017-04-15 12:28:56 -0700 | [diff] [blame] | 704 | |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 705 | const int seg_eob = av1_get_max_eob(tx_size); |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 706 | int eob_cost = get_eob_cost(eob, seg_eob, coeff_costs, tx_type); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 707 | #if !CONFIG_LV_MAP_MULTI |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 708 | av1_get_br_level_counts(levels, width, height, level_counts); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 709 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 710 | cost += eob_cost; |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 711 | #if USE_CAUSAL_BASE_CTX |
| 712 | int coeff_ctx = 0; |
| 713 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 714 | for (c = eob - 1; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 715 | const int pos = scan[c]; |
| 716 | const tran_low_t v = qcoeff[pos]; |
| 717 | const int is_nz = (v != 0); |
| 718 | const int level = abs(v); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 719 | #if CONFIG_LV_MAP_MULTI |
| 720 | coeff_ctx = |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 721 | get_nz_map_ctx(levels, pos, bwl, height, c, c == eob - 1, tx_type); |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 722 | #if USE_BASE_EOB_ALPHABET |
| 723 | if (c == eob - 1) { |
| 724 | cost += coeff_costs |
| 725 | ->base_eob_cost[coeff_ctx - SIG_COEF_CONTEXTS + |
| 726 | SIG_COEF_CONTEXTS_EOB][AOMMIN(level, 3) - 1]; |
| 727 | } else { |
| 728 | cost += coeff_costs->base_cost[coeff_ctx][AOMMIN(level, 3)]; |
| 729 | } |
| 730 | #else |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 731 | cost += coeff_costs->base_cost[coeff_ctx][AOMMIN(level, 3)]; |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 732 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 733 | #else // CONFIG_LV_MAP_MULTI |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 734 | #if USE_CAUSAL_BASE_CTX |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 735 | coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 736 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 737 | |
| 738 | if (c < eob - 1) { |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 739 | #if !USE_CAUSAL_BASE_CTX |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 740 | const int coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 741 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 742 | cost += coeff_costs->nz_map_cost[coeff_ctx][is_nz]; |
| 743 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 744 | #endif // CONFIG_LV_MAP_MULTI |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 745 | |
| 746 | if (is_nz) { |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 747 | #if !USE_CAUSAL_BASE_CTX |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 748 | int ctx_ls[NUM_BASE_LEVELS] = { 0 }; |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 749 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 750 | int sign = (v < 0) ? 1 : 0; |
| 751 | |
| 752 | // sign bit cost |
| 753 | if (c == 0) { |
| 754 | int dc_sign_ctx = txb_ctx->dc_sign_ctx; |
| 755 | cost += coeff_costs->dc_sign_cost[dc_sign_ctx][sign]; |
| 756 | } else { |
| 757 | cost += av1_cost_bit(128, sign); |
| 758 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 759 | #if !CONFIG_LV_MAP_MULTI |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 760 | #if USE_CAUSAL_BASE_CTX |
| 761 | int k; |
| 762 | for (k = 0; k < NUM_BASE_LEVELS; ++k) { |
| 763 | int is_k = (level > (k + 1)); |
| 764 | int ctx = coeff_ctx; |
| 765 | // get_base_ctx_from_b(c, k, b0, b1, b2); |
| 766 | cost += coeff_costs->base_cost[k][ctx][is_k]; |
| 767 | if (is_k == 0) break; |
| 768 | } |
| 769 | #else |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 770 | get_base_ctx_set(levels, pos, bwl, ctx_ls); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 771 | |
| 772 | int i; |
| 773 | for (i = 0; i < NUM_BASE_LEVELS; ++i) { |
| 774 | if (level <= i) continue; |
| 775 | |
| 776 | if (level == i + 1) { |
| 777 | cost += coeff_costs->base_cost[i][ctx_ls[i]][1]; |
| 778 | continue; |
| 779 | } |
| 780 | cost += coeff_costs->base_cost[i][ctx_ls[i]][0]; |
| 781 | } |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 782 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 783 | #endif // CONFIG_LV_MAP_MULTI |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 784 | if (level > NUM_BASE_LEVELS) { |
| 785 | int ctx; |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 786 | #if CONFIG_LV_MAP_MULTI && USE_CAUSAL_BR_CTX |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 787 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos], tx_type); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 788 | #else |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 789 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos]); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 790 | #endif |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 791 | const int base_range = level - 1 - NUM_BASE_LEVELS; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 792 | if (base_range < COEFF_BASE_RANGE) { |
| 793 | cost += coeff_costs->lps_cost[ctx][base_range]; |
| 794 | } else { |
| 795 | cost += coeff_costs->lps_cost[ctx][COEFF_BASE_RANGE]; |
| 796 | } |
| 797 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 798 | if (level >= 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
| 799 | // residual cost |
| 800 | int r = level - COEFF_BASE_RANGE - NUM_BASE_LEVELS; |
| 801 | int ri = r; |
| 802 | int length = 0; |
| 803 | |
| 804 | while (ri) { |
| 805 | ri >>= 1; |
| 806 | ++length; |
| 807 | } |
| 808 | |
| 809 | for (ri = 0; ri < length - 1; ++ri) cost += av1_cost_bit(128, 0); |
| 810 | |
| 811 | for (ri = length - 1; ri >= 0; --ri) |
| 812 | cost += av1_cost_bit(128, (r >> ri) & 0x01); |
| 813 | } |
| 814 | } |
| 815 | } |
| 816 | } |
Angie Chiang | 47c7218 | 2017-02-27 14:30:38 -0800 | [diff] [blame] | 817 | return cost; |
| 818 | } |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 819 | |
Angie Chiang | 2affb3b | 2017-05-30 15:23:51 -0700 | [diff] [blame] | 820 | static INLINE int has_base(tran_low_t qc, int base_idx) { |
| 821 | const int level = base_idx + 1; |
| 822 | return abs(qc) >= level; |
| 823 | } |
| 824 | |
Angie Chiang | 2affb3b | 2017-05-30 15:23:51 -0700 | [diff] [blame] | 825 | static INLINE int has_br(tran_low_t qc) { |
| 826 | return abs(qc) >= 1 + NUM_BASE_LEVELS; |
| 827 | } |
| 828 | |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 829 | static INLINE int get_sign_bit_cost(tran_low_t qc, int coeff_idx, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 830 | const int (*dc_sign_cost)[2], |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 831 | int dc_sign_ctx) { |
| 832 | const int sign = (qc < 0) ? 1 : 0; |
| 833 | // sign bit cost |
| 834 | if (coeff_idx == 0) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 835 | return dc_sign_cost[dc_sign_ctx][sign]; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 836 | } else { |
| 837 | return av1_cost_bit(128, sign); |
| 838 | } |
| 839 | } |
| 840 | static INLINE int get_golomb_cost(int abs_qc) { |
| 841 | if (abs_qc >= 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
| 842 | // residual cost |
| 843 | int r = abs_qc - COEFF_BASE_RANGE - NUM_BASE_LEVELS; |
| 844 | int ri = r; |
| 845 | int length = 0; |
| 846 | |
| 847 | while (ri) { |
| 848 | ri >>= 1; |
| 849 | ++length; |
| 850 | } |
| 851 | |
| 852 | return av1_cost_literal(2 * length - 1); |
| 853 | } else { |
| 854 | return 0; |
| 855 | } |
| 856 | } |
| 857 | |
Angie Chiang | 2affb3b | 2017-05-30 15:23:51 -0700 | [diff] [blame] | 858 | void gen_txb_cache(TxbCache *txb_cache, TxbInfo *txb_info) { |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 859 | // gen_nz_count_arr |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 860 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 861 | const int bwl = txb_info->bwl; |
| 862 | const int height = txb_info->height; |
Linfeng Zhang | 72e0b3f | 2017-10-18 13:32:12 -0700 | [diff] [blame] | 863 | const tran_low_t *const qcoeff = txb_info->qcoeff; |
Linfeng Zhang | b6957c2 | 2017-10-25 13:17:28 -0700 | [diff] [blame] | 864 | const uint8_t *const levels = txb_info->levels; |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 865 | const BASE_CTX_TABLE *base_ctx_table = |
| 866 | txb_info->coeff_ctx_table->base_ctx_table; |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 867 | for (int c = 0; c < txb_info->eob; ++c) { |
| 868 | const int coeff_idx = scan[c]; // raster order |
| 869 | const int row = coeff_idx >> bwl; |
| 870 | const int col = coeff_idx - (row << bwl); |
Jingning Han | 3422ac1 | 2017-10-25 20:37:53 -0700 | [diff] [blame] | 871 | |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 872 | txb_cache->nz_count_arr[coeff_idx] = |
Linfeng Zhang | d564737 | 2017-12-05 17:06:07 -0800 | [diff] [blame] | 873 | get_nz_count(levels + get_padded_idx(coeff_idx, bwl), bwl, |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 874 | tx_type_to_class[txb_info->tx_type]); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 875 | |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 876 | txb_cache->nz_ctx_arr[coeff_idx] = get_nz_map_ctx_from_stats( |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 877 | #if USE_CAUSAL_BASE_CTX |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 878 | 0, |
| 879 | #else |
| 880 | txb_cache->nz_count_arr[coeff_idx], |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 881 | #endif |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 882 | coeff_idx, bwl, height, txb_info->tx_type); |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 883 | |
| 884 | // gen_base_count_mag_arr |
| 885 | if (!has_base(qcoeff[coeff_idx], 0)) continue; |
| 886 | int *base_mag = txb_cache->base_mag_arr[coeff_idx]; |
Angie Chiang | 9cde59f | 2017-08-16 15:24:55 -0700 | [diff] [blame] | 887 | int count[NUM_BASE_LEVELS]; |
| 888 | get_base_count_mag(base_mag, count, qcoeff, bwl, height, row, col); |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 889 | |
| 890 | for (int i = 0; i < NUM_BASE_LEVELS; ++i) { |
Angie Chiang | 9cde59f | 2017-08-16 15:24:55 -0700 | [diff] [blame] | 891 | if (!has_base(qcoeff[coeff_idx], i)) break; |
| 892 | txb_cache->base_count_arr[i][coeff_idx] = count[i]; |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 893 | const int level = i + 1; |
Angie Chiang | 9cde59f | 2017-08-16 15:24:55 -0700 | [diff] [blame] | 894 | txb_cache->base_ctx_arr[i][coeff_idx] = |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 895 | base_ctx_table[row != 0][col != 0][base_mag[0] > level][count[i]]; |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | // gen_br_count_mag_arr |
| 899 | if (!has_br(qcoeff[coeff_idx])) continue; |
| 900 | int *br_count = txb_cache->br_count_arr + coeff_idx; |
| 901 | int *br_mag = txb_cache->br_mag_arr[coeff_idx]; |
Angie Chiang | ea8183b | 2017-08-17 14:36:35 -0700 | [diff] [blame] | 902 | *br_count = get_br_count_mag(br_mag, qcoeff, bwl, height, row, col, |
| 903 | NUM_BASE_LEVELS); |
Angie Chiang | 481c01f | 2017-08-15 16:24:30 -0700 | [diff] [blame] | 904 | txb_cache->br_ctx_arr[coeff_idx] = |
| 905 | get_br_ctx_from_count_mag(row, col, *br_count, br_mag[0]); |
| 906 | } |
Angie Chiang | 2affb3b | 2017-05-30 15:23:51 -0700 | [diff] [blame] | 907 | } |
| 908 | |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 909 | static INLINE const int *get_level_prob(int level, int coeff_idx, |
| 910 | const TxbCache *txb_cache, |
| 911 | const LV_MAP_COEFF_COST *txb_costs) { |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 912 | #if CONFIG_LV_MAP_MULTI |
| 913 | if (level < 1 + NUM_BASE_LEVELS) { |
| 914 | const int ctx = txb_cache->nz_ctx_arr[coeff_idx]; |
| 915 | return &txb_costs->base_cost[ctx][level]; |
| 916 | #else |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 917 | if (level == 0) { |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 918 | const int ctx = txb_cache->nz_ctx_arr[coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 919 | return txb_costs->nz_map_cost[ctx]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 920 | } else if (level >= 1 && level < 1 + NUM_BASE_LEVELS) { |
| 921 | const int idx = level - 1; |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 922 | const int ctx = txb_cache->base_ctx_arr[idx][coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 923 | return txb_costs->base_cost[idx][ctx]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 924 | #endif |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 925 | } else if (level >= 1 + NUM_BASE_LEVELS && |
| 926 | level < 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 927 | const int ctx = txb_cache->br_ctx_arr[coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 928 | return txb_costs->lps_cost[ctx]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 929 | } else if (level >= 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 930 | // printf("get_level_prob does not support golomb\n"); |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 931 | assert(0); |
| 932 | return 0; |
| 933 | } else { |
| 934 | assert(0); |
| 935 | return 0; |
| 936 | } |
| 937 | } |
| 938 | |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 939 | static INLINE void update_mag_arr(int *mag_arr, int abs_qc) { |
| 940 | if (mag_arr[0] == abs_qc) { |
| 941 | mag_arr[1] -= 1; |
| 942 | assert(mag_arr[1] >= 0); |
| 943 | } |
| 944 | } |
| 945 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 946 | static INLINE int get_mag_from_mag_arr(const int *mag_arr) { |
| 947 | int mag; |
| 948 | if (mag_arr[1] > 0) { |
| 949 | mag = mag_arr[0]; |
| 950 | } else if (mag_arr[0] > 0) { |
| 951 | mag = mag_arr[0] - 1; |
| 952 | } else { |
| 953 | // no neighbor |
| 954 | assert(mag_arr[0] == 0 && mag_arr[1] == 0); |
| 955 | mag = 0; |
| 956 | } |
| 957 | return mag; |
| 958 | } |
| 959 | |
| 960 | static int neighbor_level_down_update(int *new_count, int *new_mag, int count, |
| 961 | const int *mag, int coeff_idx, |
| 962 | tran_low_t abs_nb_coeff, int nb_coeff_idx, |
| 963 | int level, const TxbInfo *txb_info) { |
| 964 | *new_count = count; |
| 965 | *new_mag = get_mag_from_mag_arr(mag); |
| 966 | |
| 967 | int update = 0; |
| 968 | // check if br_count changes |
| 969 | if (abs_nb_coeff == level) { |
| 970 | update = 1; |
| 971 | *new_count -= 1; |
| 972 | assert(*new_count >= 0); |
| 973 | } |
| 974 | const int row = coeff_idx >> txb_info->bwl; |
| 975 | const int col = coeff_idx - (row << txb_info->bwl); |
| 976 | const int nb_row = nb_coeff_idx >> txb_info->bwl; |
| 977 | const int nb_col = nb_coeff_idx - (nb_row << txb_info->bwl); |
| 978 | |
| 979 | // check if mag changes |
| 980 | if (nb_row >= row && nb_col >= col) { |
| 981 | if (abs_nb_coeff == mag[0]) { |
| 982 | assert(mag[1] > 0); |
| 983 | if (mag[1] == 1) { |
| 984 | // the nb is the only qc with max mag |
| 985 | *new_mag -= 1; |
| 986 | assert(*new_mag >= 0); |
| 987 | update = 1; |
| 988 | } |
| 989 | } |
| 990 | } |
| 991 | return update; |
| 992 | } |
| 993 | |
| 994 | static int try_neighbor_level_down_br(int coeff_idx, int nb_coeff_idx, |
| 995 | const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 996 | const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 997 | const TxbInfo *txb_info) { |
| 998 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 999 | const tran_low_t abs_qc = abs(qc); |
| 1000 | const int level = NUM_BASE_LEVELS + 1; |
| 1001 | if (abs_qc < level) return 0; |
| 1002 | |
| 1003 | const tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
| 1004 | const tran_low_t abs_nb_coeff = abs(nb_coeff); |
| 1005 | const int count = txb_cache->br_count_arr[coeff_idx]; |
| 1006 | const int *mag = txb_cache->br_mag_arr[coeff_idx]; |
| 1007 | int new_count; |
| 1008 | int new_mag; |
| 1009 | const int update = |
| 1010 | neighbor_level_down_update(&new_count, &new_mag, count, mag, coeff_idx, |
| 1011 | abs_nb_coeff, nb_coeff_idx, level, txb_info); |
| 1012 | if (update) { |
| 1013 | const int row = coeff_idx >> txb_info->bwl; |
| 1014 | const int col = coeff_idx - (row << txb_info->bwl); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1015 | const int ctx = txb_cache->br_ctx_arr[coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1016 | const int org_cost = get_br_cost(abs_qc, ctx, txb_costs->lps_cost[ctx]); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1017 | |
| 1018 | const int new_ctx = get_br_ctx_from_count_mag(row, col, new_count, new_mag); |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1019 | const int new_cost = |
| 1020 | get_br_cost(abs_qc, new_ctx, txb_costs->lps_cost[new_ctx]); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1021 | const int cost_diff = -org_cost + new_cost; |
| 1022 | return cost_diff; |
| 1023 | } else { |
| 1024 | return 0; |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | static int try_neighbor_level_down_base(int coeff_idx, int nb_coeff_idx, |
| 1029 | const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1030 | const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1031 | const TxbInfo *txb_info) { |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1032 | #if CONFIG_LV_MAP_MULTI |
| 1033 | // TODO(olah): not implemented yet |
| 1034 | (void)coeff_idx; |
| 1035 | (void)nb_coeff_idx; |
| 1036 | (void)txb_cache; |
| 1037 | (void)txb_costs; |
| 1038 | (void)txb_info; |
| 1039 | return 0; |
| 1040 | #else |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1041 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1042 | const tran_low_t abs_qc = abs(qc); |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 1043 | const BASE_CTX_TABLE *base_ctx_table = |
| 1044 | txb_info->coeff_ctx_table->base_ctx_table; |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1045 | |
| 1046 | int cost_diff = 0; |
| 1047 | for (int base_idx = 0; base_idx < NUM_BASE_LEVELS; ++base_idx) { |
| 1048 | const int level = base_idx + 1; |
| 1049 | if (abs_qc < level) continue; |
| 1050 | |
| 1051 | const tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
| 1052 | const tran_low_t abs_nb_coeff = abs(nb_coeff); |
| 1053 | |
| 1054 | const int count = txb_cache->base_count_arr[base_idx][coeff_idx]; |
| 1055 | const int *mag = txb_cache->base_mag_arr[coeff_idx]; |
| 1056 | int new_count; |
| 1057 | int new_mag; |
| 1058 | const int update = |
| 1059 | neighbor_level_down_update(&new_count, &new_mag, count, mag, coeff_idx, |
| 1060 | abs_nb_coeff, nb_coeff_idx, level, txb_info); |
| 1061 | if (update) { |
| 1062 | const int row = coeff_idx >> txb_info->bwl; |
| 1063 | const int col = coeff_idx - (row << txb_info->bwl); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1064 | const int ctx = txb_cache->base_ctx_arr[base_idx][coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1065 | const int org_cost = get_base_cost( |
| 1066 | abs_qc, ctx, txb_costs->base_cost[base_idx][ctx], base_idx); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1067 | |
| 1068 | const int new_ctx = |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 1069 | base_ctx_table[row != 0][col != 0][new_mag > level][new_count]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1070 | const int new_cost = get_base_cost( |
| 1071 | abs_qc, new_ctx, txb_costs->base_cost[base_idx][new_ctx], base_idx); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1072 | cost_diff += -org_cost + new_cost; |
| 1073 | } |
| 1074 | } |
| 1075 | return cost_diff; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1076 | #endif |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | static int try_neighbor_level_down_nz(int coeff_idx, int nb_coeff_idx, |
| 1080 | const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1081 | const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1082 | TxbInfo *txb_info) { |
| 1083 | // assume eob doesn't change |
| 1084 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1085 | const tran_low_t abs_qc = abs(qc); |
| 1086 | const tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
| 1087 | const tran_low_t abs_nb_coeff = abs(nb_coeff); |
| 1088 | if (abs_nb_coeff != 1) return 0; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1089 | const int16_t *const iscan = txb_info->scan_order->iscan; |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1090 | const int scan_idx = iscan[coeff_idx]; |
| 1091 | if (scan_idx == txb_info->seg_eob) return 0; |
| 1092 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
| 1093 | if (nb_scan_idx < scan_idx) { |
| 1094 | const int count = txb_cache->nz_count_arr[coeff_idx]; |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1095 | (void)count; |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1096 | assert(count > 0); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1097 | update_qcoeff(nb_coeff_idx, get_lower_coeff(nb_coeff), txb_info); |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1098 | const int new_ctx = get_nz_map_ctx_from_stats( |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1099 | #if USE_CAUSAL_BASE_CTX |
| 1100 | 0, |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1101 | #else |
| 1102 | count - 1, |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1103 | #endif |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1104 | coeff_idx, txb_info->bwl, txb_info->height, txb_info->tx_type); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1105 | update_qcoeff(nb_coeff_idx, nb_coeff, txb_info); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1106 | const int ctx = txb_cache->nz_ctx_arr[coeff_idx]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1107 | #if CONFIG_LV_MAP_MULTI |
| 1108 | const int org_cost = txb_costs->base_cost[ctx][AOMMIN(abs_qc, 3)]; |
| 1109 | const int new_cost = txb_costs->base_cost[new_ctx][AOMMIN(abs_qc, 3)]; |
| 1110 | #else |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1111 | const int is_nz = abs_qc > 0; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1112 | const int org_cost = txb_costs->nz_map_cost[ctx][is_nz]; |
| 1113 | const int new_cost = txb_costs->nz_map_cost[new_ctx][is_nz]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1114 | #endif |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1115 | const int cost_diff = new_cost - org_cost; |
| 1116 | return cost_diff; |
| 1117 | } else { |
| 1118 | return 0; |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | static int try_self_level_down(tran_low_t *low_coeff, int coeff_idx, |
| 1123 | const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1124 | const LV_MAP_COEFF_COST *txb_costs, |
| 1125 | TxbInfo *txb_info) { |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1126 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1127 | if (qc == 0) { |
| 1128 | *low_coeff = 0; |
| 1129 | return 0; |
| 1130 | } |
| 1131 | const tran_low_t abs_qc = abs(qc); |
| 1132 | *low_coeff = get_lower_coeff(qc); |
| 1133 | int cost_diff; |
| 1134 | if (*low_coeff == 0) { |
| 1135 | const int scan_idx = txb_info->scan_order->iscan[coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1136 | const int *level_cost = |
| 1137 | get_level_prob(abs_qc, coeff_idx, txb_cache, txb_costs); |
| 1138 | const int *low_level_cost = |
| 1139 | get_level_prob(abs(*low_coeff), coeff_idx, txb_cache, txb_costs); |
Jingning Han | 3422ac1 | 2017-10-25 20:37:53 -0700 | [diff] [blame] | 1140 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1141 | if (scan_idx < txb_info->eob - 1) { |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1142 | // When level-0, we code the binary of abs_qc > level |
| 1143 | // but when level-k k > 0 we code the binary of abs_qc == level |
| 1144 | // That's why wee need this special treatment for level-0 map |
| 1145 | // TODO(angiebird): make leve-0 consistent to other levels |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1146 | cost_diff = -level_cost[1] + low_level_cost[0] - low_level_cost[1]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1147 | } else { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1148 | cost_diff = -level_cost[1]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1149 | } |
| 1150 | |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1151 | const int sign_cost = get_sign_bit_cost( |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1152 | qc, coeff_idx, txb_costs->dc_sign_cost, txb_info->txb_ctx->dc_sign_ctx); |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1153 | cost_diff -= sign_cost; |
Jingning Han | 772dee3 | 2017-09-15 08:53:18 -0700 | [diff] [blame] | 1154 | } else if (abs_qc <= NUM_BASE_LEVELS) { |
| 1155 | const int *level_cost = |
| 1156 | get_level_prob(abs_qc, coeff_idx, txb_cache, txb_costs); |
| 1157 | const int *low_level_cost = |
| 1158 | get_level_prob(abs(*low_coeff), coeff_idx, txb_cache, txb_costs); |
| 1159 | cost_diff = -level_cost[1] + low_level_cost[1] - low_level_cost[0]; |
| 1160 | } else if (abs_qc == NUM_BASE_LEVELS + 1) { |
| 1161 | const int *level_cost = |
| 1162 | get_level_prob(abs_qc, coeff_idx, txb_cache, txb_costs); |
| 1163 | const int *low_level_cost = |
| 1164 | get_level_prob(abs(*low_coeff), coeff_idx, txb_cache, txb_costs); |
| 1165 | cost_diff = -level_cost[0] + low_level_cost[1] - low_level_cost[0]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1166 | } else if (abs_qc < 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1167 | const int *level_cost = |
| 1168 | get_level_prob(abs_qc, coeff_idx, txb_cache, txb_costs); |
| 1169 | const int *low_level_cost = |
| 1170 | get_level_prob(abs(*low_coeff), coeff_idx, txb_cache, txb_costs); |
| 1171 | |
Jingning Han | 772dee3 | 2017-09-15 08:53:18 -0700 | [diff] [blame] | 1172 | cost_diff = -level_cost[abs_qc - 1 - NUM_BASE_LEVELS] + |
| 1173 | low_level_cost[abs(*low_coeff) - 1 - NUM_BASE_LEVELS]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1174 | } else if (abs_qc == 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1175 | const int *low_level_cost = |
| 1176 | get_level_prob(abs(*low_coeff), coeff_idx, txb_cache, txb_costs); |
Jingning Han | 772dee3 | 2017-09-15 08:53:18 -0700 | [diff] [blame] | 1177 | cost_diff = -get_golomb_cost(abs_qc) - low_level_cost[COEFF_BASE_RANGE] + |
| 1178 | low_level_cost[COEFF_BASE_RANGE - 1]; |
Angie Chiang | 7afbba4 | 2017-05-30 15:59:15 -0700 | [diff] [blame] | 1179 | } else { |
| 1180 | assert(abs_qc > 1 + NUM_BASE_LEVELS + COEFF_BASE_RANGE); |
| 1181 | const tran_low_t abs_low_coeff = abs(*low_coeff); |
| 1182 | cost_diff = -get_golomb_cost(abs_qc) + get_golomb_cost(abs_low_coeff); |
| 1183 | } |
| 1184 | return cost_diff; |
| 1185 | } |
| 1186 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1187 | #define COST_MAP_SIZE 5 |
| 1188 | #define COST_MAP_OFFSET 2 |
| 1189 | |
| 1190 | static INLINE int check_nz_neighbor(tran_low_t qc) { return abs(qc) == 1; } |
| 1191 | |
| 1192 | static INLINE int check_base_neighbor(tran_low_t qc) { |
| 1193 | return abs(qc) <= 1 + NUM_BASE_LEVELS; |
| 1194 | } |
| 1195 | |
| 1196 | static INLINE int check_br_neighbor(tran_low_t qc) { |
| 1197 | return abs(qc) > BR_MAG_OFFSET; |
| 1198 | } |
| 1199 | |
Angie Chiang | 8727829 | 2017-10-18 09:59:47 -0700 | [diff] [blame] | 1200 | #define FAST_OPTIMIZE_TXB 1 |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1201 | |
| 1202 | #if FAST_OPTIMIZE_TXB |
| 1203 | #define ALNB_REF_OFFSET_NUM 2 |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1204 | static const int alnb_ref_offset[ALNB_REF_OFFSET_NUM][2] = { |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1205 | { -1, 0 }, { 0, -1 }, |
| 1206 | }; |
| 1207 | #define NB_REF_OFFSET_NUM 4 |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1208 | static const int nb_ref_offset[NB_REF_OFFSET_NUM][2] = { |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1209 | { -1, 0 }, { 0, -1 }, { 1, 0 }, { 0, 1 }, |
| 1210 | }; |
| 1211 | #endif // FAST_OPTIMIZE_TXB |
| 1212 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1213 | // TODO(angiebird): add static to this function once it's called |
| 1214 | int try_level_down(int coeff_idx, const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1215 | const LV_MAP_COEFF_COST *txb_costs, TxbInfo *txb_info, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1216 | int (*cost_map)[COST_MAP_SIZE], int fast_mode) { |
| 1217 | #if !FAST_OPTIMIZE_TXB |
| 1218 | (void)fast_mode; |
| 1219 | #endif |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1220 | if (cost_map) { |
| 1221 | for (int i = 0; i < COST_MAP_SIZE; ++i) av1_zero(cost_map[i]); |
| 1222 | } |
| 1223 | |
| 1224 | tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1225 | tran_low_t low_coeff; |
| 1226 | if (qc == 0) return 0; |
| 1227 | int accu_cost_diff = 0; |
| 1228 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1229 | const int16_t *const iscan = txb_info->scan_order->iscan; |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1230 | const int eob = txb_info->eob; |
| 1231 | const int scan_idx = iscan[coeff_idx]; |
| 1232 | if (scan_idx < eob) { |
| 1233 | const int cost_diff = try_self_level_down(&low_coeff, coeff_idx, txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1234 | txb_costs, txb_info); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1235 | if (cost_map) |
| 1236 | cost_map[0 + COST_MAP_OFFSET][0 + COST_MAP_OFFSET] = cost_diff; |
| 1237 | accu_cost_diff += cost_diff; |
| 1238 | } |
| 1239 | |
| 1240 | const int row = coeff_idx >> txb_info->bwl; |
| 1241 | const int col = coeff_idx - (row << txb_info->bwl); |
| 1242 | if (check_nz_neighbor(qc)) { |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1243 | #if FAST_OPTIMIZE_TXB |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1244 | const int(*ref_offset)[2]; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1245 | int ref_num; |
| 1246 | if (fast_mode) { |
| 1247 | ref_offset = alnb_ref_offset; |
| 1248 | ref_num = ALNB_REF_OFFSET_NUM; |
| 1249 | } else { |
| 1250 | ref_offset = sig_ref_offset; |
| 1251 | ref_num = SIG_REF_OFFSET_NUM; |
| 1252 | } |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1253 | #else |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1254 | const int(*ref_offset)[2] = sig_ref_offset; |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1255 | const int ref_num = SIG_REF_OFFSET_NUM; |
| 1256 | #endif |
| 1257 | for (int i = 0; i < ref_num; ++i) { |
| 1258 | const int nb_row = row - ref_offset[i][0]; |
| 1259 | const int nb_col = col - ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1260 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Jingning Han | 4cbb363 | 2017-06-13 12:50:33 -0700 | [diff] [blame] | 1261 | |
Angie Chiang | 0c89dca | 2017-08-17 16:36:18 -0700 | [diff] [blame] | 1262 | if (nb_row < 0 || nb_col < 0 || nb_row >= txb_info->height || |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1263 | nb_col >= txb_info->width) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1264 | continue; |
| 1265 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1266 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1267 | if (nb_scan_idx < eob) { |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1268 | const int cost_diff = try_neighbor_level_down_nz( |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1269 | nb_coeff_idx, coeff_idx, txb_cache, txb_costs, txb_info); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1270 | if (cost_map) |
| 1271 | cost_map[nb_row - row + COST_MAP_OFFSET] |
| 1272 | [nb_col - col + COST_MAP_OFFSET] += cost_diff; |
| 1273 | accu_cost_diff += cost_diff; |
| 1274 | } |
| 1275 | } |
| 1276 | } |
| 1277 | |
| 1278 | if (check_base_neighbor(qc)) { |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1279 | #if FAST_OPTIMIZE_TXB |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1280 | const int(*ref_offset)[2]; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1281 | int ref_num; |
| 1282 | if (fast_mode) { |
| 1283 | ref_offset = nb_ref_offset; |
| 1284 | ref_num = NB_REF_OFFSET_NUM; |
| 1285 | } else { |
| 1286 | ref_offset = base_ref_offset; |
| 1287 | ref_num = BASE_CONTEXT_POSITION_NUM; |
| 1288 | } |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1289 | #else |
Linfeng Zhang | ce065ca | 2017-10-17 16:49:30 -0700 | [diff] [blame] | 1290 | const int(*ref_offset)[2] = base_ref_offset; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1291 | int ref_num = BASE_CONTEXT_POSITION_NUM; |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1292 | #endif |
| 1293 | for (int i = 0; i < ref_num; ++i) { |
| 1294 | const int nb_row = row - ref_offset[i][0]; |
| 1295 | const int nb_col = col - ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1296 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1297 | |
Angie Chiang | 0c89dca | 2017-08-17 16:36:18 -0700 | [diff] [blame] | 1298 | if (nb_row < 0 || nb_col < 0 || nb_row >= txb_info->height || |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1299 | nb_col >= txb_info->width) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1300 | continue; |
| 1301 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1302 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1303 | if (nb_scan_idx < eob) { |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1304 | const int cost_diff = try_neighbor_level_down_base( |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1305 | nb_coeff_idx, coeff_idx, txb_cache, txb_costs, txb_info); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1306 | if (cost_map) |
| 1307 | cost_map[nb_row - row + COST_MAP_OFFSET] |
| 1308 | [nb_col - col + COST_MAP_OFFSET] += cost_diff; |
| 1309 | accu_cost_diff += cost_diff; |
| 1310 | } |
| 1311 | } |
| 1312 | } |
| 1313 | |
| 1314 | if (check_br_neighbor(qc)) { |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1315 | #if FAST_OPTIMIZE_TXB |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1316 | const int(*ref_offset)[2]; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1317 | int ref_num; |
| 1318 | if (fast_mode) { |
| 1319 | ref_offset = nb_ref_offset; |
| 1320 | ref_num = NB_REF_OFFSET_NUM; |
| 1321 | } else { |
| 1322 | ref_offset = br_ref_offset; |
| 1323 | ref_num = BR_CONTEXT_POSITION_NUM; |
| 1324 | } |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1325 | #else |
Linfeng Zhang | ce065ca | 2017-10-17 16:49:30 -0700 | [diff] [blame] | 1326 | const int(*ref_offset)[2] = br_ref_offset; |
Angie Chiang | e80957f | 2017-09-05 10:48:00 -0700 | [diff] [blame] | 1327 | const int ref_num = BR_CONTEXT_POSITION_NUM; |
| 1328 | #endif |
| 1329 | for (int i = 0; i < ref_num; ++i) { |
| 1330 | const int nb_row = row - ref_offset[i][0]; |
| 1331 | const int nb_col = col - ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1332 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1333 | |
Angie Chiang | 0c89dca | 2017-08-17 16:36:18 -0700 | [diff] [blame] | 1334 | if (nb_row < 0 || nb_col < 0 || nb_row >= txb_info->height || |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1335 | nb_col >= txb_info->width) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1336 | continue; |
| 1337 | |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1338 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1339 | if (nb_scan_idx < eob) { |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1340 | const int cost_diff = try_neighbor_level_down_br( |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1341 | nb_coeff_idx, coeff_idx, txb_cache, txb_costs, txb_info); |
Angie Chiang | a530ef4 | 2017-05-30 16:32:36 -0700 | [diff] [blame] | 1342 | if (cost_map) |
| 1343 | cost_map[nb_row - row + COST_MAP_OFFSET] |
| 1344 | [nb_col - col + COST_MAP_OFFSET] += cost_diff; |
| 1345 | accu_cost_diff += cost_diff; |
| 1346 | } |
| 1347 | } |
| 1348 | } |
| 1349 | |
| 1350 | return accu_cost_diff; |
| 1351 | } |
| 1352 | |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1353 | static int get_low_coeff_cost(int coeff_idx, const TxbCache *txb_cache, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1354 | const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1355 | const TxbInfo *txb_info) { |
| 1356 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1357 | const int abs_qc = abs(qc); |
| 1358 | assert(abs_qc <= 1); |
| 1359 | int cost = 0; |
Jingning Han | 3422ac1 | 2017-10-25 20:37:53 -0700 | [diff] [blame] | 1360 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1361 | #if CONFIG_LV_MAP_MULTI |
| 1362 | const int ctx = txb_cache->nz_ctx_arr[coeff_idx]; |
| 1363 | cost += txb_costs->base_cost[ctx][AOMMIN(abs_qc, 3)]; |
| 1364 | if (qc != 0) { |
| 1365 | cost += get_sign_bit_cost(qc, coeff_idx, txb_costs->dc_sign_cost, |
| 1366 | txb_info->txb_ctx->dc_sign_ctx); |
| 1367 | } |
| 1368 | #else |
| 1369 | const int scan_idx = txb_info->scan_order->iscan[coeff_idx]; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1370 | if (scan_idx < txb_info->eob - 1) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1371 | const int *level_cost = get_level_prob(0, coeff_idx, txb_cache, txb_costs); |
| 1372 | cost += level_cost[qc != 0]; |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | if (qc != 0) { |
| 1376 | const int base_idx = 0; |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1377 | const int ctx = txb_cache->base_ctx_arr[base_idx][coeff_idx]; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1378 | cost += get_base_cost(abs_qc, ctx, txb_costs->base_cost[base_idx][ctx], |
| 1379 | base_idx); |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1380 | cost += get_sign_bit_cost(qc, coeff_idx, txb_costs->dc_sign_cost, |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1381 | txb_info->txb_ctx->dc_sign_ctx); |
| 1382 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1383 | #endif |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1384 | return cost; |
| 1385 | } |
| 1386 | |
| 1387 | static INLINE void set_eob(TxbInfo *txb_info, int eob) { |
| 1388 | txb_info->eob = eob; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 1389 | txb_info->seg_eob = av1_get_max_eob(txb_info->tx_size); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1390 | } |
| 1391 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1392 | static INLINE int get_eob_ctx(const int coeff_idx, // raster order |
| 1393 | const TX_SIZE txs_ctx) { |
| 1394 | if (txs_ctx == TX_4X4) return av1_coeff_band_4x4[coeff_idx]; |
| 1395 | if (txs_ctx == TX_8X8) return av1_coeff_band_8x8[coeff_idx]; |
| 1396 | if (txs_ctx == TX_16X16) return av1_coeff_band_16x16[coeff_idx]; |
| 1397 | if (txs_ctx == TX_32X32) return av1_coeff_band_32x32[coeff_idx]; |
| 1398 | |
| 1399 | #if CONFIG_TX64X64 |
| 1400 | // Since TX64X64 use 32x32 coeff buffer, so it share the same coeff_band with |
| 1401 | // TX32X32 |
| 1402 | if (txs_ctx == TX_64X64) return av1_coeff_band_32x32[coeff_idx]; |
| 1403 | #endif // CONFIG_TX64X64 |
| 1404 | |
| 1405 | assert(0 && "Invalid value of txs_ctx"); |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1409 | // TODO(angiebird): add static to this function once it's called |
| 1410 | int try_change_eob(int *new_eob, int coeff_idx, const TxbCache *txb_cache, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1411 | const LV_MAP_COEFF_COST *txb_costs, TxbInfo *txb_info, |
| 1412 | int fast_mode) { |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1413 | assert(txb_info->eob > 0); |
| 1414 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1415 | const int abs_qc = abs(qc); |
| 1416 | if (abs_qc != 1) { |
| 1417 | *new_eob = -1; |
| 1418 | return 0; |
| 1419 | } |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1420 | const int16_t *const iscan = txb_info->scan_order->iscan; |
| 1421 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1422 | const int scan_idx = iscan[coeff_idx]; |
| 1423 | *new_eob = 0; |
| 1424 | int cost_diff = 0; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1425 | cost_diff -= get_low_coeff_cost(coeff_idx, txb_cache, txb_costs, txb_info); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1426 | // int coeff_cost = |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1427 | // get_coeff_cost(qc, scan_idx, txb_info, txb_probs); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1428 | // if (-cost_diff != coeff_cost) { |
| 1429 | // printf("-cost_diff %d coeff_cost %d\n", -cost_diff, coeff_cost); |
| 1430 | // get_low_coeff_cost(coeff_idx, txb_cache, txb_probs, txb_info); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1431 | // get_coeff_cost(qc, scan_idx, txb_info, txb_probs); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1432 | // } |
| 1433 | for (int si = scan_idx - 1; si >= 0; --si) { |
| 1434 | const int ci = scan[si]; |
| 1435 | if (txb_info->qcoeff[ci] != 0) { |
| 1436 | *new_eob = si + 1; |
| 1437 | break; |
| 1438 | } else { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1439 | cost_diff -= get_low_coeff_cost(ci, txb_cache, txb_costs, txb_info); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1440 | } |
| 1441 | } |
| 1442 | |
| 1443 | const int org_eob = txb_info->eob; |
| 1444 | set_eob(txb_info, *new_eob); |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1445 | cost_diff += try_level_down(coeff_idx, txb_cache, txb_costs, txb_info, NULL, |
| 1446 | fast_mode); |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1447 | set_eob(txb_info, org_eob); |
| 1448 | |
| 1449 | if (*new_eob > 0) { |
| 1450 | // Note that get_eob_ctx does NOT actually account for qcoeff, so we don't |
| 1451 | // need to lower down the qcoeff here |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1452 | const int eob_ctx = get_eob_ctx(scan[*new_eob - 1], txb_info->txs_ctx); |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1453 | cost_diff -= txb_costs->eob_cost[eob_ctx][0]; |
| 1454 | cost_diff += txb_costs->eob_cost[eob_ctx][1]; |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1455 | } else { |
| 1456 | const int txb_skip_ctx = txb_info->txb_ctx->txb_skip_ctx; |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1457 | cost_diff -= txb_costs->txb_skip_cost[txb_skip_ctx][0]; |
| 1458 | cost_diff += txb_costs->txb_skip_cost[txb_skip_ctx][1]; |
Angie Chiang | c77799b | 2017-05-30 17:08:17 -0700 | [diff] [blame] | 1459 | } |
| 1460 | return cost_diff; |
| 1461 | } |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1462 | |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1463 | // TODO(angiebird): add static to this function it's called |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1464 | void update_level_down(const int coeff_idx, TxbCache *const txb_cache, |
| 1465 | TxbInfo *const txb_info) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1466 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1467 | const int abs_qc = abs(qc); |
| 1468 | if (qc == 0) return; |
| 1469 | const tran_low_t low_coeff = get_lower_coeff(qc); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1470 | update_coeff(coeff_idx, low_coeff, txb_info); |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1471 | |
| 1472 | const int row = coeff_idx >> txb_info->bwl; |
| 1473 | const int col = coeff_idx - (row << txb_info->bwl); |
| 1474 | const int eob = txb_info->eob; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1475 | const int16_t *const iscan = txb_info->scan_order->iscan; |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1476 | for (int i = 0; i < SIG_REF_OFFSET_NUM; ++i) { |
| 1477 | const int nb_row = row - sig_ref_offset[i][0]; |
| 1478 | const int nb_col = col - sig_ref_offset[i][1]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1479 | |
| 1480 | if (!(nb_row >= 0 && nb_col >= 0 && nb_row < txb_info->height && |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1481 | nb_col < txb_info->width)) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1482 | continue; |
| 1483 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1484 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1485 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1486 | if (nb_scan_idx < eob) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1487 | const int scan_idx = iscan[coeff_idx]; |
| 1488 | if (scan_idx < nb_scan_idx) { |
| 1489 | const int level = 1; |
| 1490 | if (abs_qc == level) { |
| 1491 | txb_cache->nz_count_arr[nb_coeff_idx] -= 1; |
| 1492 | assert(txb_cache->nz_count_arr[nb_coeff_idx] >= 0); |
| 1493 | } |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1494 | txb_cache->nz_ctx_arr[nb_coeff_idx] = get_nz_map_ctx_from_stats( |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1495 | #if USE_CAUSAL_BASE_CTX |
| 1496 | 0, |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1497 | #else |
| 1498 | txb_cache->nz_count_arr[nb_coeff_idx], |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1499 | #endif |
Linfeng Zhang | 8ac4557 | 2017-11-29 11:39:51 -0800 | [diff] [blame] | 1500 | nb_coeff_idx, txb_info->bwl, txb_info->height, txb_info->tx_type); |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1501 | } |
| 1502 | } |
| 1503 | } |
| 1504 | |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 1505 | const BASE_CTX_TABLE *base_ctx_table = |
| 1506 | txb_info->coeff_ctx_table->base_ctx_table; |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1507 | for (int i = 0; i < BASE_CONTEXT_POSITION_NUM; ++i) { |
| 1508 | const int nb_row = row - base_ref_offset[i][0]; |
| 1509 | const int nb_col = col - base_ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1510 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1511 | |
| 1512 | if (!(nb_row >= 0 && nb_col >= 0 && nb_row < txb_info->height && |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1513 | nb_col < txb_info->width)) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1514 | continue; |
| 1515 | |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1516 | const tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
| 1517 | if (!has_base(nb_coeff, 0)) continue; |
| 1518 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1519 | if (nb_scan_idx < eob) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1520 | if (row >= nb_row && col >= nb_col) |
| 1521 | update_mag_arr(txb_cache->base_mag_arr[nb_coeff_idx], abs_qc); |
| 1522 | const int mag = |
| 1523 | get_mag_from_mag_arr(txb_cache->base_mag_arr[nb_coeff_idx]); |
| 1524 | for (int base_idx = 0; base_idx < NUM_BASE_LEVELS; ++base_idx) { |
| 1525 | if (!has_base(nb_coeff, base_idx)) continue; |
| 1526 | const int level = base_idx + 1; |
| 1527 | if (abs_qc == level) { |
| 1528 | txb_cache->base_count_arr[base_idx][nb_coeff_idx] -= 1; |
| 1529 | assert(txb_cache->base_count_arr[base_idx][nb_coeff_idx] >= 0); |
| 1530 | } |
| 1531 | const int count = txb_cache->base_count_arr[base_idx][nb_coeff_idx]; |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1532 | txb_cache->base_ctx_arr[base_idx][nb_coeff_idx] = |
Angie Chiang | def1125 | 2017-08-18 14:37:32 -0700 | [diff] [blame] | 1533 | base_ctx_table[nb_row != 0][nb_col != 0][mag > level][count]; |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1534 | // int ref_ctx = get_base_ctx(txb_info->qcoeff, nb_coeff_idx, |
Linfeng Zhang | 8c841f7 | 2017-10-18 15:32:29 -0700 | [diff] [blame] | 1535 | // txb_info->bwl, level - 1); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1536 | // if (ref_ctx != txb_cache->base_ctx_arr[base_idx][nb_coeff_idx]) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1537 | // printf("base ctx %d ref_ctx %d\n", |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1538 | // txb_cache->base_ctx_arr[base_idx][nb_coeff_idx], ref_ctx); |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1539 | // } |
| 1540 | } |
| 1541 | } |
| 1542 | } |
| 1543 | |
| 1544 | for (int i = 0; i < BR_CONTEXT_POSITION_NUM; ++i) { |
| 1545 | const int nb_row = row - br_ref_offset[i][0]; |
| 1546 | const int nb_col = col - br_ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1547 | const int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1548 | |
| 1549 | if (!(nb_row >= 0 && nb_col >= 0 && nb_row < txb_info->height && |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1550 | nb_col < txb_info->width)) |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1551 | continue; |
| 1552 | |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1553 | const int nb_scan_idx = iscan[nb_coeff_idx]; |
| 1554 | const tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
| 1555 | if (!has_br(nb_coeff)) continue; |
Jingning Han | 3455e76 | 2017-06-13 21:15:44 -0700 | [diff] [blame] | 1556 | if (nb_scan_idx < eob) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1557 | const int level = 1 + NUM_BASE_LEVELS; |
| 1558 | if (abs_qc == level) { |
| 1559 | txb_cache->br_count_arr[nb_coeff_idx] -= 1; |
| 1560 | assert(txb_cache->br_count_arr[nb_coeff_idx] >= 0); |
| 1561 | } |
| 1562 | if (row >= nb_row && col >= nb_col) |
| 1563 | update_mag_arr(txb_cache->br_mag_arr[nb_coeff_idx], abs_qc); |
| 1564 | const int count = txb_cache->br_count_arr[nb_coeff_idx]; |
| 1565 | const int mag = get_mag_from_mag_arr(txb_cache->br_mag_arr[nb_coeff_idx]); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1566 | txb_cache->br_ctx_arr[nb_coeff_idx] = |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1567 | get_br_ctx_from_count_mag(nb_row, nb_col, count, mag); |
| 1568 | // int ref_ctx = get_level_ctx(txb_info->qcoeff, nb_coeff_idx, |
| 1569 | // txb_info->bwl); |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1570 | // if (ref_ctx != txb_cache->br_ctx_arr[nb_coeff_idx]) { |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1571 | // printf("base ctx %d ref_ctx %d\n", |
Angie Chiang | 1ae0ebf | 2017-08-15 15:16:47 -0700 | [diff] [blame] | 1572 | // txb_cache->br_ctx_arr[nb_coeff_idx], ref_ctx); |
Angie Chiang | d19969e | 2017-05-30 18:02:33 -0700 | [diff] [blame] | 1573 | // } |
| 1574 | } |
| 1575 | } |
| 1576 | } |
| 1577 | |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1578 | static int get_coeff_cost(const tran_low_t qc, const int scan_idx, |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1579 | #if CONFIG_LV_MAP_MULTI |
| 1580 | const int is_eob, |
| 1581 | #endif |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1582 | const TxbInfo *const txb_info, |
| 1583 | const LV_MAP_COEFF_COST *const txb_costs) { |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1584 | const TXB_CTX *txb_ctx = txb_info->txb_ctx; |
| 1585 | const int is_nz = (qc != 0); |
| 1586 | const tran_low_t abs_qc = abs(qc); |
| 1587 | int cost = 0; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1588 | const int16_t *const scan = txb_info->scan_order->scan; |
| 1589 | const int pos = scan[scan_idx]; |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1590 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1591 | #if CONFIG_LV_MAP_MULTI |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 1592 | const int coeff_ctx = |
| 1593 | get_nz_map_ctx(txb_info->levels, pos, txb_info->bwl, txb_info->height, |
| 1594 | scan_idx, is_eob, txb_info->tx_type); |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 1595 | #if USE_BASE_EOB_ALPHABET |
| 1596 | if (is_eob) { |
| 1597 | cost += |
| 1598 | txb_costs->base_eob_cost[coeff_ctx - SIG_COEF_CONTEXTS + |
| 1599 | SIG_COEF_CONTEXTS_EOB][AOMMIN(abs_qc, 3) - 1]; |
| 1600 | } else { |
| 1601 | cost += txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)]; |
| 1602 | } |
| 1603 | |
| 1604 | #else |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1605 | cost += txb_costs->base_cost[coeff_ctx][AOMMIN(abs_qc, 3)]; |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 1606 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1607 | #else |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1608 | #if USE_CAUSAL_BASE_CTX |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 1609 | const int coeff_ctx = get_nz_map_ctx(txb_info->levels, pos, txb_info->bwl, |
| 1610 | txb_info->height, txb_info->tx_type); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1611 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1612 | if (scan_idx < txb_info->eob - 1) { |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1613 | #if !USE_CAUSAL_BASE_CTX |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 1614 | const int coeff_ctx = get_nz_map_ctx(txb_info->levels, pos, txb_info->bwl, |
| 1615 | txb_info->height, txb_info->tx_type); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1616 | #endif |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1617 | cost += txb_costs->nz_map_cost[coeff_ctx][is_nz]; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1618 | } |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1619 | #endif |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1620 | if (is_nz) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1621 | cost += get_sign_bit_cost(qc, scan_idx, txb_costs->dc_sign_cost, |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1622 | txb_ctx->dc_sign_ctx); |
| 1623 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1624 | #if !CONFIG_LV_MAP_MULTI |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1625 | #if USE_CAUSAL_BASE_CTX |
| 1626 | int k; |
| 1627 | for (k = 0; k < NUM_BASE_LEVELS; ++k) { |
| 1628 | int ctx = coeff_ctx; |
| 1629 | int is_k = (abs_qc > (k + 1)); |
| 1630 | |
| 1631 | cost += txb_costs->base_cost[k][ctx][is_k]; |
| 1632 | if (is_k == 0) break; |
| 1633 | } |
| 1634 | #else |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1635 | int ctx_ls[NUM_BASE_LEVELS] = { 0 }; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1636 | get_base_ctx_set(txb_info->levels, pos, txb_info->bwl, ctx_ls); |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1637 | |
| 1638 | int i; |
| 1639 | for (i = 0; i < NUM_BASE_LEVELS; ++i) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1640 | cost += get_base_cost(abs_qc, ctx_ls[i], |
| 1641 | txb_costs->base_cost[i][ctx_ls[i]], i); |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1642 | } |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 1643 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1644 | #endif |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1645 | if (abs_qc > NUM_BASE_LEVELS) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1646 | const int row = pos >> txb_info->bwl; |
| 1647 | const int col = pos - (row << txb_info->bwl); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 1648 | |
| 1649 | #if CONFIG_LV_MAP_MULTI && USE_CAUSAL_BR_CTX |
| 1650 | (void)col; |
| 1651 | const int count = 0; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1652 | const int ctx = get_br_ctx(txb_info->levels, pos, txb_info->bwl, count, |
| 1653 | txb_info->tx_type); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 1654 | #else |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 1655 | const int count = get_level_count( |
| 1656 | txb_info->levels, (1 << txb_info->bwl) + TX_PAD_HOR, row, col, |
| 1657 | NUM_BASE_LEVELS, br_ref_offset, BR_CONTEXT_POSITION_NUM); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1658 | const int ctx = get_br_ctx(txb_info->levels, pos, txb_info->bwl, count); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 1659 | #endif |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1660 | cost += get_br_cost(abs_qc, ctx, txb_costs->lps_cost[ctx]); |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1661 | cost += get_golomb_cost(abs_qc); |
| 1662 | } |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1663 | } |
| 1664 | return cost; |
| 1665 | } |
| 1666 | |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1667 | #if TEST_OPTIMIZE_TXB |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1668 | #define ALL_REF_OFFSET_NUM 17 |
Linfeng Zhang | 4afda45 | 2017-10-24 10:34:04 -0700 | [diff] [blame] | 1669 | static const int all_ref_offset[ALL_REF_OFFSET_NUM][2] = { |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1670 | { 0, 0 }, { -2, -1 }, { -2, 0 }, { -2, 1 }, { -1, -2 }, { -1, -1 }, |
| 1671 | { -1, 0 }, { -1, 1 }, { 0, -2 }, { 0, -1 }, { 1, -2 }, { 1, -1 }, |
| 1672 | { 1, 0 }, { 2, 0 }, { 0, 1 }, { 0, 2 }, { 1, 1 }, |
| 1673 | }; |
| 1674 | |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1675 | static int try_level_down_ref(int coeff_idx, const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1676 | TxbInfo *txb_info, |
| 1677 | int (*cost_map)[COST_MAP_SIZE]) { |
| 1678 | if (cost_map) { |
| 1679 | for (int i = 0; i < COST_MAP_SIZE; ++i) av1_zero(cost_map[i]); |
| 1680 | } |
| 1681 | tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1682 | if (qc == 0) return 0; |
| 1683 | int row = coeff_idx >> txb_info->bwl; |
| 1684 | int col = coeff_idx - (row << txb_info->bwl); |
| 1685 | int org_cost = 0; |
| 1686 | for (int i = 0; i < ALL_REF_OFFSET_NUM; ++i) { |
| 1687 | int nb_row = row - all_ref_offset[i][0]; |
| 1688 | int nb_col = col - all_ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1689 | int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1690 | int nb_scan_idx = txb_info->scan_order->iscan[nb_coeff_idx]; |
| 1691 | if (nb_scan_idx < txb_info->eob && nb_row >= 0 && nb_col >= 0 && |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1692 | nb_row < txb_info->height && nb_col < txb_info->width) { |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1693 | tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1694 | #if CONFIG_LV_MAP_MULTI |
| 1695 | int cost = |
| 1696 | get_coeff_cost(nb_coeff, nb_scan_idx, is_eob, txb_info, txb_costs); |
| 1697 | #else |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1698 | int cost = get_coeff_cost(nb_coeff, nb_scan_idx, txb_info, txb_costs); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1699 | #endif |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1700 | if (cost_map) |
| 1701 | cost_map[nb_row - row + COST_MAP_OFFSET] |
| 1702 | [nb_col - col + COST_MAP_OFFSET] -= cost; |
| 1703 | org_cost += cost; |
| 1704 | } |
| 1705 | } |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1706 | update_qcoeff(coeff_idx, get_lower_coeff(qc), txb_info); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1707 | int new_cost = 0; |
| 1708 | for (int i = 0; i < ALL_REF_OFFSET_NUM; ++i) { |
| 1709 | int nb_row = row - all_ref_offset[i][0]; |
| 1710 | int nb_col = col - all_ref_offset[i][1]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1711 | int nb_coeff_idx = nb_row * txb_info->width + nb_col; |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1712 | int nb_scan_idx = txb_info->scan_order->iscan[nb_coeff_idx]; |
| 1713 | if (nb_scan_idx < txb_info->eob && nb_row >= 0 && nb_col >= 0 && |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1714 | nb_row < txb_info->height && nb_col < txb_info->width) { |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1715 | tran_low_t nb_coeff = txb_info->qcoeff[nb_coeff_idx]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1716 | #if CONFIG_LV_MAP_MULTI |
| 1717 | int cost = |
| 1718 | get_coeff_cost(nb_coeff, nb_scan_idx, is_eob, txb_info, txb_costs); |
| 1719 | #else |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1720 | int cost = get_coeff_cost(nb_coeff, nb_scan_idx, txb_info, txb_costs); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1721 | #endif |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1722 | if (cost_map) |
| 1723 | cost_map[nb_row - row + COST_MAP_OFFSET] |
| 1724 | [nb_col - col + COST_MAP_OFFSET] += cost; |
| 1725 | new_cost += cost; |
| 1726 | } |
| 1727 | } |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1728 | update_qcoeff(coeff_idx, qc, txb_info); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1729 | return new_cost - org_cost; |
| 1730 | } |
| 1731 | |
| 1732 | static void test_level_down(int coeff_idx, const TxbCache *txb_cache, |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1733 | const LV_MAP_COEFF_COST *txb_costs, |
| 1734 | TxbInfo *txb_info) { |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1735 | int cost_map[COST_MAP_SIZE][COST_MAP_SIZE]; |
| 1736 | int ref_cost_map[COST_MAP_SIZE][COST_MAP_SIZE]; |
| 1737 | const int cost_diff = |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1738 | try_level_down(coeff_idx, txb_cache, txb_costs, txb_info, cost_map, 0); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1739 | const int cost_diff_ref = |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1740 | try_level_down_ref(coeff_idx, txb_costs, txb_info, ref_cost_map); |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1741 | if (cost_diff != cost_diff_ref) { |
| 1742 | printf("qc %d cost_diff %d cost_diff_ref %d\n", txb_info->qcoeff[coeff_idx], |
| 1743 | cost_diff, cost_diff_ref); |
| 1744 | for (int r = 0; r < COST_MAP_SIZE; ++r) { |
| 1745 | for (int c = 0; c < COST_MAP_SIZE; ++c) { |
| 1746 | printf("%d:%d ", cost_map[r][c], ref_cost_map[r][c]); |
| 1747 | } |
| 1748 | printf("\n"); |
| 1749 | } |
| 1750 | } |
| 1751 | } |
| 1752 | #endif |
| 1753 | |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1754 | // TODO(angiebird): make this static once it's called |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1755 | int get_txb_cost(TxbInfo *txb_info, const LV_MAP_COEFF_COST *txb_costs) { |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1756 | int cost = 0; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1757 | const int txb_skip_ctx = txb_info->txb_ctx->txb_skip_ctx; |
| 1758 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1759 | if (txb_info->eob == 0) { |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1760 | cost = txb_costs->txb_skip_cost[txb_skip_ctx][1]; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1761 | return cost; |
| 1762 | } |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1763 | cost = txb_costs->txb_skip_cost[txb_skip_ctx][0]; |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1764 | for (int c = 0; c < txb_info->eob; ++c) { |
| 1765 | tran_low_t qc = txb_info->qcoeff[scan[c]]; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1766 | #if CONFIG_LV_MAP_MULTI |
| 1767 | int coeff_cost = |
| 1768 | get_coeff_cost(qc, c, c == txb_info->eob - 1, txb_info, txb_costs); |
| 1769 | #else |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1770 | int coeff_cost = get_coeff_cost(qc, c, txb_info, txb_costs); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1771 | #endif |
Angie Chiang | 488f921 | 2017-05-30 12:46:26 -0700 | [diff] [blame] | 1772 | cost += coeff_cost; |
| 1773 | } |
| 1774 | return cost; |
| 1775 | } |
| 1776 | |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1777 | #if TEST_OPTIMIZE_TXB |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1778 | void test_try_change_eob(TxbInfo *txb_info, const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1779 | TxbCache *txb_cache) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1780 | const int eob = txb_info->eob; |
| 1781 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1782 | if (eob > 0) { |
| 1783 | int last_si = eob - 1; |
| 1784 | int last_ci = scan[last_si]; |
| 1785 | int last_coeff = txb_info->qcoeff[last_ci]; |
| 1786 | if (abs(last_coeff) == 1) { |
| 1787 | int new_eob; |
| 1788 | int cost_diff = |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1789 | try_change_eob(&new_eob, last_ci, txb_cache, txb_costs, txb_info, 0); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1790 | int org_eob = txb_info->eob; |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1791 | int cost = get_txb_cost(txb_info, txb_costs); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1792 | |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1793 | update_qcoeff(last_ci, get_lower_coeff(last_coeff), txb_info); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1794 | set_eob(txb_info, new_eob); |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1795 | int new_cost = get_txb_cost(txb_info, txb_costs); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1796 | set_eob(txb_info, org_eob); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1797 | update_qcoeff(last_ci, last_coeff, txb_info); |
Angie Chiang | 5e012fe | 2017-05-30 18:47:39 -0700 | [diff] [blame] | 1798 | |
| 1799 | int ref_cost_diff = -cost + new_cost; |
| 1800 | if (cost_diff != ref_cost_diff) |
| 1801 | printf("org_eob %d new_eob %d cost_diff %d ref_cost_diff %d\n", org_eob, |
| 1802 | new_eob, cost_diff, ref_cost_diff); |
| 1803 | } |
| 1804 | } |
| 1805 | } |
| 1806 | #endif |
| 1807 | |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1808 | void try_level_down_facade(LevelDownStats *stats, int scan_idx, |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 1809 | const TxbCache *txb_cache, |
| 1810 | const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1811 | TxbInfo *txb_info, int fast_mode) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1812 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1813 | const int coeff_idx = scan[scan_idx]; |
| 1814 | const tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1815 | stats->new_eob = -1; |
| 1816 | stats->update = 0; |
| 1817 | if (qc == 0) { |
| 1818 | return; |
| 1819 | } |
| 1820 | |
| 1821 | const tran_low_t tqc = txb_info->tcoeff[coeff_idx]; |
| 1822 | const int dqv = txb_info->dequant[coeff_idx != 0]; |
| 1823 | |
| 1824 | const tran_low_t dqc = qcoeff_to_dqcoeff(qc, dqv, txb_info->shift); |
Jingning Han | 641c1e5 | 2017-10-13 09:42:49 -0700 | [diff] [blame] | 1825 | |
| 1826 | if (scan_idx != txb_info->eob - 1) |
| 1827 | if (abs(dqc) < abs(tqc)) return; |
| 1828 | |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1829 | const int64_t dqc_dist = get_coeff_dist(tqc, dqc, txb_info->shift); |
| 1830 | |
| 1831 | stats->low_qc = get_lower_coeff(qc); |
| 1832 | stats->low_dqc = qcoeff_to_dqcoeff(stats->low_qc, dqv, txb_info->shift); |
| 1833 | const int64_t low_dqc_dist = |
| 1834 | get_coeff_dist(tqc, stats->low_dqc, txb_info->shift); |
| 1835 | |
| 1836 | stats->dist_diff = -dqc_dist + low_dqc_dist; |
| 1837 | stats->cost_diff = 0; |
| 1838 | stats->new_eob = txb_info->eob; |
| 1839 | if (scan_idx == txb_info->eob - 1 && abs(qc) == 1) { |
| 1840 | stats->cost_diff = try_change_eob(&stats->new_eob, coeff_idx, txb_cache, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1841 | txb_costs, txb_info, fast_mode); |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1842 | } else { |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 1843 | stats->cost_diff = try_level_down(coeff_idx, txb_cache, txb_costs, txb_info, |
| 1844 | NULL, fast_mode); |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1845 | #if TEST_OPTIMIZE_TXB |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 1846 | test_level_down(coeff_idx, txb_cache, txb_costs, txb_info); |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1847 | #endif |
| 1848 | } |
Urvang Joshi | 70006e4 | 2017-06-14 16:08:55 -0700 | [diff] [blame] | 1849 | stats->rd_diff = RDCOST(txb_info->rdmult, stats->cost_diff, stats->dist_diff); |
Angie Chiang | 47e0707 | 2017-05-30 17:27:01 -0700 | [diff] [blame] | 1850 | if (stats->rd_diff < 0) stats->update = 1; |
| 1851 | return; |
| 1852 | } |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 1853 | |
Jingning Han | 3422ac1 | 2017-10-25 20:37:53 -0700 | [diff] [blame] | 1854 | #if 1 |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1855 | static int optimize_txb(TxbInfo *txb_info, const LV_MAP_COEFF_COST *txb_costs, |
| 1856 | TxbCache *txb_cache, int dry_run, int fast_mode) { |
| 1857 | (void)fast_mode; |
| 1858 | (void)txb_cache; |
| 1859 | int update = 0; |
Dake He | 5988177 | 2017-11-24 07:00:02 -0800 | [diff] [blame] | 1860 | // return update; // TODO(DKHE): training only. |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1861 | if (txb_info->eob == 0) return update; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 1862 | const int max_eob = av1_get_max_eob(txb_info->tx_size); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1863 | |
| 1864 | #if TEST_OPTIMIZE_TXB |
| 1865 | int64_t sse; |
| 1866 | int64_t org_dist = |
| 1867 | av1_block_error_c(txb_info->tcoeff, txb_info->dqcoeff, max_eob, &sse) * |
| 1868 | (1 << (2 * txb_info->shift)); |
| 1869 | int org_cost = get_txb_cost(txb_info, txb_probs); |
| 1870 | #endif |
| 1871 | |
| 1872 | tran_low_t *org_qcoeff = txb_info->qcoeff; |
| 1873 | tran_low_t *org_dqcoeff = txb_info->dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1874 | uint8_t *const org_levels = txb_info->levels; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1875 | |
| 1876 | tran_low_t tmp_qcoeff[MAX_TX_SQUARE]; |
| 1877 | tran_low_t tmp_dqcoeff[MAX_TX_SQUARE]; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 1878 | uint8_t tmp_levels_buf[TX_PAD_2D]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1879 | uint8_t *const tmp_levels = set_levels(tmp_levels_buf, txb_info->width); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1880 | const int org_eob = txb_info->eob; |
| 1881 | if (dry_run) { |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1882 | const int stride = txb_info->width + TX_PAD_HOR; |
| 1883 | const int levels_size = |
| 1884 | |
| 1885 | (stride * (txb_info->height + TX_PAD_VER) + TX_PAD_END); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1886 | memcpy(tmp_qcoeff, org_qcoeff, sizeof(org_qcoeff[0]) * max_eob); |
| 1887 | memcpy(tmp_dqcoeff, org_dqcoeff, sizeof(org_dqcoeff[0]) * max_eob); |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 1888 | memcpy(tmp_levels, org_levels - TX_PAD_TOP * stride, |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 1889 | sizeof(org_levels[0]) * levels_size); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1890 | txb_info->qcoeff = tmp_qcoeff; |
| 1891 | txb_info->dqcoeff = tmp_dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 1892 | txb_info->levels = tmp_levels; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1893 | } |
| 1894 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1895 | const int16_t *const scan = txb_info->scan_order->scan; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1896 | |
| 1897 | // forward optimize the nz_map` |
| 1898 | const int init_eob = txb_info->eob; |
| 1899 | const int seg_eob = txb_info->seg_eob; |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 1900 | const int eob_cost = |
| 1901 | get_eob_cost(init_eob, seg_eob, txb_costs, txb_info->tx_type); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1902 | |
| 1903 | // backward optimize the level-k map |
| 1904 | int64_t accu_rate = eob_cost; |
| 1905 | int64_t accu_dist = 0; |
| 1906 | int64_t prev_eob_rd_cost = INT64_MAX; |
| 1907 | int64_t cur_eob_rd_cost = 0; |
| 1908 | |
| 1909 | for (int si = init_eob - 1; si >= 0; --si) { |
| 1910 | const int coeff_idx = scan[si]; |
| 1911 | tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 1912 | |
| 1913 | LevelDownStats stats; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1914 | #if CONFIG_LV_MAP_MULTI |
| 1915 | get_dist_cost_stats(&stats, si, si == init_eob - 1, txb_costs, txb_info); |
| 1916 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1917 | get_dist_cost_stats(&stats, si, txb_costs, txb_info); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1918 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1919 | |
| 1920 | if (qc == 0) { |
| 1921 | accu_rate += stats.rate; |
| 1922 | } else { |
| 1923 | // check if it is better to make this the last significant coefficient |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 1924 | int cur_eob_rate = |
| 1925 | get_eob_cost(si + 1, seg_eob, txb_costs, txb_info->tx_type); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1926 | cur_eob_rd_cost = RDCOST(txb_info->rdmult, cur_eob_rate, 0); |
| 1927 | prev_eob_rd_cost = |
| 1928 | RDCOST(txb_info->rdmult, accu_rate + stats.nz_rate, accu_dist); |
| 1929 | if (cur_eob_rd_cost <= prev_eob_rd_cost) { |
| 1930 | update = 1; |
| 1931 | for (int j = si + 1; j < txb_info->eob; j++) { |
| 1932 | const int coeff_pos_j = scan[j]; |
| 1933 | update_coeff(coeff_pos_j, 0, txb_info); |
| 1934 | } |
| 1935 | txb_info->eob = si + 1; |
| 1936 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1937 | // rerun cost calculation due to change of eob |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1938 | accu_rate = cur_eob_rate; |
| 1939 | accu_dist = 0; |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1940 | #if CONFIG_LV_MAP_MULTI |
| 1941 | get_dist_cost_stats(&stats, si, 1, txb_costs, txb_info); |
| 1942 | #else |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1943 | get_dist_cost_stats(&stats, si, txb_costs, txb_info); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 1944 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 1945 | } |
| 1946 | |
| 1947 | int bUpdCoeff = 0; |
| 1948 | if (stats.rd_low < stats.rd) { |
| 1949 | if ((stats.low_qc != 0) || (si < txb_info->eob - 1)) { |
| 1950 | bUpdCoeff = 1; |
| 1951 | update = 1; |
| 1952 | } |
| 1953 | } |
| 1954 | |
| 1955 | if (bUpdCoeff) { |
| 1956 | update_coeff(coeff_idx, stats.low_qc, txb_info); |
| 1957 | accu_rate += stats.rate_low; |
| 1958 | accu_dist += stats.dist_low; |
| 1959 | } else { |
| 1960 | accu_rate += stats.rate; |
| 1961 | accu_dist += stats.dist; |
| 1962 | } |
| 1963 | } |
| 1964 | } // for (si) |
| 1965 | int non_zero_blk_rate = |
| 1966 | txb_costs->txb_skip_cost[txb_info->txb_ctx->txb_skip_ctx][0]; |
| 1967 | prev_eob_rd_cost = |
| 1968 | RDCOST(txb_info->rdmult, accu_rate + non_zero_blk_rate, accu_dist); |
| 1969 | |
| 1970 | int zero_blk_rate = |
| 1971 | txb_costs->txb_skip_cost[txb_info->txb_ctx->txb_skip_ctx][1]; |
| 1972 | int64_t zero_blk_rd_cost = RDCOST(txb_info->rdmult, zero_blk_rate, 0); |
| 1973 | if (zero_blk_rd_cost <= prev_eob_rd_cost) { |
| 1974 | update = 1; |
| 1975 | for (int j = 0; j < txb_info->eob; j++) { |
| 1976 | const int coeff_pos_j = scan[j]; |
| 1977 | update_coeff(coeff_pos_j, 0, txb_info); |
| 1978 | } |
| 1979 | txb_info->eob = 0; |
| 1980 | } |
| 1981 | |
| 1982 | #if TEST_OPTIMIZE_TXB |
| 1983 | int cost_diff = 0; |
| 1984 | int64_t dist_diff = 0; |
| 1985 | int64_t rd_diff = 0; |
| 1986 | int64_t new_dist = |
| 1987 | av1_block_error_c(txb_info->tcoeff, txb_info->dqcoeff, max_eob, &sse) * |
| 1988 | (1 << (2 * txb_info->shift)); |
| 1989 | int new_cost = get_txb_cost(txb_info, txb_probs); |
| 1990 | int64_t ref_dist_diff = new_dist - org_dist; |
| 1991 | int ref_cost_diff = new_cost - org_cost; |
| 1992 | if (cost_diff != ref_cost_diff || dist_diff != ref_dist_diff) |
| 1993 | printf( |
| 1994 | "overall rd_diff %ld\ncost_diff %d ref_cost_diff%d\ndist_diff %ld " |
| 1995 | "ref_dist_diff %ld\neob %d new_eob %d\n\n", |
| 1996 | rd_diff, cost_diff, ref_cost_diff, dist_diff, ref_dist_diff, org_eob, |
| 1997 | txb_info->eob); |
| 1998 | #endif |
| 1999 | if (dry_run) { |
| 2000 | txb_info->qcoeff = org_qcoeff; |
| 2001 | txb_info->dqcoeff = org_dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2002 | txb_info->levels = org_levels; |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2003 | set_eob(txb_info, org_eob); |
| 2004 | } |
| 2005 | return update; |
| 2006 | } |
| 2007 | |
| 2008 | #else |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 2009 | static int optimize_txb(TxbInfo *txb_info, const LV_MAP_COEFF_COST *txb_costs, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2010 | TxbCache *txb_cache, int dry_run, int fast_mode) { |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2011 | int update = 0; |
| 2012 | if (txb_info->eob == 0) return update; |
| 2013 | int cost_diff = 0; |
| 2014 | int64_t dist_diff = 0; |
| 2015 | int64_t rd_diff = 0; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 2016 | const int max_eob = av1_get_max_eob(txb_info->tx_size); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2017 | |
| 2018 | #if TEST_OPTIMIZE_TXB |
| 2019 | int64_t sse; |
| 2020 | int64_t org_dist = |
| 2021 | av1_block_error_c(txb_info->tcoeff, txb_info->dqcoeff, max_eob, &sse) * |
| 2022 | (1 << (2 * txb_info->shift)); |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 2023 | int org_cost = get_txb_cost(txb_info, txb_costs); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2024 | #endif |
| 2025 | |
| 2026 | tran_low_t *org_qcoeff = txb_info->qcoeff; |
| 2027 | tran_low_t *org_dqcoeff = txb_info->dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2028 | uint8_t *const org_levels = txb_info->levels; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2029 | |
| 2030 | tran_low_t tmp_qcoeff[MAX_TX_SQUARE]; |
| 2031 | tran_low_t tmp_dqcoeff[MAX_TX_SQUARE]; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 2032 | uint8_t tmp_levels_buf[TX_PAD_2D]; |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2033 | uint8_t *const tmp_levels = set_levels(tmp_levels_buf, txb_info->width); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2034 | const int org_eob = txb_info->eob; |
| 2035 | if (dry_run) { |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2036 | const int stride = txb_info->width + TX_PAD_HOR; |
| 2037 | const int levels_size = |
| 2038 | |
| 2039 | (stride * (txb_info->height + TX_PAD_VER) + TX_PAD_END); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2040 | memcpy(tmp_qcoeff, org_qcoeff, sizeof(org_qcoeff[0]) * max_eob); |
| 2041 | memcpy(tmp_dqcoeff, org_dqcoeff, sizeof(org_dqcoeff[0]) * max_eob); |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 2042 | memcpy(tmp_levels, org_levels - TX_PAD_TOP * stride, |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2043 | sizeof(org_levels[0]) * levels_size); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2044 | txb_info->qcoeff = tmp_qcoeff; |
| 2045 | txb_info->dqcoeff = tmp_dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2046 | txb_info->levels = tmp_levels; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2047 | } |
| 2048 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2049 | const int16_t *const scan = txb_info->scan_order->scan; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2050 | |
| 2051 | // forward optimize the nz_map |
| 2052 | const int cur_eob = txb_info->eob; |
| 2053 | for (int si = 0; si < cur_eob; ++si) { |
| 2054 | const int coeff_idx = scan[si]; |
| 2055 | tran_low_t qc = txb_info->qcoeff[coeff_idx]; |
| 2056 | if (abs(qc) == 1) { |
| 2057 | LevelDownStats stats; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2058 | try_level_down_facade(&stats, si, txb_cache, txb_costs, txb_info, |
| 2059 | fast_mode); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2060 | if (stats.update) { |
| 2061 | update = 1; |
| 2062 | cost_diff += stats.cost_diff; |
| 2063 | dist_diff += stats.dist_diff; |
| 2064 | rd_diff += stats.rd_diff; |
| 2065 | update_level_down(coeff_idx, txb_cache, txb_info); |
| 2066 | set_eob(txb_info, stats.new_eob); |
| 2067 | } |
| 2068 | } |
| 2069 | } |
| 2070 | |
| 2071 | // backward optimize the level-k map |
Angie Chiang | 530b304 | 2017-08-17 15:08:58 -0700 | [diff] [blame] | 2072 | int eob_fix = 0; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2073 | for (int si = txb_info->eob - 1; si >= 0; --si) { |
Angie Chiang | 530b304 | 2017-08-17 15:08:58 -0700 | [diff] [blame] | 2074 | const int coeff_idx = scan[si]; |
| 2075 | if (eob_fix == 1 && txb_info->qcoeff[coeff_idx] == 1) { |
| 2076 | // when eob is fixed, there is not need to optimize again when |
| 2077 | // abs(qc) == 1 |
| 2078 | continue; |
| 2079 | } |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2080 | LevelDownStats stats; |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2081 | try_level_down_facade(&stats, si, txb_cache, txb_costs, txb_info, |
| 2082 | fast_mode); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2083 | if (stats.update) { |
| 2084 | #if TEST_OPTIMIZE_TXB |
| 2085 | // printf("si %d low_qc %d cost_diff %d dist_diff %ld rd_diff %ld eob %d new_eob |
| 2086 | // %d\n", si, stats.low_qc, stats.cost_diff, stats.dist_diff, stats.rd_diff, |
| 2087 | // txb_info->eob, stats.new_eob); |
| 2088 | #endif |
| 2089 | update = 1; |
| 2090 | cost_diff += stats.cost_diff; |
| 2091 | dist_diff += stats.dist_diff; |
| 2092 | rd_diff += stats.rd_diff; |
| 2093 | update_level_down(coeff_idx, txb_cache, txb_info); |
| 2094 | set_eob(txb_info, stats.new_eob); |
| 2095 | } |
Angie Chiang | 530b304 | 2017-08-17 15:08:58 -0700 | [diff] [blame] | 2096 | if (eob_fix == 0 && txb_info->qcoeff[coeff_idx] != 0) eob_fix = 1; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2097 | if (si > txb_info->eob) si = txb_info->eob; |
| 2098 | } |
| 2099 | #if TEST_OPTIMIZE_TXB |
| 2100 | int64_t new_dist = |
| 2101 | av1_block_error_c(txb_info->tcoeff, txb_info->dqcoeff, max_eob, &sse) * |
| 2102 | (1 << (2 * txb_info->shift)); |
Angie Chiang | 0b2795c | 2017-09-29 16:00:08 -0700 | [diff] [blame] | 2103 | int new_cost = get_txb_cost(txb_info, txb_costs); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2104 | int64_t ref_dist_diff = new_dist - org_dist; |
| 2105 | int ref_cost_diff = new_cost - org_cost; |
| 2106 | if (cost_diff != ref_cost_diff || dist_diff != ref_dist_diff) |
| 2107 | printf( |
| 2108 | "overall rd_diff %ld\ncost_diff %d ref_cost_diff%d\ndist_diff %ld " |
| 2109 | "ref_dist_diff %ld\neob %d new_eob %d\n\n", |
| 2110 | rd_diff, cost_diff, ref_cost_diff, dist_diff, ref_dist_diff, org_eob, |
| 2111 | txb_info->eob); |
| 2112 | #endif |
| 2113 | if (dry_run) { |
| 2114 | txb_info->qcoeff = org_qcoeff; |
| 2115 | txb_info->dqcoeff = org_dqcoeff; |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2116 | txb_info->levels = org_levels; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2117 | set_eob(txb_info, org_eob); |
| 2118 | } |
| 2119 | return update; |
| 2120 | } |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2121 | #endif |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2122 | |
| 2123 | // These numbers are empirically obtained. |
| 2124 | static const int plane_rd_mult[REF_TYPES][PLANE_TYPES] = { |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2125 | { 17, 13 }, { 16, 10 }, |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2126 | }; |
| 2127 | |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 2128 | int av1_optimize_txb(const AV1_COMMON *cm, MACROBLOCK *x, int plane, |
| 2129 | int blk_row, int blk_col, int block, TX_SIZE tx_size, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2130 | TXB_CTX *txb_ctx, int fast_mode) { |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2131 | MACROBLOCKD *const xd = &x->e_mbd; |
| 2132 | const PLANE_TYPE plane_type = get_plane_type(plane); |
Debargha Mukherjee | b3eda2f | 2017-11-28 16:00:20 -0800 | [diff] [blame] | 2133 | const TX_SIZE txs_ctx = get_txsize_entropy_ctx(tx_size); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2134 | const TX_TYPE tx_type = |
| 2135 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2136 | const MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
| 2137 | const struct macroblock_plane *p = &x->plane[plane]; |
| 2138 | struct macroblockd_plane *pd = &xd->plane[plane]; |
| 2139 | const int eob = p->eobs[block]; |
| 2140 | tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); |
| 2141 | tran_low_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block); |
| 2142 | const tran_low_t *tcoeff = BLOCK_OFFSET(p->coeff, block); |
Monty Montgomery | 125c0fc | 2017-10-26 00:44:35 -0400 | [diff] [blame] | 2143 | const int16_t *dequant = p->dequant_QTX; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 2144 | const int seg_eob = av1_get_max_eob(tx_size); |
Angie Chiang | a9ba58e | 2017-12-01 19:22:43 -0800 | [diff] [blame] | 2145 | const int bwl = get_txb_bwl(tx_size); |
| 2146 | const int width = get_txb_wide(tx_size); |
| 2147 | const int height = get_txb_high(tx_size); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2148 | const int is_inter = is_inter_block(mbmi); |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 2149 | const SCAN_ORDER *const scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Jingning Han | dfd7232 | 2017-08-09 14:04:12 -0700 | [diff] [blame] | 2150 | const LV_MAP_COEFF_COST txb_costs = x->coeff_costs[txs_ctx][plane_type]; |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2151 | |
| 2152 | const int shift = av1_get_tx_scale(tx_size); |
| 2153 | const int64_t rdmult = |
Jingning Han | b433f4c | 2017-11-17 15:43:59 -0800 | [diff] [blame] | 2154 | ((x->rdmult * plane_rd_mult[is_inter][plane_type] << (2 * (xd->bd - 8))) + |
| 2155 | 2) >> |
| 2156 | 2; |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 2157 | uint8_t levels_buf[TX_PAD_2D]; |
| 2158 | uint8_t *const levels = set_levels(levels_buf, width); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2159 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2160 | assert(width == (1 << bwl)); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2161 | TxbInfo txb_info = { |
| 2162 | qcoeff, levels, dqcoeff, tcoeff, dequant, shift, |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2163 | tx_size, txs_ctx, tx_type, bwl, width, height, |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2164 | eob, seg_eob, scan_order, txb_ctx, rdmult, &cm->coeff_ctx_table |
| 2165 | }; |
| 2166 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2167 | av1_txb_init_levels(qcoeff, width, height, levels); |
Urvang Joshi | 70006e4 | 2017-06-14 16:08:55 -0700 | [diff] [blame] | 2168 | |
Angie Chiang | 93af45f | 2017-10-23 18:19:59 -0700 | [diff] [blame] | 2169 | const int update = optimize_txb(&txb_info, &txb_costs, NULL, 0, fast_mode); |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2170 | |
Angie Chiang | 07c57f3 | 2017-05-30 18:18:33 -0700 | [diff] [blame] | 2171 | if (update) p->eobs[block] = txb_info.eob; |
| 2172 | return txb_info.eob; |
| 2173 | } |
Angie Chiang | 74e2307 | 2017-03-24 14:54:23 -0700 | [diff] [blame] | 2174 | int av1_get_txb_entropy_context(const tran_low_t *qcoeff, |
| 2175 | const SCAN_ORDER *scan_order, int eob) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2176 | const int16_t *const scan = scan_order->scan; |
Angie Chiang | 74e2307 | 2017-03-24 14:54:23 -0700 | [diff] [blame] | 2177 | int cul_level = 0; |
| 2178 | int c; |
Jingning Han | 339cf93 | 2017-09-18 10:17:02 -0700 | [diff] [blame] | 2179 | |
| 2180 | if (eob == 0) return 0; |
Angie Chiang | 74e2307 | 2017-03-24 14:54:23 -0700 | [diff] [blame] | 2181 | for (c = 0; c < eob; ++c) { |
| 2182 | cul_level += abs(qcoeff[scan[c]]); |
| 2183 | } |
| 2184 | |
| 2185 | cul_level = AOMMIN(COEFF_CONTEXT_MASK, cul_level); |
| 2186 | set_dc_sign(&cul_level, qcoeff[0]); |
| 2187 | |
| 2188 | return cul_level; |
| 2189 | } |
| 2190 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 2191 | void av1_update_txb_context_b(int plane, int block, int blk_row, int blk_col, |
| 2192 | BLOCK_SIZE plane_bsize, TX_SIZE tx_size, |
| 2193 | void *arg) { |
Jingning Han | 6171ae7 | 2017-05-18 20:15:06 -0700 | [diff] [blame] | 2194 | struct tokenize_b_args *const args = arg; |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2195 | const AV1_COMP *cpi = args->cpi; |
| 2196 | const AV1_COMMON *cm = &cpi->common; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2197 | ThreadData *const td = args->td; |
| 2198 | MACROBLOCK *const x = &td->mb; |
| 2199 | MACROBLOCKD *const xd = &x->e_mbd; |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2200 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2201 | struct macroblock_plane *p = &x->plane[plane]; |
| 2202 | struct macroblockd_plane *pd = &xd->plane[plane]; |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2203 | const uint16_t eob = p->eobs[block]; |
| 2204 | const tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); |
| 2205 | const PLANE_TYPE plane_type = pd->plane_type; |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2206 | const TX_TYPE tx_type = |
| 2207 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 2208 | const SCAN_ORDER *const scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2209 | (void)plane_bsize; |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2210 | |
Angie Chiang | 74e2307 | 2017-03-24 14:54:23 -0700 | [diff] [blame] | 2211 | int cul_level = av1_get_txb_entropy_context(qcoeff, scan_order, eob); |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2212 | av1_set_contexts(xd, pd, plane, tx_size, cul_level, blk_col, blk_row); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 2215 | void av1_update_and_record_txb_context(int plane, int block, int blk_row, |
| 2216 | int blk_col, BLOCK_SIZE plane_bsize, |
| 2217 | TX_SIZE tx_size, void *arg) { |
Jingning Han | 6171ae7 | 2017-05-18 20:15:06 -0700 | [diff] [blame] | 2218 | struct tokenize_b_args *const args = arg; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2219 | const AV1_COMP *cpi = args->cpi; |
| 2220 | const AV1_COMMON *cm = &cpi->common; |
| 2221 | ThreadData *const td = args->td; |
| 2222 | MACROBLOCK *const x = &td->mb; |
| 2223 | MACROBLOCKD *const xd = &x->e_mbd; |
| 2224 | struct macroblock_plane *p = &x->plane[plane]; |
| 2225 | struct macroblockd_plane *pd = &xd->plane[plane]; |
| 2226 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Linfeng Zhang | 848f7bc | 2017-10-31 15:26:07 -0700 | [diff] [blame] | 2227 | int eob = p->eobs[block], update_eob = -1; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2228 | const PLANE_TYPE plane_type = pd->plane_type; |
| 2229 | const tran_low_t *qcoeff = BLOCK_OFFSET(p->qcoeff, block); |
| 2230 | tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block); |
| 2231 | const int segment_id = mbmi->segment_id; |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2232 | const TX_TYPE tx_type = |
| 2233 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 2234 | const SCAN_ORDER *const scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2235 | const int16_t *const scan = scan_order->scan; |
hui su | c0cf71d | 2017-07-20 16:38:50 -0700 | [diff] [blame] | 2236 | const int seg_eob = av1_get_tx_eob(&cpi->common.seg, segment_id, tx_size); |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2237 | int c; |
Angie Chiang | 8590156 | 2017-03-17 12:03:27 -0700 | [diff] [blame] | 2238 | TXB_CTX txb_ctx; |
| 2239 | get_txb_ctx(plane_bsize, tx_size, plane, pd->above_context + blk_col, |
| 2240 | pd->left_context + blk_row, &txb_ctx); |
Angie Chiang | a9ba58e | 2017-12-01 19:22:43 -0800 | [diff] [blame] | 2241 | const int bwl = get_txb_bwl(tx_size); |
| 2242 | const int width = get_txb_wide(tx_size); |
| 2243 | const int height = get_txb_high(tx_size); |
Linfeng Zhang | 679d81e | 2017-10-31 15:27:42 -0700 | [diff] [blame] | 2244 | uint8_t levels_buf[TX_PAD_2D]; |
| 2245 | uint8_t *const levels = set_levels(levels_buf, width); |
Linfeng Zhang | ae7b2f3 | 2017-11-08 15:46:57 -0800 | [diff] [blame] | 2246 | DECLARE_ALIGNED(16, uint8_t, level_counts[MAX_TX_SQUARE]); |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2247 | const uint8_t allow_update_cdf = args->allow_update_cdf; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2248 | |
Debargha Mukherjee | b3eda2f | 2017-11-28 16:00:20 -0800 | [diff] [blame] | 2249 | TX_SIZE txsize_ctx = get_txsize_entropy_ctx(tx_size); |
Jingning Han | 8f66160 | 2017-08-19 08:16:50 -0700 | [diff] [blame] | 2250 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Jingning Han | 48be0e1 | 2017-06-13 12:12:01 -0700 | [diff] [blame] | 2251 | |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2252 | memcpy(tcoeff, qcoeff, sizeof(*tcoeff) * seg_eob); |
| 2253 | |
Jingning Han | 48be0e1 | 2017-06-13 12:12:01 -0700 | [diff] [blame] | 2254 | ++td->counts->txb_skip[txsize_ctx][txb_ctx.txb_skip_ctx][eob == 0]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2255 | if (allow_update_cdf) |
| 2256 | update_bin(ec_ctx->txb_skip_cdf[txsize_ctx][txb_ctx.txb_skip_ctx], eob == 0, |
| 2257 | 2); |
Angie Chiang | 8590156 | 2017-03-17 12:03:27 -0700 | [diff] [blame] | 2258 | x->mbmi_ext->txb_skip_ctx[plane][block] = txb_ctx.txb_skip_ctx; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2259 | |
| 2260 | x->mbmi_ext->eobs[plane][block] = eob; |
| 2261 | |
| 2262 | if (eob == 0) { |
| 2263 | av1_set_contexts(xd, pd, plane, tx_size, 0, blk_col, blk_row); |
| 2264 | return; |
| 2265 | } |
| 2266 | |
Linfeng Zhang | 1122d7d | 2017-10-31 15:30:28 -0700 | [diff] [blame] | 2267 | av1_txb_init_levels(tcoeff, width, height, levels); |
Linfeng Zhang | ce065ca | 2017-10-17 16:49:30 -0700 | [diff] [blame] | 2268 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 2269 | #if CONFIG_TXK_SEL |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 2270 | av1_update_tx_type_count(cm, xd, blk_row, blk_col, block, plane, |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2271 | mbmi->sb_type, get_min_tx_size(tx_size), td->counts, |
| 2272 | allow_update_cdf); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 2273 | #endif |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2274 | |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2275 | unsigned int(*nz_map_count)[SIG_COEF_CONTEXTS][2] = |
| 2276 | &(td->counts->nz_map[txsize_ctx][plane_type]); |
Jingning Han | 35deaa7 | 2017-10-26 15:36:30 -0700 | [diff] [blame] | 2277 | av1_update_eob_context(eob, seg_eob, tx_size, tx_type, plane_type, ec_ctx, |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2278 | td->counts, allow_update_cdf); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2279 | #if USE_CAUSAL_BASE_CTX |
| 2280 | int coeff_ctx = 0; |
| 2281 | update_eob = eob - 1; |
| 2282 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2283 | for (c = eob - 1; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2284 | const int pos = scan[c]; |
| 2285 | const tran_low_t v = qcoeff[pos]; |
| 2286 | const int is_nz = (v != 0); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2287 | |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 2288 | #if CONFIG_LV_MAP_MULTI |
| 2289 | (void)is_nz; |
| 2290 | (void)nz_map_count; |
| 2291 | coeff_ctx = |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 2292 | get_nz_map_ctx(levels, pos, bwl, height, c, c == eob - 1, tx_type); |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 2293 | #if USE_BASE_EOB_ALPHABET |
| 2294 | if (c == eob - 1) { |
| 2295 | update_cdf(ec_ctx->coeff_base_eob_cdf[txsize_ctx][plane_type] |
| 2296 | [coeff_ctx - SIG_COEF_CONTEXTS + |
| 2297 | SIG_COEF_CONTEXTS_EOB], |
| 2298 | AOMMIN(abs(v), 3) - 1, 3); |
| 2299 | } else { |
| 2300 | update_cdf(ec_ctx->coeff_base_cdf[txsize_ctx][plane_type][coeff_ctx], |
| 2301 | AOMMIN(abs(v), 3), 4); |
| 2302 | } |
Dake He | 5988177 | 2017-11-24 07:00:02 -0800 | [diff] [blame] | 2303 | { |
| 2304 | if (c < eob - 1) { |
| 2305 | ++(*nz_map_count)[coeff_ctx][is_nz]; |
| 2306 | } |
| 2307 | if (is_nz) { |
| 2308 | for (int k = 0; k < NUM_BASE_LEVELS; ++k) { |
| 2309 | int is_k = (abs(v) > (k + 1)); |
| 2310 | ++td->counts->coeff_base[txsize_ctx][plane_type][k][coeff_ctx][is_k]; |
| 2311 | if (is_k == 0) break; |
| 2312 | } |
| 2313 | } |
| 2314 | } |
| 2315 | |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 2316 | #else |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 2317 | update_cdf(ec_ctx->coeff_base_cdf[txsize_ctx][plane_type][coeff_ctx], |
| 2318 | AOMMIN(abs(v), 3), 4); |
Dake He | 3fe369c | 2017-11-16 17:56:44 -0800 | [diff] [blame] | 2319 | #endif |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 2320 | #elif USE_CAUSAL_BASE_CTX |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 2321 | coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Ola Hugosson | 1389210 | 2017-11-06 08:01:44 +0100 | [diff] [blame] | 2322 | |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2323 | if (c < eob - 1) { |
| 2324 | ++(*nz_map_count)[coeff_ctx][is_nz]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2325 | if (allow_update_cdf) |
| 2326 | update_cdf(ec_ctx->nz_map_cdf[txsize_ctx][plane_type][coeff_ctx], is_nz, |
| 2327 | 2); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | if (is_nz) { |
| 2331 | int k; |
| 2332 | for (k = 0; k < NUM_BASE_LEVELS; ++k) { |
| 2333 | int ctx = coeff_ctx; |
| 2334 | int is_k = (abs(v) > (k + 1)); |
| 2335 | |
| 2336 | ++td->counts->coeff_base[txsize_ctx][plane_type][k][ctx][is_k]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2337 | if (allow_update_cdf) |
| 2338 | update_bin(ec_ctx->coeff_base_cdf[txsize_ctx][plane_type][k][ctx], |
| 2339 | is_k, 2); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2340 | if (is_k == 0) break; |
| 2341 | } |
| 2342 | } |
| 2343 | #else |
Linfeng Zhang | f91f3ca | 2017-12-05 11:22:41 -0800 | [diff] [blame] | 2344 | const int coeff_ctx = get_nz_map_ctx(levels, pos, bwl, height, tx_type); |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2345 | |
| 2346 | if (c == eob - 1) continue; |
| 2347 | |
| 2348 | ++(*nz_map_count)[coeff_ctx][is_nz]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2349 | if (allow_update_cdf) |
| 2350 | update_cdf(ec_ctx->nz_map_cdf[txsize_ctx][plane_type][coeff_ctx], is_nz, |
| 2351 | 2); |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2352 | #endif |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2353 | } |
Dake He | a47cd6c | 2017-10-13 18:09:58 -0700 | [diff] [blame] | 2354 | |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2355 | #if !USE_CAUSAL_BASE_CTX |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2356 | // Reverse process order to handle coefficient level and sign. |
Linfeng Zhang | 1015a34 | 2017-10-24 16:20:41 -0700 | [diff] [blame] | 2357 | for (int i = 0; i < NUM_BASE_LEVELS; ++i) { |
Linfeng Zhang | f72e138 | 2017-11-01 13:59:41 -0700 | [diff] [blame] | 2358 | av1_get_base_level_counts(levels, i, width, height, level_counts); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2359 | for (c = eob - 1; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2360 | const int pos = scan[c]; |
| 2361 | const tran_low_t level = abs(tcoeff[pos]); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2362 | int ctx; |
| 2363 | |
| 2364 | if (level <= i) continue; |
| 2365 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2366 | ctx = get_base_ctx(levels, pos, bwl, i, level_counts[pos]); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2367 | |
| 2368 | if (level == i + 1) { |
Jingning Han | 48be0e1 | 2017-06-13 12:12:01 -0700 | [diff] [blame] | 2369 | ++td->counts->coeff_base[txsize_ctx][plane_type][i][ctx][1]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2370 | if (allow_update_cdf) |
| 2371 | update_bin(ec_ctx->coeff_base_cdf[txsize_ctx][plane_type][i][ctx], 1, |
| 2372 | 2); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2373 | continue; |
| 2374 | } |
Jingning Han | 48be0e1 | 2017-06-13 12:12:01 -0700 | [diff] [blame] | 2375 | ++td->counts->coeff_base[txsize_ctx][plane_type][i][ctx][0]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2376 | if (allow_update_cdf) |
| 2377 | update_bin(ec_ctx->coeff_base_cdf[txsize_ctx][plane_type][i][ctx], 0, |
| 2378 | 2); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2379 | update_eob = AOMMAX(update_eob, c); |
| 2380 | } |
| 2381 | } |
Dake He | 03a3292 | 2017-10-31 08:06:45 -0700 | [diff] [blame] | 2382 | #endif |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2383 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2384 | // Update the context needed to code the DC sign (if applicable) |
| 2385 | const int sign = (tcoeff[0] < 0) ? 1 : 0; |
| 2386 | if (tcoeff[0] != 0) { |
Dake He | 43edb76 | 2017-10-26 10:29:46 -0700 | [diff] [blame] | 2387 | int dc_sign_ctx = txb_ctx.dc_sign_ctx; |
| 2388 | |
| 2389 | ++td->counts->dc_sign[plane_type][dc_sign_ctx][sign]; |
| 2390 | #if LV_MAP_PROB |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2391 | if (allow_update_cdf) |
| 2392 | update_bin(ec_ctx->dc_sign_cdf[plane_type][dc_sign_ctx], sign, 2); |
Dake He | 43edb76 | 2017-10-26 10:29:46 -0700 | [diff] [blame] | 2393 | #endif |
| 2394 | x->mbmi_ext->dc_sign_ctx[plane][block] = dc_sign_ctx; |
| 2395 | } |
| 2396 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2397 | if (update_eob >= 0) { |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2398 | #if !CONFIG_LV_MAP_MULTI |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2399 | av1_get_br_level_counts(levels, width, height, level_counts); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2400 | #endif |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2401 | for (c = update_eob; c >= 0; --c) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2402 | const int pos = scan[c]; |
| 2403 | const tran_low_t level = abs(tcoeff[pos]); |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2404 | int idx; |
| 2405 | int ctx; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2406 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2407 | if (level <= NUM_BASE_LEVELS) continue; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2408 | |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2409 | // level is above 1. |
| 2410 | #if !CONFIG_LV_MAP_MULTI |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2411 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos]); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2412 | #endif |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 2413 | |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2414 | const int base_range = level - 1 - NUM_BASE_LEVELS; |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 2415 | #if CONFIG_LV_MAP_MULTI |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2416 | #if USE_CAUSAL_BR_CTX |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2417 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos], tx_type); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2418 | #else |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2419 | ctx = get_br_ctx(levels, pos, bwl, level_counts[pos]); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2420 | #endif |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 2421 | for (idx = 0; idx < COEFF_BASE_RANGE; idx += BR_CDF_SIZE - 1) { |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2422 | const int k = AOMMIN(base_range - idx, BR_CDF_SIZE - 1); |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 2423 | // printf("br_update: %d %d %2d : %2d %d\n", txsize_ctx, plane, ctx, |
| 2424 | // base_range, k); |
Dake He | 7d01ab5 | 2017-11-24 17:53:28 -0800 | [diff] [blame] | 2425 | update_cdf( |
| 2426 | ec_ctx->coeff_br_cdf[AOMMIN(txsize_ctx, TX_16X16)][plane_type][ctx], |
| 2427 | k, BR_CDF_SIZE); |
| 2428 | for (int lps = 0; lps < BR_CDF_SIZE - 1; lps++) { |
| 2429 | ++td->counts->coeff_lps[AOMMIN(txsize_ctx, TX_16X16)][plane_type][lps] |
| 2430 | [ctx][lps == k]; |
Dake He | 5988177 | 2017-11-24 07:00:02 -0800 | [diff] [blame] | 2431 | if (lps == k) break; |
| 2432 | } |
| 2433 | |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 2434 | if (k < BR_CDF_SIZE - 1) break; |
| 2435 | } |
| 2436 | #else |
Linfeng Zhang | db41d1e | 2017-12-05 11:06:20 -0800 | [diff] [blame] | 2437 | const int br_set_idx = base_range < COEFF_BASE_RANGE |
| 2438 | ? coeff_to_br_index[base_range] |
| 2439 | : BASE_RANGE_SETS; |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 2440 | |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2441 | for (idx = 0; idx < BASE_RANGE_SETS; ++idx) { |
| 2442 | if (idx == br_set_idx) { |
| 2443 | int br_base = br_index_to_coeff[br_set_idx]; |
| 2444 | int br_offset = base_range - br_base; |
| 2445 | ++td->counts->coeff_br[txsize_ctx][plane_type][idx][ctx][1]; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2446 | if (allow_update_cdf) |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2447 | update_bin(ec_ctx->coeff_br_cdf[txsize_ctx][plane_type][idx][ctx], |
| 2448 | 1, 2); |
| 2449 | int extra_bits = (1 << br_extra_bits[idx]) - 1; |
| 2450 | for (int tok = 0; tok < extra_bits; ++tok) { |
| 2451 | if (br_offset == tok) { |
| 2452 | ++td->counts->coeff_lps[txsize_ctx][plane_type][ctx][1]; |
| 2453 | if (allow_update_cdf) |
| 2454 | update_bin(ec_ctx->coeff_lps_cdf[txsize_ctx][plane_type][ctx], |
| 2455 | 1, 2); |
| 2456 | break; |
| 2457 | } |
| 2458 | ++td->counts->coeff_lps[txsize_ctx][plane_type][ctx][0]; |
| 2459 | if (allow_update_cdf) |
| 2460 | update_bin(ec_ctx->coeff_lps_cdf[txsize_ctx][plane_type][ctx], 0, |
| 2461 | 2); |
| 2462 | } |
| 2463 | break; |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 2464 | } |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2465 | ++td->counts->coeff_br[txsize_ctx][plane_type][idx][ctx][0]; |
| 2466 | if (allow_update_cdf) |
| 2467 | update_bin(ec_ctx->coeff_br_cdf[txsize_ctx][plane_type][idx][ctx], 0, |
| 2468 | 2); |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 2469 | } |
Ola Hugosson | e72a209 | 2017-11-12 09:11:53 +0100 | [diff] [blame] | 2470 | #endif |
Linfeng Zhang | 97fc474 | 2017-11-07 12:57:25 -0800 | [diff] [blame] | 2471 | // use 0-th order Golomb code to handle the residual level. |
Jingning Han | 87b01b5 | 2017-08-31 12:07:20 -0700 | [diff] [blame] | 2472 | } |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2473 | } |
Angie Chiang | 36d616b | 2017-03-22 13:58:36 -0700 | [diff] [blame] | 2474 | |
Angie Chiang | 63d190a | 2017-10-23 15:43:05 -0700 | [diff] [blame] | 2475 | int cul_level = av1_get_txb_entropy_context(tcoeff, scan_order, eob); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2476 | av1_set_contexts(xd, pd, plane, tx_size, cul_level, blk_col, blk_row); |
Angie Chiang | 0b205e6 | 2017-03-20 17:16:47 -0700 | [diff] [blame] | 2477 | |
| 2478 | #if CONFIG_ADAPT_SCAN |
| 2479 | // Since dqcoeff is not available here, we pass qcoeff into |
| 2480 | // av1_update_scan_count_facade(). The update behavior should be the same |
| 2481 | // because av1_update_scan_count_facade() only cares if coefficients are zero |
| 2482 | // or not. |
Jingning Han | 025c6c4 | 2017-11-22 12:06:03 -0800 | [diff] [blame] | 2483 | const int mi_row = -xd->mb_to_top_edge >> (3 + MI_SIZE_LOG2); |
Jingning Han | 0bd3bf6 | 2017-11-28 17:11:51 -0800 | [diff] [blame] | 2484 | av1_update_scan_count_facade((AV1_COMMON *)cm, xd, mi_row, tx_size, tx_type, |
| 2485 | qcoeff, eob); |
Angie Chiang | 0b205e6 | 2017-03-20 17:16:47 -0700 | [diff] [blame] | 2486 | #endif |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2487 | } |
| 2488 | |
| 2489 | void av1_update_txb_context(const AV1_COMP *cpi, ThreadData *td, |
| 2490 | RUN_TYPE dry_run, BLOCK_SIZE bsize, int *rate, |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2491 | int mi_row, int mi_col, uint8_t allow_update_cdf) { |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2492 | MACROBLOCK *const x = &td->mb; |
| 2493 | MACROBLOCKD *const xd = &x->e_mbd; |
| 2494 | MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2495 | struct tokenize_b_args arg = { cpi, td, NULL, 0, allow_update_cdf }; |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2496 | (void)rate; |
| 2497 | (void)mi_row; |
| 2498 | (void)mi_col; |
| 2499 | if (mbmi->skip) { |
Timothy B. Terriberry | a2d5cde | 2017-05-10 18:33:50 -0700 | [diff] [blame] | 2500 | av1_reset_skip_context(xd, mi_row, mi_col, bsize); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2501 | return; |
| 2502 | } |
| 2503 | |
| 2504 | if (!dry_run) { |
Jingning Han | 94652b8 | 2017-04-04 09:45:02 -0700 | [diff] [blame] | 2505 | av1_foreach_transformed_block(xd, bsize, mi_row, mi_col, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 2506 | av1_update_and_record_txb_context, &arg); |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 2507 | } else if (dry_run == DRY_RUN_NORMAL) { |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 2508 | av1_foreach_transformed_block(xd, bsize, mi_row, mi_col, |
| 2509 | av1_update_txb_context_b, &arg); |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 2510 | } else { |
| 2511 | printf("DRY_RUN_COSTCOEFFS is not supported yet\n"); |
| 2512 | assert(0); |
Angie Chiang | 0397eda | 2017-03-15 16:57:14 -0700 | [diff] [blame] | 2513 | } |
| 2514 | } |
Angie Chiang | 800df03 | 2017-03-22 11:14:12 -0700 | [diff] [blame] | 2515 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 2516 | #if CONFIG_TXK_SEL |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2517 | int64_t av1_search_txk_type(const AV1_COMP *cpi, MACROBLOCK *x, int plane, |
| 2518 | int block, int blk_row, int blk_col, |
| 2519 | BLOCK_SIZE plane_bsize, TX_SIZE tx_size, |
Angie Chiang | 65a39bb | 2017-04-11 16:50:04 -0700 | [diff] [blame] | 2520 | const ENTROPY_CONTEXT *a, const ENTROPY_CONTEXT *l, |
| 2521 | int use_fast_coef_costing, RD_STATS *rd_stats) { |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2522 | const AV1_COMMON *cm = &cpi->common; |
| 2523 | MACROBLOCKD *xd = &x->e_mbd; |
| 2524 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
| 2525 | TX_TYPE txk_start = DCT_DCT; |
| 2526 | TX_TYPE txk_end = TX_TYPES - 1; |
| 2527 | TX_TYPE best_tx_type = txk_start; |
| 2528 | int64_t best_rd = INT64_MAX; |
Jingning Han | 4755817 | 2017-07-05 16:33:19 -0700 | [diff] [blame] | 2529 | uint8_t best_eob = 0; |
Jingning Han | e3b81bc | 2017-06-23 11:43:52 -0700 | [diff] [blame] | 2530 | RD_STATS best_rd_stats; |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2531 | TX_TYPE tx_type; |
Jingning Han | e3b81bc | 2017-06-23 11:43:52 -0700 | [diff] [blame] | 2532 | |
| 2533 | av1_invalid_rd_stats(&best_rd_stats); |
| 2534 | |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2535 | for (tx_type = txk_start; tx_type <= txk_end; ++tx_type) { |
Angie Chiang | bce07f1 | 2017-12-01 16:34:31 -0800 | [diff] [blame] | 2536 | if (plane == 0) |
| 2537 | mbmi->txk_type[(blk_row << MAX_MIB_SIZE_LOG2) + blk_col] = tx_type; |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2538 | TX_TYPE ref_tx_type = av1_get_tx_type(get_plane_type(plane), xd, blk_row, |
| 2539 | blk_col, block, tx_size); |
Angie Chiang | 00491e0 | 2017-04-11 17:55:10 -0700 | [diff] [blame] | 2540 | if (tx_type != ref_tx_type) { |
hui su | 45b6475 | 2017-07-12 16:54:35 -0700 | [diff] [blame] | 2541 | // use av1_get_tx_type() to check if the tx_type is valid for the current |
| 2542 | // mode if it's not, we skip it here. |
Angie Chiang | 00491e0 | 2017-04-11 17:55:10 -0700 | [diff] [blame] | 2543 | continue; |
| 2544 | } |
Jingning Han | e57d632 | 2017-07-03 18:50:25 -0700 | [diff] [blame] | 2545 | |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 2546 | const int is_inter = is_inter_block(mbmi); |
Angie Chiang | 53bf1e9 | 2017-11-29 16:53:07 -0800 | [diff] [blame] | 2547 | const TxSetType tx_set_type = get_ext_tx_set_type( |
| 2548 | tx_size, mbmi->sb_type, is_inter, cm->reduced_tx_set_used); |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 2549 | if (!av1_ext_tx_used[tx_set_type][tx_type]) continue; |
Jingning Han | e57d632 | 2017-07-03 18:50:25 -0700 | [diff] [blame] | 2550 | |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2551 | RD_STATS this_rd_stats; |
| 2552 | av1_invalid_rd_stats(&this_rd_stats); |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2553 | #if DISABLE_TRELLISQ_SEARCH |
| 2554 | av1_xform_quant(cm, x, plane, block, blk_row, blk_col, plane_bsize, tx_size, |
Sarah Parker | e8d0d4c | 2017-12-06 15:11:37 -0800 | [diff] [blame] | 2555 | AV1_XFORM_QUANT_B); |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2556 | #else |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2557 | av1_xform_quant(cm, x, plane, block, blk_row, blk_col, plane_bsize, tx_size, |
Sarah Parker | e8d0d4c | 2017-12-06 15:11:37 -0800 | [diff] [blame] | 2558 | AV1_XFORM_QUANT_FP); |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 2559 | av1_optimize_b(cm, x, plane, blk_row, blk_col, block, plane_bsize, tx_size, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2560 | a, l, 1); |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2561 | #endif |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2562 | av1_dist_block(cpi, x, plane, plane_bsize, block, blk_row, blk_col, tx_size, |
Angie Chiang | 2ed03a3 | 2017-04-16 18:00:06 -0700 | [diff] [blame] | 2563 | &this_rd_stats.dist, &this_rd_stats.sse, |
| 2564 | OUTPUT_HAS_PREDICTED_PIXELS); |
Angie Chiang | bd99b38 | 2017-06-20 15:11:16 -0700 | [diff] [blame] | 2565 | const SCAN_ORDER *scan_order = get_scan(cm, tx_size, tx_type, mbmi); |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 2566 | this_rd_stats.rate = |
| 2567 | av1_cost_coeffs(cpi, x, plane, blk_row, blk_col, block, tx_size, |
| 2568 | scan_order, a, l, use_fast_coef_costing); |
Urvang Joshi | 70006e4 | 2017-06-14 16:08:55 -0700 | [diff] [blame] | 2569 | int rd = RDCOST(x->rdmult, this_rd_stats.rate, this_rd_stats.dist); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2570 | |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2571 | if (rd < best_rd) { |
| 2572 | best_rd = rd; |
Jingning Han | e3b81bc | 2017-06-23 11:43:52 -0700 | [diff] [blame] | 2573 | best_rd_stats = this_rd_stats; |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2574 | best_tx_type = tx_type; |
Jingning Han | 4755817 | 2017-07-05 16:33:19 -0700 | [diff] [blame] | 2575 | best_eob = x->plane[plane].txb_entropy_ctx[block]; |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2576 | } |
| 2577 | } |
Jingning Han | e3b81bc | 2017-06-23 11:43:52 -0700 | [diff] [blame] | 2578 | |
| 2579 | av1_merge_rd_stats(rd_stats, &best_rd_stats); |
| 2580 | |
Angie Chiang | a3f7d2e | 2017-12-07 19:51:14 -0800 | [diff] [blame^] | 2581 | if (best_eob == 0) best_tx_type = DCT_DCT; |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 2582 | |
Angie Chiang | bce07f1 | 2017-12-01 16:34:31 -0800 | [diff] [blame] | 2583 | if (plane == 0) |
| 2584 | mbmi->txk_type[(blk_row << MAX_MIB_SIZE_LOG2) + blk_col] = best_tx_type; |
Jingning Han | 4755817 | 2017-07-05 16:33:19 -0700 | [diff] [blame] | 2585 | x->plane[plane].txb_entropy_ctx[block] = best_eob; |
| 2586 | |
Angie Chiang | 2ed03a3 | 2017-04-16 18:00:06 -0700 | [diff] [blame] | 2587 | if (!is_inter_block(mbmi)) { |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2588 | // intra mode needs decoded result such that the next transform block |
| 2589 | // can use it for prediction. |
| 2590 | #if DISABLE_TRELLISQ_SEARCH |
| 2591 | av1_xform_quant(cm, x, plane, block, blk_row, blk_col, plane_bsize, tx_size, |
Sarah Parker | e8d0d4c | 2017-12-06 15:11:37 -0800 | [diff] [blame] | 2592 | AV1_XFORM_QUANT_B); |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2593 | #else |
Jingning Han | 4755817 | 2017-07-05 16:33:19 -0700 | [diff] [blame] | 2594 | av1_xform_quant(cm, x, plane, block, blk_row, blk_col, plane_bsize, tx_size, |
Sarah Parker | e8d0d4c | 2017-12-06 15:11:37 -0800 | [diff] [blame] | 2595 | AV1_XFORM_QUANT_FP); |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 2596 | av1_optimize_b(cm, x, plane, blk_row, blk_col, block, plane_bsize, tx_size, |
Angie Chiang | 25645b7 | 2017-09-24 14:28:49 -0700 | [diff] [blame] | 2597 | a, l, 1); |
Angie Chiang | daccae3 | 2017-12-04 09:34:44 -0800 | [diff] [blame] | 2598 | #endif |
Jingning Han | 4755817 | 2017-07-05 16:33:19 -0700 | [diff] [blame] | 2599 | |
Angie Chiang | 2ed03a3 | 2017-04-16 18:00:06 -0700 | [diff] [blame] | 2600 | av1_inverse_transform_block_facade(xd, plane, block, blk_row, blk_col, |
Frederic Barbier | 33b39f0 | 2017-11-21 11:11:24 +0100 | [diff] [blame] | 2601 | x->plane[plane].eobs[block], |
| 2602 | cm->reduced_tx_set_used); |
Angie Chiang | 2ed03a3 | 2017-04-16 18:00:06 -0700 | [diff] [blame] | 2603 | } |
Angie Chiang | 808d859 | 2017-04-06 18:36:55 -0700 | [diff] [blame] | 2604 | return best_rd; |
| 2605 | } |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 2606 | #endif // CONFIG_TXK_SEL |