blob: 128aa76253b7e8d3a158801a22e2325619297db8 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
12#include <assert.h>
13#include <limits.h>
14#include <stdio.h>
15
Yaowu Xuf883b422016-08-30 14:01:10 -070016#include "aom/aom_encoder.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070017#include "aom_dsp/aom_dsp_common.h"
Debargha Mukherjee47748b52017-03-24 12:20:49 -070018#include "aom_dsp/binary_codes_writer.h"
Cheng Chenc7855b12017-09-05 10:49:08 -070019#include "aom_dsp/bitwriter_buffer.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070020#include "aom_mem/aom_mem.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070021#include "aom_ports/mem_ops.h"
22#include "aom_ports/system_state.h"
Angie Chiang6062a8b2016-09-21 16:01:04 -070023#if CONFIG_BITSTREAM_DEBUG
Yaowu Xuc27fc142016-08-22 16:08:15 -070024#include "aom_util/debug_util.h"
Angie Chiang6062a8b2016-09-21 16:01:04 -070025#endif // CONFIG_BITSTREAM_DEBUG
Yaowu Xuc27fc142016-08-22 16:08:15 -070026
Jean-Marc Valin01435132017-02-18 14:12:53 -050027#if CONFIG_CDEF
Steinar Midtskogena9d41e82017-03-17 12:48:15 +010028#include "av1/common/cdef.h"
Jean-Marc Valin01435132017-02-18 14:12:53 -050029#endif // CONFIG_CDEF
Yaowu Xuc27fc142016-08-22 16:08:15 -070030#include "av1/common/entropy.h"
31#include "av1/common/entropymode.h"
32#include "av1/common/entropymv.h"
33#include "av1/common/mvref_common.h"
Thomas Daviesf6936102016-09-05 16:51:31 +010034#include "av1/common/odintrin.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070035#include "av1/common/pred_common.h"
36#include "av1/common/reconinter.h"
hui su45dc5972016-12-08 17:42:50 -080037#if CONFIG_EXT_INTRA
38#include "av1/common/reconintra.h"
39#endif // CONFIG_EXT_INTRA
Yaowu Xuc27fc142016-08-22 16:08:15 -070040#include "av1/common/seg_common.h"
41#include "av1/common/tile_common.h"
42
Angie Chiangc8af6112017-03-16 16:11:22 -070043#if CONFIG_LV_MAP
44#include "av1/encoder/encodetxb.h"
45#endif // CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -070046#include "av1/encoder/bitstream.h"
47#include "av1/encoder/cost.h"
48#include "av1/encoder/encodemv.h"
49#include "av1/encoder/mcomp.h"
Urvang Joshic6300aa2017-06-01 14:46:23 -070050#if CONFIG_PALETTE_DELTA_ENCODING
hui sud13c24a2017-04-07 16:13:07 -070051#include "av1/encoder/palette.h"
Urvang Joshic6300aa2017-06-01 14:46:23 -070052#endif // CONFIG_PALETTE_DELTA_ENCODING
Yaowu Xuc27fc142016-08-22 16:08:15 -070053#include "av1/encoder/segmentation.h"
54#include "av1/encoder/subexp.h"
55#include "av1/encoder/tokenize.h"
56
Di Chen56586622017-06-09 13:49:44 -070057#define ENC_MISMATCH_DEBUG 0
Zoe Liu85b66462017-04-20 14:28:19 -070058
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +020059#if CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -070060static struct av1_token
61 inter_singleref_comp_mode_encodings[INTER_SINGLEREF_COMP_MODES];
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +020062#endif // CONFIG_COMPOUND_SINGLEREF
Yaowu Xuc27fc142016-08-22 16:08:15 -070063
Yaowu Xuf883b422016-08-30 14:01:10 -070064static INLINE void write_uniform(aom_writer *w, int n, int v) {
hui su37499292017-04-26 09:49:53 -070065 const int l = get_unsigned_bits(n);
66 const int m = (1 << l) - n;
Yaowu Xuc27fc142016-08-22 16:08:15 -070067 if (l == 0) return;
68 if (v < m) {
Yaowu Xuf883b422016-08-30 14:01:10 -070069 aom_write_literal(w, v, l - 1);
Yaowu Xuc27fc142016-08-22 16:08:15 -070070 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -070071 aom_write_literal(w, m + ((v - m) >> 1), l - 1);
72 aom_write_literal(w, (v - m) & 1, 1);
Yaowu Xuc27fc142016-08-22 16:08:15 -070073 }
74}
75
Yaowu Xuf883b422016-08-30 14:01:10 -070076static struct av1_token interintra_mode_encodings[INTERINTRA_MODES];
Sarah Parker6fddd182016-11-10 20:57:20 -080077static struct av1_token compound_type_encodings[COMPOUND_TYPES];
Debargha Mukherjee5cd2ab92016-09-08 15:15:17 -070078#if CONFIG_LOOP_RESTORATION
Rupert Swarbrick6c545212017-09-01 17:17:25 +010079static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm,
80 MACROBLOCKD *xd,
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +010081 const RestorationUnitInfo *rui,
82 aom_writer *const w, int plane);
Debargha Mukherjee5cd2ab92016-09-08 15:15:17 -070083#endif // CONFIG_LOOP_RESTORATION
Soo-Chul Han65c00ae2017-09-07 13:12:35 -040084#if CONFIG_OBU
85static void write_uncompressed_header_obu(AV1_COMP *cpi,
86 struct aom_write_bit_buffer *wb);
87#else
88static void write_uncompressed_header_frame(AV1_COMP *cpi,
89 struct aom_write_bit_buffer *wb);
90#endif
91
Thomas Davies80188d12016-10-26 16:08:35 -070092static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data);
Debargha Mukherjee2eada612017-09-22 15:37:39 -070093
Soo-Chul Han65c00ae2017-09-07 13:12:35 -040094#if !CONFIG_OBU || CONFIG_EXT_TILE
Thomas Daviesdbfc4f92017-01-18 16:46:09 +000095static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst,
96 const uint32_t data_size, const uint32_t max_tile_size,
97 const uint32_t max_tile_col_size,
98 int *const tile_size_bytes,
99 int *const tile_col_size_bytes);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -0400100#endif
Yaowu Xuf883b422016-08-30 14:01:10 -0700101void av1_encode_token_init(void) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700102 av1_tokens_from_tree(interintra_mode_encodings, av1_interintra_mode_tree);
Zoe Liu85b66462017-04-20 14:28:19 -0700103#if CONFIG_COMPOUND_SINGLEREF
104 av1_tokens_from_tree(inter_singleref_comp_mode_encodings,
105 av1_inter_singleref_comp_mode_tree);
106#endif // CONFIG_COMPOUND_SINGLEREF
Sarah Parker6fddd182016-11-10 20:57:20 -0800107 av1_tokens_from_tree(compound_type_encodings, av1_compound_type_tree);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700108}
109
Jingning Hanf04254f2017-03-08 10:51:35 -0800110static void write_intra_mode_kf(const AV1_COMMON *cm, FRAME_CONTEXT *frame_ctx,
111 const MODE_INFO *mi, const MODE_INFO *above_mi,
112 const MODE_INFO *left_mi, int block,
113 PREDICTION_MODE mode, aom_writer *w) {
Alex Converse28744302017-04-13 14:46:22 -0700114#if CONFIG_INTRABC
115 assert(!is_intrabc_block(&mi->mbmi));
116#endif // CONFIG_INTRABC
Hui Su814f41e2017-10-02 12:21:24 -0700117 aom_write_symbol(w, mode,
Jingning Hanf04254f2017-03-08 10:51:35 -0800118 get_y_mode_cdf(frame_ctx, mi, above_mi, left_mi, block),
119 INTRA_MODES);
120 (void)cm;
Jingning Hanf04254f2017-03-08 10:51:35 -0800121}
Yaowu Xuc27fc142016-08-22 16:08:15 -0700122
Thomas Davies1de6c882017-01-11 17:47:49 +0000123static void write_inter_mode(aom_writer *w, PREDICTION_MODE mode,
Zoe Liu7f24e1b2017-03-17 17:42:05 -0700124 FRAME_CONTEXT *ec_ctx, const int16_t mode_ctx) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700125 const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700126
Thomas Davies149eda52017-06-12 18:11:55 +0100127#if CONFIG_NEW_MULTISYMBOL
128 aom_write_symbol(w, mode != NEWMV, ec_ctx->newmv_cdf[newmv_ctx], 2);
129#else
130 aom_write(w, mode != NEWMV, ec_ctx->newmv_prob[newmv_ctx]);
131#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700132
Jingning Hanf2b87bd2017-05-18 16:27:30 -0700133 if (mode != NEWMV) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700134 if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) {
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700135 assert(mode == GLOBALMV);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700136 return;
137 }
138
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700139 const int16_t zeromv_ctx =
140 (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK;
Thomas Davies149eda52017-06-12 18:11:55 +0100141#if CONFIG_NEW_MULTISYMBOL
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700142 aom_write_symbol(w, mode != GLOBALMV, ec_ctx->zeromv_cdf[zeromv_ctx], 2);
Thomas Davies149eda52017-06-12 18:11:55 +0100143#else
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700144 aom_write(w, mode != GLOBALMV, ec_ctx->zeromv_prob[zeromv_ctx]);
Thomas Davies149eda52017-06-12 18:11:55 +0100145#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700146
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700147 if (mode != GLOBALMV) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700148 int16_t refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700149
150 if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6;
151 if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7;
152 if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8;
Thomas Davies149eda52017-06-12 18:11:55 +0100153#if CONFIG_NEW_MULTISYMBOL
154 aom_write_symbol(w, mode != NEARESTMV, ec_ctx->refmv_cdf[refmv_ctx], 2);
155#else
156 aom_write(w, mode != NEARESTMV, ec_ctx->refmv_prob[refmv_ctx]);
157#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700158 }
159 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700160}
161
Thomas Davies149eda52017-06-12 18:11:55 +0100162static void write_drl_idx(FRAME_CONTEXT *ec_ctx, const MB_MODE_INFO *mbmi,
Yaowu Xuf883b422016-08-30 14:01:10 -0700163 const MB_MODE_INFO_EXT *mbmi_ext, aom_writer *w) {
164 uint8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700165
166 assert(mbmi->ref_mv_idx < 3);
167
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000168 const int new_mv =
Zoe Liu85b66462017-04-20 14:28:19 -0700169#if CONFIG_COMPOUND_SINGLEREF
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000170 mbmi->mode == SR_NEW_NEWMV ||
171#endif
172 mbmi->mode == NEWMV || mbmi->mode == NEW_NEWMV;
173 if (new_mv) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700174 int idx;
175 for (idx = 0; idx < 2; ++idx) {
176 if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) {
177 uint8_t drl_ctx =
Yaowu Xuf883b422016-08-30 14:01:10 -0700178 av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700179
Thomas Davies149eda52017-06-12 18:11:55 +0100180#if CONFIG_NEW_MULTISYMBOL
181 aom_write_symbol(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_cdf[drl_ctx],
182 2);
183#else
184 aom_write(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_prob[drl_ctx]);
185#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700186 if (mbmi->ref_mv_idx == idx) return;
187 }
188 }
189 return;
190 }
191
David Barker3dfba992017-04-03 16:10:09 +0100192 if (have_nearmv_in_inter_mode(mbmi->mode)) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700193 int idx;
194 // TODO(jingning): Temporary solution to compensate the NEARESTMV offset.
195 for (idx = 1; idx < 3; ++idx) {
196 if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) {
197 uint8_t drl_ctx =
Yaowu Xuf883b422016-08-30 14:01:10 -0700198 av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx);
Thomas Davies149eda52017-06-12 18:11:55 +0100199#if CONFIG_NEW_MULTISYMBOL
200 aom_write_symbol(w, mbmi->ref_mv_idx != (idx - 1),
201 ec_ctx->drl_cdf[drl_ctx], 2);
202#else
203 aom_write(w, mbmi->ref_mv_idx != (idx - 1), ec_ctx->drl_prob[drl_ctx]);
204#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700205 if (mbmi->ref_mv_idx == (idx - 1)) return;
206 }
207 }
208 return;
209 }
210}
Yaowu Xuc27fc142016-08-22 16:08:15 -0700211
Thomas Davies8c08a332017-06-26 17:30:34 +0100212static void write_inter_compound_mode(AV1_COMMON *cm, MACROBLOCKD *xd,
213 aom_writer *w, PREDICTION_MODE mode,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700214 const int16_t mode_ctx) {
Thomas Davies8c08a332017-06-26 17:30:34 +0100215 assert(is_inter_compound_mode(mode));
Thomas Davies8c08a332017-06-26 17:30:34 +0100216 (void)cm;
217 aom_write_symbol(w, INTER_COMPOUND_OFFSET(mode),
218 xd->tile_ctx->inter_compound_mode_cdf[mode_ctx],
219 INTER_COMPOUND_MODES);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700220}
Zoe Liu85b66462017-04-20 14:28:19 -0700221
222#if CONFIG_COMPOUND_SINGLEREF
Thomas Daviesb8b14a92017-07-12 15:11:49 +0100223static void write_inter_singleref_comp_mode(MACROBLOCKD *xd, aom_writer *w,
Zoe Liu85b66462017-04-20 14:28:19 -0700224 PREDICTION_MODE mode,
225 const int16_t mode_ctx) {
226 assert(is_inter_singleref_comp_mode(mode));
Thomas Daviesb8b14a92017-07-12 15:11:49 +0100227 aom_cdf_prob *const inter_singleref_comp_cdf =
228 xd->tile_ctx->inter_singleref_comp_mode_cdf[mode_ctx];
Zoe Liu85b66462017-04-20 14:28:19 -0700229
Thomas Daviesb8b14a92017-07-12 15:11:49 +0100230 aom_write_symbol(w, INTER_SINGLEREF_COMP_OFFSET(mode),
231 inter_singleref_comp_cdf, INTER_SINGLEREF_COMP_MODES);
Zoe Liu85b66462017-04-20 14:28:19 -0700232}
233#endif // CONFIG_COMPOUND_SINGLEREF
Yaowu Xuc27fc142016-08-22 16:08:15 -0700234
Yaowu Xuf883b422016-08-30 14:01:10 -0700235static void encode_unsigned_max(struct aom_write_bit_buffer *wb, int data,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700236 int max) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700237 aom_wb_write_literal(wb, data, get_unsigned_bits(max));
Yaowu Xuc27fc142016-08-22 16:08:15 -0700238}
239
Thomas Davies985bfc32017-06-27 16:51:26 +0100240static void write_tx_size_vartx(const AV1_COMMON *cm, MACROBLOCKD *xd,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700241 const MB_MODE_INFO *mbmi, TX_SIZE tx_size,
Jingning Han94d5bfc2016-10-21 10:14:36 -0700242 int depth, int blk_row, int blk_col,
243 aom_writer *w) {
Thomas Davies985bfc32017-06-27 16:51:26 +0100244#if CONFIG_NEW_MULTISYMBOL
245 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
246 (void)cm;
247#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700248 const int tx_row = blk_row >> 1;
249 const int tx_col = blk_col >> 1;
Jingning Hanf65b8702016-10-31 12:13:20 -0700250 const int max_blocks_high = max_block_high(xd, mbmi->sb_type, 0);
251 const int max_blocks_wide = max_block_wide(xd, mbmi->sb_type, 0);
252
Jingning Han331662e2017-05-30 17:03:32 -0700253 int ctx = txfm_partition_context(xd->above_txfm_context + blk_col,
254 xd->left_txfm_context + blk_row,
Jingning Hanc8b89362016-11-01 10:28:53 -0700255 mbmi->sb_type, tx_size);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700256
Yaowu Xuc27fc142016-08-22 16:08:15 -0700257 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return;
258
Jingning Han571189c2016-10-24 10:38:43 -0700259 if (depth == MAX_VARTX_DEPTH) {
Jingning Han331662e2017-05-30 17:03:32 -0700260 txfm_partition_update(xd->above_txfm_context + blk_col,
261 xd->left_txfm_context + blk_row, tx_size, tx_size);
Jingning Han94d5bfc2016-10-21 10:14:36 -0700262 return;
263 }
264
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000265 const int write_txfm_partition =
Yue Chend6bdd462017-07-19 16:05:43 -0700266#if CONFIG_RECT_TX_EXT
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000267 tx_size == mbmi->inter_tx_size[tx_row][tx_col] ||
268 mbmi->tx_size == quarter_txsize_lookup[mbmi->sb_type];
Yue Chend6bdd462017-07-19 16:05:43 -0700269#else
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000270 tx_size == mbmi->inter_tx_size[tx_row][tx_col];
Yue Chend6bdd462017-07-19 16:05:43 -0700271#endif
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000272 if (write_txfm_partition) {
Thomas Davies985bfc32017-06-27 16:51:26 +0100273#if CONFIG_NEW_MULTISYMBOL
274 aom_write_symbol(w, 0, ec_ctx->txfm_partition_cdf[ctx], 2);
275#else
Yaowu Xuf883b422016-08-30 14:01:10 -0700276 aom_write(w, 0, cm->fc->txfm_partition_prob[ctx]);
Thomas Davies985bfc32017-06-27 16:51:26 +0100277#endif
278
Jingning Han331662e2017-05-30 17:03:32 -0700279 txfm_partition_update(xd->above_txfm_context + blk_col,
280 xd->left_txfm_context + blk_row, tx_size, tx_size);
Yue Chend6bdd462017-07-19 16:05:43 -0700281 // TODO(yuec): set correct txfm partition update for qttx
Yaowu Xuc27fc142016-08-22 16:08:15 -0700282 } else {
Jingning Hanf64062f2016-11-02 16:22:18 -0700283 const TX_SIZE sub_txs = sub_tx_size_map[tx_size];
284 const int bsl = tx_size_wide_unit[sub_txs];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700285 int i;
Jingning Hanf64062f2016-11-02 16:22:18 -0700286
Thomas Davies985bfc32017-06-27 16:51:26 +0100287#if CONFIG_NEW_MULTISYMBOL
288 aom_write_symbol(w, 1, ec_ctx->txfm_partition_cdf[ctx], 2);
289#else
Yaowu Xuf883b422016-08-30 14:01:10 -0700290 aom_write(w, 1, cm->fc->txfm_partition_prob[ctx]);
Thomas Davies985bfc32017-06-27 16:51:26 +0100291#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700292
David Barker16c64e32017-08-23 16:54:59 +0100293 if (sub_txs == TX_4X4) {
Jingning Han331662e2017-05-30 17:03:32 -0700294 txfm_partition_update(xd->above_txfm_context + blk_col,
295 xd->left_txfm_context + blk_row, sub_txs, tx_size);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700296 return;
297 }
298
299 assert(bsl > 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700300 for (i = 0; i < 4; ++i) {
Jingning Hanf64062f2016-11-02 16:22:18 -0700301 int offsetr = blk_row + (i >> 1) * bsl;
302 int offsetc = blk_col + (i & 0x01) * bsl;
303 write_tx_size_vartx(cm, xd, mbmi, sub_txs, depth + 1, offsetr, offsetc,
304 w);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700305 }
306 }
307}
308
Thomas Davies985bfc32017-06-27 16:51:26 +0100309#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuf883b422016-08-30 14:01:10 -0700310static void update_txfm_partition_probs(AV1_COMMON *cm, aom_writer *w,
Thomas Davies80188d12016-10-26 16:08:35 -0700311 FRAME_COUNTS *counts, int probwt) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700312 int k;
313 for (k = 0; k < TXFM_PARTITION_CONTEXTS; ++k)
Yaowu Xuf883b422016-08-30 14:01:10 -0700314 av1_cond_prob_diff_update(w, &cm->fc->txfm_partition_prob[k],
Thomas Davies80188d12016-10-26 16:08:35 -0700315 counts->txfm_partition[k], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700316}
Thomas Davies985bfc32017-06-27 16:51:26 +0100317#endif // CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -0700318
Yaowu Xuf883b422016-08-30 14:01:10 -0700319static void write_selected_tx_size(const AV1_COMMON *cm, const MACROBLOCKD *xd,
320 aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700321 const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
322 const BLOCK_SIZE bsize = mbmi->sb_type;
Thomas Davies15580c52017-03-09 13:53:42 +0000323 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
324 (void)cm;
Rupert Swarbrickfcff0b22017-10-05 09:26:04 +0100325 if (block_signals_txsize(bsize)) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700326 const TX_SIZE tx_size = mbmi->tx_size;
327 const int is_inter = is_inter_block(mbmi);
Urvang Joshiab8840e2017-10-06 16:38:24 -0700328 const int tx_size_ctx = get_tx_size_context(xd);
329 const int32_t tx_size_cat = is_inter ? inter_tx_size_cat_lookup[bsize]
Urvang Joshi9752a2e2017-10-02 17:32:27 -0700330 : intra_tx_size_cat_lookup[bsize];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700331 const TX_SIZE coded_tx_size = txsize_sqr_up_map[tx_size];
Jingning Han4e1737a2016-10-25 16:05:02 -0700332 const int depth = tx_size_to_depth(coded_tx_size);
Yue Chen49587a72016-09-28 17:09:47 -0700333 assert(IMPLIES(is_rect_tx(tx_size), is_rect_tx_allowed(xd, mbmi)));
Yaowu Xuc27fc142016-08-22 16:08:15 -0700334
Thomas Davies15580c52017-03-09 13:53:42 +0000335 aom_write_symbol(w, depth, ec_ctx->tx_size_cdf[tx_size_cat][tx_size_ctx],
Nathan E. Egge2ea519e2017-02-16 18:18:15 -0500336 tx_size_cat + 2);
Sebastien Alaiwanfb838772017-10-24 12:02:54 +0200337#if CONFIG_RECT_TX_EXT
Yue Chen56e226e2017-05-02 16:21:40 -0700338 if (is_quarter_tx_allowed(xd, mbmi, is_inter) && tx_size != coded_tx_size)
Thomas Daviese3f69782017-10-03 10:43:17 +0100339#if CONFIG_NEW_MULTISYMBOL
340 aom_write_symbol(w, tx_size == quarter_txsize_lookup[bsize],
341 cm->fc->quarter_tx_size_cdf, 2);
342#else
Yue Chen56e226e2017-05-02 16:21:40 -0700343 aom_write(w, tx_size == quarter_txsize_lookup[bsize],
344 cm->fc->quarter_tx_size_prob);
Yue Chend6bdd462017-07-19 16:05:43 -0700345#endif
Thomas Daviese3f69782017-10-03 10:43:17 +0100346#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700347 }
348}
349
Thomas Davies149eda52017-06-12 18:11:55 +0100350#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuf883b422016-08-30 14:01:10 -0700351static void update_inter_mode_probs(AV1_COMMON *cm, aom_writer *w,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700352 FRAME_COUNTS *counts) {
353 int i;
Thomas Davies80188d12016-10-26 16:08:35 -0700354 const int probwt = cm->num_tg;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700355 for (i = 0; i < NEWMV_MODE_CONTEXTS; ++i)
Thomas Davies80188d12016-10-26 16:08:35 -0700356 av1_cond_prob_diff_update(w, &cm->fc->newmv_prob[i], counts->newmv_mode[i],
357 probwt);
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700358 for (i = 0; i < GLOBALMV_MODE_CONTEXTS; ++i)
Yaowu Xuf883b422016-08-30 14:01:10 -0700359 av1_cond_prob_diff_update(w, &cm->fc->zeromv_prob[i],
Thomas Davies80188d12016-10-26 16:08:35 -0700360 counts->zeromv_mode[i], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700361 for (i = 0; i < REFMV_MODE_CONTEXTS; ++i)
Thomas Davies80188d12016-10-26 16:08:35 -0700362 av1_cond_prob_diff_update(w, &cm->fc->refmv_prob[i], counts->refmv_mode[i],
363 probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700364 for (i = 0; i < DRL_MODE_CONTEXTS; ++i)
Thomas Davies80188d12016-10-26 16:08:35 -0700365 av1_cond_prob_diff_update(w, &cm->fc->drl_prob[i], counts->drl_mode[i],
366 probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700367}
Thomas Davies149eda52017-06-12 18:11:55 +0100368#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700369
Yaowu Xuf883b422016-08-30 14:01:10 -0700370static int write_skip(const AV1_COMMON *cm, const MACROBLOCKD *xd,
371 int segment_id, const MODE_INFO *mi, aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700372 if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) {
373 return 1;
374 } else {
375 const int skip = mi->mbmi.skip;
Zoe Liue646daa2017-10-17 15:28:46 -0700376 const int ctx = av1_get_skip_context(xd);
Thomas Davies61e3e372017-04-04 16:10:23 +0100377#if CONFIG_NEW_MULTISYMBOL
378 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Thomas Davies61e3e372017-04-04 16:10:23 +0100379 aom_write_symbol(w, skip, ec_ctx->skip_cdfs[ctx], 2);
380#else
Zoe Liue646daa2017-10-17 15:28:46 -0700381 aom_write(w, skip, cm->fc->skip_probs[ctx]);
Thomas Davies61e3e372017-04-04 16:10:23 +0100382#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700383 return skip;
384 }
385}
386
Thomas Daviesf6ad9352017-04-19 11:38:06 +0100387static void write_is_inter(const AV1_COMMON *cm, const MACROBLOCKD *xd,
388 int segment_id, aom_writer *w, const int is_inter) {
389 if (!segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) {
Yue Chen170678a2017-10-17 13:43:10 -0700390 const int ctx = av1_get_intra_inter_context(xd);
Thomas Daviesf6ad9352017-04-19 11:38:06 +0100391#if CONFIG_NEW_MULTISYMBOL
392 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Thomas Daviesf6ad9352017-04-19 11:38:06 +0100393 aom_write_symbol(w, is_inter, ec_ctx->intra_inter_cdf[ctx], 2);
394#else
Yue Chen170678a2017-10-17 13:43:10 -0700395 aom_write(w, is_inter, cm->fc->intra_inter_prob[ctx]);
Thomas Daviesf6ad9352017-04-19 11:38:06 +0100396#endif
397 }
398}
399
Thomas Daviesd9b57262017-06-27 17:43:25 +0100400static void write_motion_mode(const AV1_COMMON *cm, MACROBLOCKD *xd,
401 const MODE_INFO *mi, aom_writer *w) {
Sarah Parker19234cc2017-03-10 16:43:25 -0800402 const MB_MODE_INFO *mbmi = &mi->mbmi;
Thomas Daviesd9b57262017-06-27 17:43:25 +0100403
Sebastien Alaiwan48795802017-10-30 12:07:13 +0100404 MOTION_MODE last_motion_mode_allowed =
Sebastien Alaiwan1f56b8e2017-10-31 17:37:16 +0100405 motion_mode_allowed(0, cm->global_motion, xd, mi);
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000406 switch (last_motion_mode_allowed) {
407 case SIMPLE_TRANSLATION: break;
Wei-Ting Lin07ed3ab2017-08-28 17:50:25 -0700408#if CONFIG_NCOBMC_ADAPT_WEIGHT
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000409 case NCOBMC_ADAPT_WEIGHT:
410 aom_write_symbol(w, mbmi->motion_mode,
411 xd->tile_ctx->ncobmc_cdf[mbmi->sb_type],
412 OBMC_FAMILY_MODES);
413 break;
Thomas Daviesd9b57262017-06-27 17:43:25 +0100414#endif
Rupert Swarbrickcf772762017-11-03 16:41:07 +0000415 case OBMC_CAUSAL:
416#if CONFIG_NEW_MULTISYMBOL
417 aom_write_symbol(w, mbmi->motion_mode == OBMC_CAUSAL,
418 xd->tile_ctx->obmc_cdf[mbmi->sb_type], 2);
419#else
420 aom_write(w, mbmi->motion_mode == OBMC_CAUSAL,
421 cm->fc->obmc_prob[mbmi->sb_type]);
422#endif
423 break;
424
425 default:
426 aom_write_symbol(w, mbmi->motion_mode,
427 xd->tile_ctx->motion_mode_cdf[mbmi->sb_type],
428 MOTION_MODES);
Yue Chen69f18e12016-09-08 14:48:15 -0700429 }
Yue Chen69f18e12016-09-08 14:48:15 -0700430}
Wei-Ting Lin85a8f702017-06-22 13:55:15 -0700431
432#if CONFIG_NCOBMC_ADAPT_WEIGHT
Wei-Ting Linca710d62017-07-13 11:41:02 -0700433static void write_ncobmc_mode(MACROBLOCKD *xd, const MODE_INFO *mi,
Wei-Ting Lin85a8f702017-06-22 13:55:15 -0700434 aom_writer *w) {
435 const MB_MODE_INFO *mbmi = &mi->mbmi;
436 ADAPT_OVERLAP_BLOCK ao_block = adapt_overlap_block_lookup[mbmi->sb_type];
Wei-Ting Lin77c41182017-07-12 15:58:35 -0700437 if (mbmi->motion_mode != NCOBMC_ADAPT_WEIGHT) return;
Wei-Ting Lin85a8f702017-06-22 13:55:15 -0700438
Wei-Ting Linca710d62017-07-13 11:41:02 -0700439 aom_write_symbol(w, mbmi->ncobmc_mode[0],
440 xd->tile_ctx->ncobmc_mode_cdf[ao_block], MAX_NCOBMC_MODES);
Wei-Ting Lin85a8f702017-06-22 13:55:15 -0700441 if (mi_size_wide[mbmi->sb_type] != mi_size_high[mbmi->sb_type]) {
Wei-Ting Linca710d62017-07-13 11:41:02 -0700442 aom_write_symbol(w, mbmi->ncobmc_mode[1],
443 xd->tile_ctx->ncobmc_mode_cdf[ao_block], MAX_NCOBMC_MODES);
Wei-Ting Lin85a8f702017-06-22 13:55:15 -0700444 }
445}
446#endif
Yue Chen69f18e12016-09-08 14:48:15 -0700447
Thomas Daviesd6ee8a82017-03-02 14:42:50 +0000448static void write_delta_qindex(const AV1_COMMON *cm, const MACROBLOCKD *xd,
449 int delta_qindex, aom_writer *w) {
Arild Fuldseth07441162016-08-15 15:07:52 +0200450 int sign = delta_qindex < 0;
451 int abs = sign ? -delta_qindex : delta_qindex;
Thomas Daviesd6ee8a82017-03-02 14:42:50 +0000452 int rem_bits, thr;
Thomas Daviesf6936102016-09-05 16:51:31 +0100453 int smallval = abs < DELTA_Q_SMALL ? 1 : 0;
Thomas Daviesd6ee8a82017-03-02 14:42:50 +0000454 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
455 (void)cm;
Thomas Daviesf6936102016-09-05 16:51:31 +0100456
Thomas Daviesd6ee8a82017-03-02 14:42:50 +0000457 aom_write_symbol(w, AOMMIN(abs, DELTA_Q_SMALL), ec_ctx->delta_q_cdf,
458 DELTA_Q_PROBS + 1);
Thomas Daviesf6936102016-09-05 16:51:31 +0100459
460 if (!smallval) {
461 rem_bits = OD_ILOG_NZ(abs - 1) - 1;
462 thr = (1 << rem_bits) + 1;
Thomas Davies3b93e8e2017-09-20 09:59:07 +0100463 aom_write_literal(w, rem_bits - 1, 3);
Thomas Daviesf6936102016-09-05 16:51:31 +0100464 aom_write_literal(w, abs - thr, rem_bits);
Arild Fuldseth07441162016-08-15 15:07:52 +0200465 }
466 if (abs > 0) {
467 aom_write_bit(w, sign);
468 }
469}
Thomas Daviesf6936102016-09-05 16:51:31 +0100470
Fangwen Fu231fe422017-04-24 17:52:29 -0700471#if CONFIG_EXT_DELTA_Q
472static void write_delta_lflevel(const AV1_COMMON *cm, const MACROBLOCKD *xd,
Cheng Chena97394f2017-09-27 15:05:14 -0700473#if CONFIG_LOOPFILTER_LEVEL
474 int lf_id,
475#endif
Fangwen Fu231fe422017-04-24 17:52:29 -0700476 int delta_lflevel, aom_writer *w) {
477 int sign = delta_lflevel < 0;
478 int abs = sign ? -delta_lflevel : delta_lflevel;
479 int rem_bits, thr;
480 int smallval = abs < DELTA_LF_SMALL ? 1 : 0;
Fangwen Fu231fe422017-04-24 17:52:29 -0700481 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
482 (void)cm;
Fangwen Fu231fe422017-04-24 17:52:29 -0700483
Cheng Chena97394f2017-09-27 15:05:14 -0700484#if CONFIG_LOOPFILTER_LEVEL
Cheng Chen880166a2017-10-02 17:48:48 -0700485 if (cm->delta_lf_multi) {
486 assert(lf_id >= 0 && lf_id < FRAME_LF_COUNT);
487 aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL),
488 ec_ctx->delta_lf_multi_cdf[lf_id], DELTA_LF_PROBS + 1);
489 } else {
490 aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf,
491 DELTA_LF_PROBS + 1);
492 }
Cheng Chena97394f2017-09-27 15:05:14 -0700493#else
Fangwen Fu231fe422017-04-24 17:52:29 -0700494 aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf,
495 DELTA_LF_PROBS + 1);
Cheng Chena97394f2017-09-27 15:05:14 -0700496#endif // CONFIG_LOOPFILTER_LEVEL
Fangwen Fu231fe422017-04-24 17:52:29 -0700497
498 if (!smallval) {
499 rem_bits = OD_ILOG_NZ(abs - 1) - 1;
500 thr = (1 << rem_bits) + 1;
Thomas Davies3b93e8e2017-09-20 09:59:07 +0100501 aom_write_literal(w, rem_bits - 1, 3);
Fangwen Fu231fe422017-04-24 17:52:29 -0700502 aom_write_literal(w, abs - thr, rem_bits);
503 }
504 if (abs > 0) {
505 aom_write_bit(w, sign);
506 }
507}
Fangwen Fu231fe422017-04-24 17:52:29 -0700508#endif // CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +0200509
Thomas Davies61e3e372017-04-04 16:10:23 +0100510#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuf883b422016-08-30 14:01:10 -0700511static void update_skip_probs(AV1_COMMON *cm, aom_writer *w,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700512 FRAME_COUNTS *counts) {
513 int k;
Thomas Davies80188d12016-10-26 16:08:35 -0700514 const int probwt = cm->num_tg;
Thomas Davies80188d12016-10-26 16:08:35 -0700515 for (k = 0; k < SKIP_CONTEXTS; ++k) {
516 av1_cond_prob_diff_update(w, &cm->fc->skip_probs[k], counts->skip[k],
517 probwt);
518 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700519}
Thomas Davies61e3e372017-04-04 16:10:23 +0100520#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700521
Sarah Parker99e7daa2017-08-29 10:30:13 -0700522static void pack_map_tokens(aom_writer *w, const TOKENEXTRA **tp, int n,
523 int num) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700524 const TOKENEXTRA *p = *tp;
hui su40b9e7f2017-07-13 18:15:56 -0700525 write_uniform(w, n, p->token); // The first color index.
526 ++p;
527 --num;
528 for (int i = 0; i < num; ++i) {
Sarah Parker0cf4d9f2017-08-18 13:09:14 -0700529 aom_write_symbol(w, p->token, p->color_map_cdf, n);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700530 ++p;
531 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700532 *tp = p;
533}
Yaowu Xuc27fc142016-08-22 16:08:15 -0700534
James Zern35545dd2017-08-25 18:48:02 -0700535#if !CONFIG_LV_MAP
Thomas Davies9b8393f2017-03-21 11:04:08 +0000536#if CONFIG_NEW_MULTISYMBOL
537static INLINE void write_coeff_extra(const aom_cdf_prob *const *cdf, int val,
538 int n, aom_writer *w) {
539 // Code the extra bits from LSB to MSB in groups of 4
540 int i = 0;
541 int count = 0;
542 while (count < n) {
543 const int size = AOMMIN(n - count, 4);
544 const int mask = (1 << size) - 1;
545 aom_write_cdf(w, val & mask, cdf[i++], 1 << size);
546 val >>= size;
547 count += size;
548 }
549}
550#else
551static INLINE void write_coeff_extra(const aom_prob *pb, int value,
552 int num_bits, int skip_bits, aom_writer *w,
553 TOKEN_STATS *token_stats) {
554 // Code the extra bits from MSB to LSB 1 bit at a time
555 int index;
556 for (index = skip_bits; index < num_bits; ++index) {
557 const int shift = num_bits - index - 1;
558 const int bb = (value >> shift) & 1;
559 aom_write_record(w, bb, pb[index], token_stats);
560 }
561}
James Zern35545dd2017-08-25 18:48:02 -0700562#endif // CONFIG_NEW_MULTISYMBOL
Thomas Davies9b8393f2017-03-21 11:04:08 +0000563
Yaowu Xuf883b422016-08-30 14:01:10 -0700564static void pack_mb_tokens(aom_writer *w, const TOKENEXTRA **tp,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700565 const TOKENEXTRA *const stop,
Angie Chiangd4022822016-11-02 18:30:25 -0700566 aom_bit_depth_t bit_depth, const TX_SIZE tx_size,
Sarah Parker99e7daa2017-08-29 10:30:13 -0700567#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
568 TX_TYPE tx_type, int is_inter,
569#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
Angie Chiangd4022822016-11-02 18:30:25 -0700570 TOKEN_STATS *token_stats) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700571 const TOKENEXTRA *p = *tp;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700572 int count = 0;
Jingning Han7e992972016-10-31 11:03:06 -0700573 const int seg_eob = tx_size_2d[tx_size];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700574
Sarah Parker99e7daa2017-08-29 10:30:13 -0700575#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
576 if (tx_type == MRC_DCT && ((is_inter && SIGNAL_MRC_MASK_INTER) ||
577 (!is_inter && SIGNAL_MRC_MASK_INTRA))) {
578 int rows = tx_size_high[tx_size];
579 int cols = tx_size_wide[tx_size];
580 assert(tx_size == TX_32X32);
581 assert(p < stop);
582 pack_map_tokens(w, &p, 2, rows * cols);
583 }
584#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
585
Yaowu Xuc27fc142016-08-22 16:08:15 -0700586 while (p < stop && p->token != EOSB_TOKEN) {
Urvang Joshi454280d2016-10-14 16:51:44 -0700587 const int token = p->token;
Yaowu Xuabe52152017-10-20 14:37:54 -0700588 const int8_t eob_val = p->eob_val;
Thomas Daviesfc1598a2017-01-13 17:07:25 +0000589 if (token == BLOCK_Z_TOKEN) {
Thomas Davies1c05c632017-03-15 09:58:34 +0000590 aom_write_symbol(w, 0, *p->head_cdf, HEAD_TOKENS + 1);
Thomas Daviesfc1598a2017-01-13 17:07:25 +0000591 p++;
Jingning Han0481e8b2017-05-27 08:10:17 -0700592 break;
Thomas Daviesfc1598a2017-01-13 17:07:25 +0000593 continue;
594 }
Yaowu Xuc8ab0bc2017-04-11 21:53:22 -0700595
596 const av1_extra_bit *const extra_bits = &av1_extra_bits[token];
Jingning Han24b15c92017-05-17 15:56:48 -0700597 if (eob_val == LAST_EOB) {
Thomas Davies04bdd522017-03-13 22:34:14 +0000598 // Just code a flag indicating whether the value is >1 or 1.
599 aom_write_bit(w, token != ONE_TOKEN);
600 } else {
Jingning Han24b15c92017-05-17 15:56:48 -0700601 int comb_symb = 2 * AOMMIN(token, TWO_TOKEN) - eob_val + p->first_val;
Thomas Davies1c05c632017-03-15 09:58:34 +0000602 aom_write_symbol(w, comb_symb, *p->head_cdf, HEAD_TOKENS + p->first_val);
Thomas Davies04bdd522017-03-13 22:34:14 +0000603 }
Thomas Daviesfc1598a2017-01-13 17:07:25 +0000604 if (token > ONE_TOKEN) {
Thomas Davies1c05c632017-03-15 09:58:34 +0000605 aom_write_symbol(w, token - TWO_TOKEN, *p->tail_cdf, TAIL_TOKENS);
Alex Conversedc62b092016-10-11 16:50:56 -0700606 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700607
Alex Conversed8fdfaa2016-07-26 16:27:51 -0700608 if (extra_bits->base_val) {
609 const int bit_string = p->extra;
610 const int bit_string_length = extra_bits->len; // Length of extra bits to
Thomas Davies9b8393f2017-03-21 11:04:08 +0000611 const int is_cat6 = (extra_bits->base_val == CAT6_MIN_VAL);
Thomas Daviesfc1598a2017-01-13 17:07:25 +0000612 // be written excluding
613 // the sign bit.
Thomas Davies9b8393f2017-03-21 11:04:08 +0000614 int skip_bits = is_cat6
Alex Converseda3d94f2017-03-15 14:54:29 -0700615 ? (int)sizeof(av1_cat6_prob) -
616 av1_get_cat6_extrabits_size(tx_size, bit_depth)
617 : 0;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700618
Thomas Davies9b8393f2017-03-21 11:04:08 +0000619 assert(!(bit_string >> (bit_string_length - skip_bits + 1)));
620 if (bit_string_length > 0)
621#if CONFIG_NEW_MULTISYMBOL
622 write_coeff_extra(extra_bits->cdf, bit_string >> 1,
623 bit_string_length - skip_bits, w);
624#else
625 write_coeff_extra(extra_bits->prob, bit_string >> 1, bit_string_length,
626 skip_bits, w, token_stats);
627#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700628
Angie Chiangd4022822016-11-02 18:30:25 -0700629 aom_write_bit_record(w, bit_string & 1, token_stats);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700630 }
631 ++p;
632
Yaowu Xuc27fc142016-08-22 16:08:15 -0700633 ++count;
Jingning Han24b15c92017-05-17 15:56:48 -0700634 if (eob_val == EARLY_EOB || count == seg_eob) break;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700635 }
636
637 *tp = p;
638}
Angie Chiangc8af6112017-03-16 16:11:22 -0700639#endif // !CONFIG_LV_MAP
Yushin Cho258a0242017-03-06 13:53:01 -0800640
Jingning Han4fe5f672017-05-19 15:46:07 -0700641#if CONFIG_LV_MAP
Jingning Hana2285692017-10-25 15:14:31 -0700642static void pack_txb_tokens(aom_writer *w, AV1_COMMON *cm, MACROBLOCK *const x,
Jingning Han4fe5f672017-05-19 15:46:07 -0700643 const TOKENEXTRA **tp,
Jingning Hana2285692017-10-25 15:14:31 -0700644 const TOKENEXTRA *const tok_end, MACROBLOCKD *xd,
645 MB_MODE_INFO *mbmi, int plane,
Jingning Han4fe5f672017-05-19 15:46:07 -0700646 BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth,
647 int block, int blk_row, int blk_col,
648 TX_SIZE tx_size, TOKEN_STATS *token_stats) {
649 const struct macroblockd_plane *const pd = &xd->plane[plane];
650 const BLOCK_SIZE bsize = txsize_to_bsize[tx_size];
651 const int tx_row = blk_row >> (1 - pd->subsampling_y);
652 const int tx_col = blk_col >> (1 - pd->subsampling_x);
653 TX_SIZE plane_tx_size;
654 const int max_blocks_high = max_block_high(xd, plane_bsize, plane);
655 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane);
656
657 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return;
658
659 plane_tx_size =
660 plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0]
661 : mbmi->inter_tx_size[tx_row][tx_col];
662
663 if (tx_size == plane_tx_size) {
664 TOKEN_STATS tmp_token_stats;
665 init_token_stats(&tmp_token_stats);
666
Jingning Han4fe5f672017-05-19 15:46:07 -0700667 tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block);
668 uint16_t eob = x->mbmi_ext->eobs[plane][block];
669 TXB_CTX txb_ctx = { x->mbmi_ext->txb_skip_ctx[plane][block],
670 x->mbmi_ext->dc_sign_ctx[plane][block] };
Jingning Han7eab9ff2017-07-06 10:12:54 -0700671 av1_write_coeffs_txb(cm, xd, w, blk_row, blk_col, block, plane, tx_size,
672 tcoeff, eob, &txb_ctx);
Jingning Han4fe5f672017-05-19 15:46:07 -0700673#if CONFIG_RD_DEBUG
674 token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost;
675 token_stats->cost += tmp_token_stats.cost;
676#endif
677 } else {
678 const TX_SIZE sub_txs = sub_tx_size_map[tx_size];
679 const int bsl = tx_size_wide_unit[sub_txs];
680 int i;
681
682 assert(bsl > 0);
683
684 for (i = 0; i < 4; ++i) {
685 const int offsetr = blk_row + (i >> 1) * bsl;
686 const int offsetc = blk_col + (i & 0x01) * bsl;
687 const int step = tx_size_wide_unit[sub_txs] * tx_size_high_unit[sub_txs];
688
689 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue;
690
Jingning Hana2285692017-10-25 15:14:31 -0700691 pack_txb_tokens(w, cm, x, tp, tok_end, xd, mbmi, plane, plane_bsize,
692 bit_depth, block, offsetr, offsetc, sub_txs, token_stats);
Jingning Han4fe5f672017-05-19 15:46:07 -0700693 block += step;
694 }
695 }
696}
697#else // CONFIG_LV_MAP
Yaowu Xuf883b422016-08-30 14:01:10 -0700698static void pack_txb_tokens(aom_writer *w, const TOKENEXTRA **tp,
Yushin Chod0b77ac2017-10-20 17:33:16 -0700699 const TOKENEXTRA *const tok_end, MACROBLOCKD *xd,
700 MB_MODE_INFO *mbmi, int plane,
Yaowu Xuf883b422016-08-30 14:01:10 -0700701 BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth,
Yaowu Xuc27fc142016-08-22 16:08:15 -0700702 int block, int blk_row, int blk_col,
Angie Chiangd4022822016-11-02 18:30:25 -0700703 TX_SIZE tx_size, TOKEN_STATS *token_stats) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700704 const struct macroblockd_plane *const pd = &xd->plane[plane];
705 const BLOCK_SIZE bsize = txsize_to_bsize[tx_size];
706 const int tx_row = blk_row >> (1 - pd->subsampling_y);
707 const int tx_col = blk_col >> (1 - pd->subsampling_x);
708 TX_SIZE plane_tx_size;
Jingning Hanf65b8702016-10-31 12:13:20 -0700709 const int max_blocks_high = max_block_high(xd, plane_bsize, plane);
710 const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane);
Sarah Parker99e7daa2017-08-29 10:30:13 -0700711#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
712 TX_TYPE tx_type = av1_get_tx_type(plane ? PLANE_TYPE_UV : PLANE_TYPE_Y, xd,
713 blk_row, blk_col, block, tx_size);
714#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
Yaowu Xuc27fc142016-08-22 16:08:15 -0700715
716 if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return;
717
Debargha Mukherjee2f123402016-08-30 17:43:38 -0700718 plane_tx_size =
719 plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0]
720 : mbmi->inter_tx_size[tx_row][tx_col];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700721
722 if (tx_size == plane_tx_size) {
Angie Chiangd02001d2016-11-06 15:31:49 -0800723 TOKEN_STATS tmp_token_stats;
724 init_token_stats(&tmp_token_stats);
Sarah Parker99e7daa2017-08-29 10:30:13 -0700725 pack_mb_tokens(w, tp, tok_end, bit_depth, tx_size,
726#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
727 tx_type, is_inter_block(mbmi),
728#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
729 &tmp_token_stats);
Angie Chiangd02001d2016-11-06 15:31:49 -0800730#if CONFIG_RD_DEBUG
731 token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost;
732 token_stats->cost += tmp_token_stats.cost;
733#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700734 } else {
Yue Chend6bdd462017-07-19 16:05:43 -0700735#if CONFIG_RECT_TX_EXT
736 int is_qttx = plane_tx_size == quarter_txsize_lookup[plane_bsize];
737 const TX_SIZE sub_txs = is_qttx ? plane_tx_size : sub_tx_size_map[tx_size];
738#else
Jingning Han1807fdc2016-11-08 15:17:58 -0800739 const TX_SIZE sub_txs = sub_tx_size_map[tx_size];
Yue Chend6bdd462017-07-19 16:05:43 -0700740#endif
Jingning Han1807fdc2016-11-08 15:17:58 -0800741 const int bsl = tx_size_wide_unit[sub_txs];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700742 int i;
743
744 assert(bsl > 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700745
746 for (i = 0; i < 4; ++i) {
Yue Chend6bdd462017-07-19 16:05:43 -0700747#if CONFIG_RECT_TX_EXT
748 int is_wide_tx = tx_size_wide_unit[sub_txs] > tx_size_high_unit[sub_txs];
749 const int offsetr =
750 is_qttx ? (is_wide_tx ? i * tx_size_high_unit[sub_txs] : 0)
751 : blk_row + (i >> 1) * bsl;
752 const int offsetc =
753 is_qttx ? (is_wide_tx ? 0 : i * tx_size_wide_unit[sub_txs])
754 : blk_col + (i & 0x01) * bsl;
755#else
Jingning Han42a0fb32016-10-31 10:43:31 -0700756 const int offsetr = blk_row + (i >> 1) * bsl;
757 const int offsetc = blk_col + (i & 0x01) * bsl;
Yue Chend6bdd462017-07-19 16:05:43 -0700758#endif
Jingning Han42a0fb32016-10-31 10:43:31 -0700759 const int step = tx_size_wide_unit[sub_txs] * tx_size_high_unit[sub_txs];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700760
761 if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue;
762
Yushin Chod0b77ac2017-10-20 17:33:16 -0700763 pack_txb_tokens(w, tp, tok_end, xd, mbmi, plane, plane_bsize, bit_depth,
764 block, offsetr, offsetc, sub_txs, token_stats);
Jingning Han98d6a1f2016-11-03 12:47:47 -0700765 block += step;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700766 }
767 }
768}
Jingning Han4fe5f672017-05-19 15:46:07 -0700769#endif // CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -0700770
Yaowu Xuf883b422016-08-30 14:01:10 -0700771static void write_segment_id(aom_writer *w, const struct segmentation *seg,
Thomas9ac55082016-09-23 18:04:17 +0100772 struct segmentation_probs *segp, int segment_id) {
Nathan E. Eggef627e582016-08-19 20:06:51 -0400773 if (seg->enabled && seg->update_map) {
Nathan E. Eggef627e582016-08-19 20:06:51 -0400774 aom_write_symbol(w, segment_id, segp->tree_cdf, MAX_SEGMENTS);
Nathan E. Eggef627e582016-08-19 20:06:51 -0400775 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700776}
777
Thomas Davies315f5782017-06-14 15:14:55 +0100778#if CONFIG_NEW_MULTISYMBOL
779#define WRITE_REF_BIT(bname, pname) \
Thomas Davies894cc812017-06-22 17:51:33 +0100780 aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(cm, xd), 2)
Thomas Davies0fbd2b72017-09-12 10:49:45 +0100781#define WRITE_REF_BIT2(bname, pname) \
782 aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(xd), 2)
Thomas Davies315f5782017-06-14 15:14:55 +0100783#else
784#define WRITE_REF_BIT(bname, pname) \
785 aom_write(w, bname, av1_get_pred_prob_##pname(cm, xd))
Thomas Davies0fbd2b72017-09-12 10:49:45 +0100786#define WRITE_REF_BIT2(bname, pname) \
787 aom_write(w, bname, av1_get_pred_prob_##pname(cm, xd))
Thomas Davies315f5782017-06-14 15:14:55 +0100788#endif
789
Yaowu Xuc27fc142016-08-22 16:08:15 -0700790// This function encodes the reference frame
Yaowu Xuf883b422016-08-30 14:01:10 -0700791static void write_ref_frames(const AV1_COMMON *cm, const MACROBLOCKD *xd,
792 aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700793 const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
794 const int is_compound = has_second_ref(mbmi);
795 const int segment_id = mbmi->segment_id;
796
797 // If segment level coding of this signal is disabled...
798 // or the segment allows multiple reference frame options
799 if (segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) {
800 assert(!is_compound);
801 assert(mbmi->ref_frame[0] ==
802 get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME));
David Barkerd92f3562017-10-09 17:46:23 +0100803 }
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700804#if CONFIG_SEGMENT_GLOBALMV
David Barkerd92f3562017-10-09 17:46:23 +0100805 else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP) ||
Sarah Parker2b9ec2e2017-10-30 17:34:08 -0700806 segfeature_active(&cm->seg, segment_id, SEG_LVL_GLOBALMV))
David Barkerd92f3562017-10-09 17:46:23 +0100807#else
808 else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP))
809#endif
810 {
811 assert(!is_compound);
812 assert(mbmi->ref_frame[0] == LAST_FRAME);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700813 } else {
814 // does the feature use compound prediction or not
815 // (if not specified at the frame/segment level)
816 if (cm->reference_mode == REFERENCE_MODE_SELECT) {
Debargha Mukherjee0f248c42017-09-07 12:40:18 -0700817 if (is_comp_ref_allowed(mbmi->sb_type))
Thomas Davies860def62017-06-14 10:00:03 +0100818#if CONFIG_NEW_MULTISYMBOL
819 aom_write_symbol(w, is_compound, av1_get_reference_mode_cdf(cm, xd), 2);
820#else
Debargha Mukherjee0f248c42017-09-07 12:40:18 -0700821 aom_write(w, is_compound, av1_get_reference_mode_prob(cm, xd));
822#endif // CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -0700823 } else {
824 assert((!is_compound) == (cm->reference_mode == SINGLE_REFERENCE));
825 }
826
827 if (is_compound) {
Zoe Liuc082bbc2017-05-17 13:31:37 -0700828#if CONFIG_EXT_COMP_REFS
829 const COMP_REFERENCE_TYPE comp_ref_type = has_uni_comp_refs(mbmi)
830 ? UNIDIR_COMP_REFERENCE
831 : BIDIR_COMP_REFERENCE;
Thomas Davies0fbd2b72017-09-12 10:49:45 +0100832#if CONFIG_NEW_MULTISYMBOL
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100833 aom_write_symbol(w, comp_ref_type, av1_get_comp_reference_type_cdf(xd),
834 2);
Thomas Davies0fbd2b72017-09-12 10:49:45 +0100835#else
836 aom_write(w, comp_ref_type, av1_get_comp_reference_type_prob(cm, xd));
837#endif
Zoe Liuc082bbc2017-05-17 13:31:37 -0700838
839 if (comp_ref_type == UNIDIR_COMP_REFERENCE) {
840 const int bit = mbmi->ref_frame[0] == BWDREF_FRAME;
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100841 WRITE_REF_BIT2(bit, uni_comp_ref_p);
Zoe Liufcf5fa22017-06-26 16:00:38 -0700842
Zoe Liuc082bbc2017-05-17 13:31:37 -0700843 if (!bit) {
Zoe Liufcf5fa22017-06-26 16:00:38 -0700844 assert(mbmi->ref_frame[0] == LAST_FRAME);
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100845 const int bit1 = mbmi->ref_frame[1] == LAST3_FRAME ||
846 mbmi->ref_frame[1] == GOLDEN_FRAME;
847 WRITE_REF_BIT2(bit1, uni_comp_ref_p1);
848 if (bit1) {
849 const int bit2 = mbmi->ref_frame[1] == GOLDEN_FRAME;
850 WRITE_REF_BIT2(bit2, uni_comp_ref_p2);
Zoe Liufcf5fa22017-06-26 16:00:38 -0700851 }
Zoe Liufcf5fa22017-06-26 16:00:38 -0700852 } else {
853 assert(mbmi->ref_frame[1] == ALTREF_FRAME);
Zoe Liuc082bbc2017-05-17 13:31:37 -0700854 }
855
856 return;
857 }
Zoe Liufcf5fa22017-06-26 16:00:38 -0700858
859 assert(comp_ref_type == BIDIR_COMP_REFERENCE);
Zoe Liuc082bbc2017-05-17 13:31:37 -0700860#endif // CONFIG_EXT_COMP_REFS
861
Yaowu Xuc27fc142016-08-22 16:08:15 -0700862 const int bit = (mbmi->ref_frame[0] == GOLDEN_FRAME ||
863 mbmi->ref_frame[0] == LAST3_FRAME);
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100864 WRITE_REF_BIT(bit, comp_ref_p);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700865
Yaowu Xuc27fc142016-08-22 16:08:15 -0700866 if (!bit) {
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100867 const int bit1 = mbmi->ref_frame[0] == LAST_FRAME;
868 WRITE_REF_BIT(bit1, comp_ref_p1);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700869 } else {
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100870 const int bit2 = mbmi->ref_frame[0] == GOLDEN_FRAME;
871 WRITE_REF_BIT(bit2, comp_ref_p2);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700872 }
Zoe Liu7b1ec7a2017-05-24 22:28:24 -0700873
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100874 const int bit_bwd = mbmi->ref_frame[1] == ALTREF_FRAME;
875 WRITE_REF_BIT(bit_bwd, comp_bwdref_p);
Zoe Liue9b15e22017-07-19 15:53:01 -0700876
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100877 if (!bit_bwd) {
878 WRITE_REF_BIT(mbmi->ref_frame[1] == ALTREF2_FRAME, comp_bwdref_p1);
Zoe Liue9b15e22017-07-19 15:53:01 -0700879 }
Zoe Liue9b15e22017-07-19 15:53:01 -0700880
Yaowu Xuc27fc142016-08-22 16:08:15 -0700881 } else {
Zoe Liue9b15e22017-07-19 15:53:01 -0700882 const int bit0 = (mbmi->ref_frame[0] <= ALTREF_FRAME &&
883 mbmi->ref_frame[0] >= BWDREF_FRAME);
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100884 WRITE_REF_BIT(bit0, single_ref_p1);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700885
886 if (bit0) {
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100887 const int bit1 = mbmi->ref_frame[0] == ALTREF_FRAME;
888 WRITE_REF_BIT(bit1, single_ref_p2);
Zoe Liue9b15e22017-07-19 15:53:01 -0700889
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100890 if (!bit1) {
891 WRITE_REF_BIT(mbmi->ref_frame[0] == ALTREF2_FRAME, single_ref_p6);
Zoe Liue9b15e22017-07-19 15:53:01 -0700892 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700893 } else {
894 const int bit2 = (mbmi->ref_frame[0] == LAST3_FRAME ||
895 mbmi->ref_frame[0] == GOLDEN_FRAME);
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100896 WRITE_REF_BIT(bit2, single_ref_p3);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700897
898 if (!bit2) {
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100899 const int bit3 = mbmi->ref_frame[0] != LAST_FRAME;
900 WRITE_REF_BIT(bit3, single_ref_p4);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700901 } else {
Sebastien Alaiwan4be6cb32017-11-02 18:04:11 +0100902 const int bit4 = mbmi->ref_frame[0] != LAST3_FRAME;
903 WRITE_REF_BIT(bit4, single_ref_p5);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700904 }
905 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700906 }
907 }
908}
909
hui su5db97432016-10-14 16:10:14 -0700910#if CONFIG_FILTER_INTRA
911static void write_filter_intra_mode_info(const AV1_COMMON *const cm,
Jingning Han62946d12017-05-26 11:29:30 -0700912 const MACROBLOCKD *xd,
hui su5db97432016-10-14 16:10:14 -0700913 const MB_MODE_INFO *const mbmi,
914 aom_writer *w) {
Urvang Joshic6300aa2017-06-01 14:46:23 -0700915 if (mbmi->mode == DC_PRED && mbmi->palette_mode_info.palette_size[0] == 0) {
hui su5db97432016-10-14 16:10:14 -0700916 aom_write(w, mbmi->filter_intra_mode_info.use_filter_intra_mode[0],
917 cm->fc->filter_intra_probs[0]);
918 if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0]) {
919 const FILTER_INTRA_MODE mode =
920 mbmi->filter_intra_mode_info.filter_intra_mode[0];
Yue Chen63ce36f2017-10-10 23:37:31 -0700921 aom_write_symbol(w, mode, xd->tile_ctx->filter_intra_mode_cdf[0],
922 FILTER_INTRA_MODES);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700923 }
924 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700925}
hui su5db97432016-10-14 16:10:14 -0700926#endif // CONFIG_FILTER_INTRA
Yaowu Xuc27fc142016-08-22 16:08:15 -0700927
hui su5db97432016-10-14 16:10:14 -0700928#if CONFIG_EXT_INTRA
Joe Young3ca43bf2017-10-06 15:12:46 -0700929static void write_intra_angle_info(const MACROBLOCKD *xd,
930 FRAME_CONTEXT *const ec_ctx, aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700931 const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
932 const BLOCK_SIZE bsize = mbmi->sb_type;
Joe Young830d4ce2017-05-30 17:48:13 -0700933 if (!av1_use_angle_delta(bsize)) return;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700934
hui su45dc5972016-12-08 17:42:50 -0800935 if (av1_is_directional_mode(mbmi->mode, bsize)) {
Joe Young3ca43bf2017-10-06 15:12:46 -0700936#if CONFIG_EXT_INTRA_MOD
937 aom_write_symbol(w, mbmi->angle_delta[0] + MAX_ANGLE_DELTA,
938 ec_ctx->angle_delta_cdf[mbmi->mode - V_PRED],
939 2 * MAX_ANGLE_DELTA + 1);
940#else
941 (void)ec_ctx;
hui su0a6731f2017-04-26 15:23:47 -0700942 write_uniform(w, 2 * MAX_ANGLE_DELTA + 1,
943 MAX_ANGLE_DELTA + mbmi->angle_delta[0]);
Joe Young3ca43bf2017-10-06 15:12:46 -0700944#endif // CONFIG_EXT_INTRA_MOD
Yaowu Xuc27fc142016-08-22 16:08:15 -0700945 }
946
Luc Trudeaud6d9eee2017-07-12 12:36:50 -0400947 if (av1_is_directional_mode(get_uv_mode(mbmi->uv_mode), bsize)) {
Joe Young3ca43bf2017-10-06 15:12:46 -0700948#if CONFIG_EXT_INTRA_MOD
949 aom_write_symbol(w, mbmi->angle_delta[1] + MAX_ANGLE_DELTA,
950 ec_ctx->angle_delta_cdf[mbmi->uv_mode - V_PRED],
951 2 * MAX_ANGLE_DELTA + 1);
952#else
hui su0a6731f2017-04-26 15:23:47 -0700953 write_uniform(w, 2 * MAX_ANGLE_DELTA + 1,
954 MAX_ANGLE_DELTA + mbmi->angle_delta[1]);
Joe Young3ca43bf2017-10-06 15:12:46 -0700955#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -0700956 }
957}
958#endif // CONFIG_EXT_INTRA
959
Angie Chiang5678ad92016-11-21 09:38:40 -0800960static void write_mb_interp_filter(AV1_COMP *cpi, const MACROBLOCKD *xd,
961 aom_writer *w) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700962 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700963 const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
Thomas Davies77c7c402017-01-11 17:58:54 +0000964 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Jingning Han203b1d32017-01-12 16:00:13 -0800965
Debargha Mukherjee0df711f2017-05-02 16:00:20 -0700966 if (!av1_is_interp_needed(xd)) {
Rupert Swarbrick27e90292017-09-28 17:46:50 +0100967 assert(mbmi->interp_filters ==
968 av1_broadcast_interp_filter(
969 av1_unswitchable_filter(cm->interp_filter)));
Debargha Mukherjee0df711f2017-05-02 16:00:20 -0700970 return;
971 }
Yaowu Xuc27fc142016-08-22 16:08:15 -0700972 if (cm->interp_filter == SWITCHABLE) {
Yaowu Xuc27fc142016-08-22 16:08:15 -0700973#if CONFIG_DUAL_FILTER
Jingning Han203b1d32017-01-12 16:00:13 -0800974 int dir;
Yaowu Xuc27fc142016-08-22 16:08:15 -0700975 for (dir = 0; dir < 2; ++dir) {
976 if (has_subpel_mv_component(xd->mi[0], xd, dir) ||
977 (mbmi->ref_frame[1] > INTRA_FRAME &&
978 has_subpel_mv_component(xd->mi[0], xd, dir + 2))) {
Yaowu Xuf883b422016-08-30 14:01:10 -0700979 const int ctx = av1_get_pred_context_switchable_interp(xd, dir);
Rupert Swarbrick27e90292017-09-28 17:46:50 +0100980 InterpFilter filter =
981 av1_extract_interp_filter(mbmi->interp_filters, dir);
982 aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx],
Angie Chiangb9b42a02017-01-20 12:47:36 -0800983 SWITCHABLE_FILTERS);
Rupert Swarbrick27e90292017-09-28 17:46:50 +0100984 ++cpi->interp_filter_selected[0][filter];
Angie Chiang38edf682017-02-21 15:13:09 -0800985 } else {
Rupert Swarbrick27e90292017-09-28 17:46:50 +0100986 assert(av1_extract_interp_filter(mbmi->interp_filters, dir) ==
987 EIGHTTAP_REGULAR);
Yaowu Xuc27fc142016-08-22 16:08:15 -0700988 }
989 }
990#else
991 {
Yaowu Xuf883b422016-08-30 14:01:10 -0700992 const int ctx = av1_get_pred_context_switchable_interp(xd);
Rupert Swarbrick27e90292017-09-28 17:46:50 +0100993 InterpFilter filter = av1_extract_interp_filter(mbmi->interp_filters, 0);
994 aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx],
995 SWITCHABLE_FILTERS);
996 ++cpi->interp_filter_selected[0][filter];
Yaowu Xuc27fc142016-08-22 16:08:15 -0700997 }
Jingning Han203b1d32017-01-12 16:00:13 -0800998#endif // CONFIG_DUAL_FILTER
Yaowu Xuc27fc142016-08-22 16:08:15 -0700999 }
1000}
1001
hui sud13c24a2017-04-07 16:13:07 -07001002#if CONFIG_PALETTE_DELTA_ENCODING
hui su33567b22017-04-30 16:40:19 -07001003// Transmit color values with delta encoding. Write the first value as
1004// literal, and the deltas between each value and the previous one. "min_val" is
1005// the smallest possible value of the deltas.
1006static void delta_encode_palette_colors(const int *colors, int num,
1007 int bit_depth, int min_val,
1008 aom_writer *w) {
1009 if (num <= 0) return;
hui sufa4ff852017-05-15 12:20:50 -07001010 assert(colors[0] < (1 << bit_depth));
hui su33567b22017-04-30 16:40:19 -07001011 aom_write_literal(w, colors[0], bit_depth);
1012 if (num == 1) return;
1013 int max_delta = 0;
1014 int deltas[PALETTE_MAX_SIZE];
1015 memset(deltas, 0, sizeof(deltas));
1016 for (int i = 1; i < num; ++i) {
hui sufa4ff852017-05-15 12:20:50 -07001017 assert(colors[i] < (1 << bit_depth));
hui su33567b22017-04-30 16:40:19 -07001018 const int delta = colors[i] - colors[i - 1];
1019 deltas[i - 1] = delta;
1020 assert(delta >= min_val);
1021 if (delta > max_delta) max_delta = delta;
1022 }
1023 const int min_bits = bit_depth - 3;
1024 int bits = AOMMAX(av1_ceil_log2(max_delta + 1 - min_val), min_bits);
hui sufa4ff852017-05-15 12:20:50 -07001025 assert(bits <= bit_depth);
hui su33567b22017-04-30 16:40:19 -07001026 int range = (1 << bit_depth) - colors[0] - min_val;
hui sud13c24a2017-04-07 16:13:07 -07001027 aom_write_literal(w, bits - min_bits, 2);
hui su33567b22017-04-30 16:40:19 -07001028 for (int i = 0; i < num - 1; ++i) {
1029 aom_write_literal(w, deltas[i] - min_val, bits);
1030 range -= deltas[i];
1031 bits = AOMMIN(bits, av1_ceil_log2(range));
hui sud13c24a2017-04-07 16:13:07 -07001032 }
1033}
1034
hui su33567b22017-04-30 16:40:19 -07001035// Transmit luma palette color values. First signal if each color in the color
1036// cache is used. Those colors that are not in the cache are transmitted with
1037// delta encoding.
1038static void write_palette_colors_y(const MACROBLOCKD *const xd,
1039 const PALETTE_MODE_INFO *const pmi,
1040 int bit_depth, aom_writer *w) {
1041 const int n = pmi->palette_size[0];
hui su33567b22017-04-30 16:40:19 -07001042 uint16_t color_cache[2 * PALETTE_MAX_SIZE];
Hui Su3748bc22017-08-23 11:30:41 -07001043 const int n_cache = av1_get_palette_cache(xd, 0, color_cache);
hui su33567b22017-04-30 16:40:19 -07001044 int out_cache_colors[PALETTE_MAX_SIZE];
1045 uint8_t cache_color_found[2 * PALETTE_MAX_SIZE];
1046 const int n_out_cache =
1047 av1_index_color_cache(color_cache, n_cache, pmi->palette_colors, n,
1048 cache_color_found, out_cache_colors);
1049 int n_in_cache = 0;
1050 for (int i = 0; i < n_cache && n_in_cache < n; ++i) {
1051 const int found = cache_color_found[i];
1052 aom_write_bit(w, found);
1053 n_in_cache += found;
1054 }
1055 assert(n_in_cache + n_out_cache == n);
1056 delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 1, w);
1057}
1058
1059// Write chroma palette color values. U channel is handled similarly to the luma
1060// channel. For v channel, either use delta encoding or transmit raw values
1061// directly, whichever costs less.
1062static void write_palette_colors_uv(const MACROBLOCKD *const xd,
1063 const PALETTE_MODE_INFO *const pmi,
hui sud13c24a2017-04-07 16:13:07 -07001064 int bit_depth, aom_writer *w) {
hui sud13c24a2017-04-07 16:13:07 -07001065 const int n = pmi->palette_size[1];
hui sud13c24a2017-04-07 16:13:07 -07001066 const uint16_t *colors_u = pmi->palette_colors + PALETTE_MAX_SIZE;
1067 const uint16_t *colors_v = pmi->palette_colors + 2 * PALETTE_MAX_SIZE;
hui sud13c24a2017-04-07 16:13:07 -07001068 // U channel colors.
hui su33567b22017-04-30 16:40:19 -07001069 uint16_t color_cache[2 * PALETTE_MAX_SIZE];
Hui Su3748bc22017-08-23 11:30:41 -07001070 const int n_cache = av1_get_palette_cache(xd, 1, color_cache);
hui su33567b22017-04-30 16:40:19 -07001071 int out_cache_colors[PALETTE_MAX_SIZE];
1072 uint8_t cache_color_found[2 * PALETTE_MAX_SIZE];
1073 const int n_out_cache = av1_index_color_cache(
1074 color_cache, n_cache, colors_u, n, cache_color_found, out_cache_colors);
1075 int n_in_cache = 0;
1076 for (int i = 0; i < n_cache && n_in_cache < n; ++i) {
1077 const int found = cache_color_found[i];
1078 aom_write_bit(w, found);
1079 n_in_cache += found;
hui sud13c24a2017-04-07 16:13:07 -07001080 }
hui su33567b22017-04-30 16:40:19 -07001081 delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 0, w);
1082
1083 // V channel colors. Don't use color cache as the colors are not sorted.
hui sud13c24a2017-04-07 16:13:07 -07001084 const int max_val = 1 << bit_depth;
1085 int zero_count = 0, min_bits_v = 0;
1086 int bits_v =
1087 av1_get_palette_delta_bits_v(pmi, bit_depth, &zero_count, &min_bits_v);
1088 const int rate_using_delta =
1089 2 + bit_depth + (bits_v + 1) * (n - 1) - zero_count;
1090 const int rate_using_raw = bit_depth * n;
1091 if (rate_using_delta < rate_using_raw) { // delta encoding
hui sufa4ff852017-05-15 12:20:50 -07001092 assert(colors_v[0] < (1 << bit_depth));
hui sud13c24a2017-04-07 16:13:07 -07001093 aom_write_bit(w, 1);
1094 aom_write_literal(w, bits_v - min_bits_v, 2);
1095 aom_write_literal(w, colors_v[0], bit_depth);
hui su33567b22017-04-30 16:40:19 -07001096 for (int i = 1; i < n; ++i) {
hui sufa4ff852017-05-15 12:20:50 -07001097 assert(colors_v[i] < (1 << bit_depth));
hui sud13c24a2017-04-07 16:13:07 -07001098 if (colors_v[i] == colors_v[i - 1]) { // No need to signal sign bit.
1099 aom_write_literal(w, 0, bits_v);
1100 continue;
1101 }
1102 const int delta = abs((int)colors_v[i] - colors_v[i - 1]);
1103 const int sign_bit = colors_v[i] < colors_v[i - 1];
1104 if (delta <= max_val - delta) {
1105 aom_write_literal(w, delta, bits_v);
1106 aom_write_bit(w, sign_bit);
1107 } else {
1108 aom_write_literal(w, max_val - delta, bits_v);
1109 aom_write_bit(w, !sign_bit);
1110 }
1111 }
1112 } else { // Transmit raw values.
1113 aom_write_bit(w, 0);
hui sufa4ff852017-05-15 12:20:50 -07001114 for (int i = 0; i < n; ++i) {
1115 assert(colors_v[i] < (1 << bit_depth));
1116 aom_write_literal(w, colors_v[i], bit_depth);
1117 }
hui sud13c24a2017-04-07 16:13:07 -07001118 }
1119}
1120#endif // CONFIG_PALETTE_DELTA_ENCODING
1121
Yaowu Xuf883b422016-08-30 14:01:10 -07001122static void write_palette_mode_info(const AV1_COMMON *cm, const MACROBLOCKD *xd,
1123 const MODE_INFO *const mi, aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07001124 const MB_MODE_INFO *const mbmi = &mi->mbmi;
1125 const MODE_INFO *const above_mi = xd->above_mi;
1126 const MODE_INFO *const left_mi = xd->left_mi;
1127 const BLOCK_SIZE bsize = mbmi->sb_type;
1128 const PALETTE_MODE_INFO *const pmi = &mbmi->palette_mode_info;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001129
Rupert Swarbrick6f9cd942017-08-02 15:57:18 +01001130 assert(bsize >= BLOCK_8X8 && bsize <= BLOCK_LARGEST);
1131 const int block_palette_idx = bsize - BLOCK_8X8;
1132
Yaowu Xuc27fc142016-08-22 16:08:15 -07001133 if (mbmi->mode == DC_PRED) {
Urvang Joshi23a61112017-01-30 14:59:27 -08001134 const int n = pmi->palette_size[0];
1135 int palette_y_mode_ctx = 0;
hui su40b9e7f2017-07-13 18:15:56 -07001136 if (above_mi) {
Urvang Joshi23a61112017-01-30 14:59:27 -08001137 palette_y_mode_ctx +=
1138 (above_mi->mbmi.palette_mode_info.palette_size[0] > 0);
hui su40b9e7f2017-07-13 18:15:56 -07001139 }
1140 if (left_mi) {
Urvang Joshi23a61112017-01-30 14:59:27 -08001141 palette_y_mode_ctx +=
1142 (left_mi->mbmi.palette_mode_info.palette_size[0] > 0);
hui su40b9e7f2017-07-13 18:15:56 -07001143 }
Thomas Davies59f92312017-08-23 00:33:12 +01001144#if CONFIG_NEW_MULTISYMBOL
1145 aom_write_symbol(
1146 w, n > 0,
1147 xd->tile_ctx->palette_y_mode_cdf[block_palette_idx][palette_y_mode_ctx],
1148 2);
1149#else
clang-format55ce9e02017-02-15 22:27:12 -08001150 aom_write(
1151 w, n > 0,
Rupert Swarbrick6f9cd942017-08-02 15:57:18 +01001152 av1_default_palette_y_mode_prob[block_palette_idx][palette_y_mode_ctx]);
Thomas Davies59f92312017-08-23 00:33:12 +01001153#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001154 if (n > 0) {
Thomas Daviesce7272d2017-07-04 16:11:08 +01001155 aom_write_symbol(w, n - PALETTE_MIN_SIZE,
Rupert Swarbrick6f9cd942017-08-02 15:57:18 +01001156 xd->tile_ctx->palette_y_size_cdf[block_palette_idx],
Thomas Daviesce7272d2017-07-04 16:11:08 +01001157 PALETTE_SIZES);
hui sud13c24a2017-04-07 16:13:07 -07001158#if CONFIG_PALETTE_DELTA_ENCODING
hui su33567b22017-04-30 16:40:19 -07001159 write_palette_colors_y(xd, pmi, cm->bit_depth, w);
hui sud13c24a2017-04-07 16:13:07 -07001160#else
hui sufa4ff852017-05-15 12:20:50 -07001161 for (int i = 0; i < n; ++i) {
1162 assert(pmi->palette_colors[i] < (1 << cm->bit_depth));
Yaowu Xuf883b422016-08-30 14:01:10 -07001163 aom_write_literal(w, pmi->palette_colors[i], cm->bit_depth);
hui sufa4ff852017-05-15 12:20:50 -07001164 }
hui sud13c24a2017-04-07 16:13:07 -07001165#endif // CONFIG_PALETTE_DELTA_ENCODING
Yaowu Xuc27fc142016-08-22 16:08:15 -07001166 }
1167 }
1168
Luc Trudeaud6d9eee2017-07-12 12:36:50 -04001169 if (mbmi->uv_mode == UV_DC_PRED) {
Urvang Joshi23a61112017-01-30 14:59:27 -08001170 const int n = pmi->palette_size[1];
1171 const int palette_uv_mode_ctx = (pmi->palette_size[0] > 0);
Thomas Davies59f92312017-08-23 00:33:12 +01001172#if CONFIG_NEW_MULTISYMBOL
1173 aom_write_symbol(w, n > 0,
1174 xd->tile_ctx->palette_uv_mode_cdf[palette_uv_mode_ctx], 2);
1175#else
Urvang Joshi23a61112017-01-30 14:59:27 -08001176 aom_write(w, n > 0, av1_default_palette_uv_mode_prob[palette_uv_mode_ctx]);
Thomas Davies59f92312017-08-23 00:33:12 +01001177#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001178 if (n > 0) {
Thomas Daviesce7272d2017-07-04 16:11:08 +01001179 aom_write_symbol(w, n - PALETTE_MIN_SIZE,
Rupert Swarbrick6f9cd942017-08-02 15:57:18 +01001180 xd->tile_ctx->palette_uv_size_cdf[block_palette_idx],
Thomas Daviesce7272d2017-07-04 16:11:08 +01001181 PALETTE_SIZES);
hui sud13c24a2017-04-07 16:13:07 -07001182#if CONFIG_PALETTE_DELTA_ENCODING
hui su33567b22017-04-30 16:40:19 -07001183 write_palette_colors_uv(xd, pmi, cm->bit_depth, w);
hui sud13c24a2017-04-07 16:13:07 -07001184#else
hui sufa4ff852017-05-15 12:20:50 -07001185 for (int i = 0; i < n; ++i) {
1186 assert(pmi->palette_colors[PALETTE_MAX_SIZE + i] <
1187 (1 << cm->bit_depth));
1188 assert(pmi->palette_colors[2 * PALETTE_MAX_SIZE + i] <
1189 (1 << cm->bit_depth));
Yaowu Xuf883b422016-08-30 14:01:10 -07001190 aom_write_literal(w, pmi->palette_colors[PALETTE_MAX_SIZE + i],
1191 cm->bit_depth);
1192 aom_write_literal(w, pmi->palette_colors[2 * PALETTE_MAX_SIZE + i],
1193 cm->bit_depth);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001194 }
hui sud13c24a2017-04-07 16:13:07 -07001195#endif // CONFIG_PALETTE_DELTA_ENCODING
Yaowu Xuc27fc142016-08-22 16:08:15 -07001196 }
1197 }
1198}
1199
Angie Chiangc31ea682017-04-13 16:20:54 -07001200void av1_write_tx_type(const AV1_COMMON *const cm, const MACROBLOCKD *xd,
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001201#if CONFIG_TXK_SEL
Jingning Han19b5c8f2017-07-06 15:10:12 -07001202 int blk_row, int blk_col, int block, int plane,
1203 TX_SIZE tx_size,
Angie Chiangc31ea682017-04-13 16:20:54 -07001204#endif
1205 aom_writer *w) {
1206 MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi;
Jingning Han2a4da942016-11-03 18:31:30 -07001207 const int is_inter = is_inter_block(mbmi);
Jingning Han243b66b2017-06-23 12:11:47 -07001208#if !CONFIG_TXK_SEL
Sarah Parker90024e42017-10-06 16:50:47 -07001209 const TX_SIZE sqr_up_tx_size =
1210 txsize_sqr_up_map[max_txsize_rect_lookup[xd->mi[0]->mbmi.sb_type]];
1211 const TX_SIZE tx_size =
1212 is_inter ? AOMMAX(sub_tx_size_map[sqr_up_tx_size], mbmi->min_tx_size)
1213 : mbmi->tx_size;
Jingning Han243b66b2017-06-23 12:11:47 -07001214#endif // !CONFIG_TXK_SEL
Thomas Daviescef09622017-01-11 17:27:12 +00001215 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Thomas Daviescef09622017-01-11 17:27:12 +00001216
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001217#if !CONFIG_TXK_SEL
Angie Chiangc31ea682017-04-13 16:20:54 -07001218 TX_TYPE tx_type = mbmi->tx_type;
1219#else
1220 // Only y plane's tx_type is transmitted
Angie Chiang39b06eb2017-04-14 09:52:29 -07001221 if (plane > 0) return;
1222 PLANE_TYPE plane_type = get_plane_type(plane);
Jingning Han19b5c8f2017-07-06 15:10:12 -07001223 TX_TYPE tx_type =
1224 av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size);
Angie Chiangc31ea682017-04-13 16:20:54 -07001225#endif
1226
Jingning Han2a4da942016-11-03 18:31:30 -07001227 if (!FIXED_TX_TYPE) {
Urvang Joshifeb925f2016-12-05 10:37:29 -08001228 const TX_SIZE square_tx_size = txsize_sqr_map[tx_size];
Jingning Han2a4da942016-11-03 18:31:30 -07001229 const BLOCK_SIZE bsize = mbmi->sb_type;
Sarah Parkere68a3e42017-02-16 14:03:24 -08001230 if (get_ext_tx_types(tx_size, bsize, is_inter, cm->reduced_tx_set_used) >
1231 1 &&
Yue Cheneeacc4c2017-01-17 17:29:17 -08001232 ((!cm->seg.enabled && cm->base_qindex > 0) ||
1233 (cm->seg.enabled && xd->qindex[mbmi->segment_id] > 0)) &&
Jingning Han641b1ad2016-11-04 09:58:36 -07001234 !mbmi->skip &&
Jingning Han2a4da942016-11-03 18:31:30 -07001235 !segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) {
Sarah Parkerc5ccd4c2017-08-03 11:27:50 -07001236#if CONFIG_MRC_TX
1237 if (tx_type == MRC_DCT)
1238 assert(mbmi->valid_mrc_mask && "Invalid MRC mask");
1239#endif // CONFIG_MRC_TX
Hui Suddbcde22017-09-18 17:22:02 -07001240 const TxSetType tx_set_type = get_ext_tx_set_type(
1241 tx_size, bsize, is_inter, cm->reduced_tx_set_used);
Sarah Parkere68a3e42017-02-16 14:03:24 -08001242 const int eset =
1243 get_ext_tx_set(tx_size, bsize, is_inter, cm->reduced_tx_set_used);
Sarah Parker784596d2017-06-23 08:41:26 -07001244 // eset == 0 should correspond to a set with only DCT_DCT and there
1245 // is no need to send the tx_type
1246 assert(eset > 0);
Hui Suddbcde22017-09-18 17:22:02 -07001247 assert(av1_ext_tx_used[tx_set_type][tx_type]);
Lester Lu432012f2017-08-17 14:39:29 -07001248#if !CONFIG_LGT_FROM_PRED
Jingning Han2a4da942016-11-03 18:31:30 -07001249 if (is_inter) {
Hui Suddbcde22017-09-18 17:22:02 -07001250 aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type],
Sarah Parker784596d2017-06-23 08:41:26 -07001251 ec_ctx->inter_ext_tx_cdf[eset][square_tx_size],
Hui Suddbcde22017-09-18 17:22:02 -07001252 av1_num_ext_tx_set[tx_set_type]);
Jingning Han2a4da942016-11-03 18:31:30 -07001253 } else if (ALLOW_INTRA_EXT_TX) {
Yue Chen57b8ff62017-10-10 23:37:31 -07001254#if CONFIG_FILTER_INTRA
1255 PREDICTION_MODE intra_dir;
1256 if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0])
1257 intra_dir = fimode_to_intradir[mbmi->filter_intra_mode_info
1258 .filter_intra_mode[0]];
1259 else
1260 intra_dir = mbmi->mode;
1261 aom_write_symbol(
1262 w, av1_ext_tx_ind[tx_set_type][tx_type],
1263 ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][intra_dir],
1264 av1_num_ext_tx_set[tx_set_type]);
1265#else
Sarah Parker784596d2017-06-23 08:41:26 -07001266 aom_write_symbol(
Hui Suddbcde22017-09-18 17:22:02 -07001267 w, av1_ext_tx_ind[tx_set_type][tx_type],
Sarah Parker784596d2017-06-23 08:41:26 -07001268 ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode],
Hui Suddbcde22017-09-18 17:22:02 -07001269 av1_num_ext_tx_set[tx_set_type]);
Yue Chen57b8ff62017-10-10 23:37:31 -07001270#endif
Jingning Han2a4da942016-11-03 18:31:30 -07001271 }
Jingning Han2a4da942016-11-03 18:31:30 -07001272#else
Lester Lu432012f2017-08-17 14:39:29 -07001273 // only signal tx_type when lgt is not allowed or not selected
1274 if (is_inter) {
1275 if (LGT_FROM_PRED_INTER) {
1276 if (is_lgt_allowed(mbmi->mode, tx_size) && !cm->reduced_tx_set_used)
1277 aom_write(w, mbmi->use_lgt, ec_ctx->inter_lgt_prob[square_tx_size]);
1278 if (!mbmi->use_lgt)
1279 aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type],
1280 ec_ctx->inter_ext_tx_cdf[eset][square_tx_size],
1281 av1_num_ext_tx_set[tx_set_type]);
1282 } else {
1283 aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type],
1284 ec_ctx->inter_ext_tx_cdf[eset][square_tx_size],
1285 av1_num_ext_tx_set[tx_set_type]);
1286 }
1287 } else if (ALLOW_INTRA_EXT_TX) {
1288 if (LGT_FROM_PRED_INTRA) {
1289 if (is_lgt_allowed(mbmi->mode, tx_size) && !cm->reduced_tx_set_used)
1290 aom_write(w, mbmi->use_lgt,
1291 ec_ctx->intra_lgt_prob[square_tx_size][mbmi->mode]);
1292 if (!mbmi->use_lgt)
1293 aom_write_symbol(
1294 w, av1_ext_tx_ind[tx_set_type][tx_type],
1295 ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode],
1296 av1_num_ext_tx_set[tx_set_type]);
1297 } else {
1298 aom_write_symbol(
1299 w, av1_ext_tx_ind[tx_set_type][tx_type],
1300 ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode],
1301 av1_num_ext_tx_set[tx_set_type]);
1302 }
1303 }
1304#endif // CONFIG_LGT_FROM_PRED
1305 }
Jingning Han2a4da942016-11-03 18:31:30 -07001306 }
1307}
1308
Jingning Hanf04254f2017-03-08 10:51:35 -08001309static void write_intra_mode(FRAME_CONTEXT *frame_ctx, BLOCK_SIZE bsize,
1310 PREDICTION_MODE mode, aom_writer *w) {
Hui Su814f41e2017-10-02 12:21:24 -07001311 aom_write_symbol(w, mode, frame_ctx->y_mode_cdf[size_group_lookup[bsize]],
Jingning Hanf04254f2017-03-08 10:51:35 -08001312 INTRA_MODES);
Jingning Hanf04254f2017-03-08 10:51:35 -08001313}
1314
1315static void write_intra_uv_mode(FRAME_CONTEXT *frame_ctx,
Luc Trudeaud6d9eee2017-07-12 12:36:50 -04001316 UV_PREDICTION_MODE uv_mode,
1317 PREDICTION_MODE y_mode, aom_writer *w) {
Luc Trudeau6e1cd782017-06-21 13:52:36 -04001318#if !CONFIG_CFL
Hui Su814f41e2017-10-02 12:21:24 -07001319 uv_mode = get_uv_mode(uv_mode);
Luc Trudeau6e1cd782017-06-21 13:52:36 -04001320#endif
1321 aom_write_symbol(w, uv_mode, frame_ctx->uv_mode_cdf[y_mode], UV_INTRA_MODES);
Jingning Hanf04254f2017-03-08 10:51:35 -08001322}
1323
Luc Trudeauf5334002017-04-25 12:21:26 -04001324#if CONFIG_CFL
David Michael Barrf6eaa152017-07-19 19:42:28 +09001325static void write_cfl_alphas(FRAME_CONTEXT *const ec_ctx, int idx,
1326 int joint_sign, aom_writer *w) {
1327 aom_write_symbol(w, joint_sign, ec_ctx->cfl_sign_cdf, CFL_JOINT_SIGNS);
1328 // Magnitudes are only signaled for nonzero codes.
1329 if (CFL_SIGN_U(joint_sign) != CFL_SIGN_ZERO) {
1330 aom_cdf_prob *cdf_u = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_U(joint_sign)];
1331 aom_write_symbol(w, CFL_IDX_U(idx), cdf_u, CFL_ALPHABET_SIZE);
1332 }
1333 if (CFL_SIGN_V(joint_sign) != CFL_SIGN_ZERO) {
1334 aom_cdf_prob *cdf_v = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_V(joint_sign)];
1335 aom_write_symbol(w, CFL_IDX_V(idx), cdf_v, CFL_ALPHABET_SIZE);
1336 }
Luc Trudeauf5334002017-04-25 12:21:26 -04001337}
1338#endif
1339
Angie Chiangc31ea682017-04-13 16:20:54 -07001340static void pack_inter_mode_mvs(AV1_COMP *cpi, const int mi_row,
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001341 const int mi_col, aom_writer *w) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001342 AV1_COMMON *const cm = &cpi->common;
Arild Fuldseth07441162016-08-15 15:07:52 +02001343 MACROBLOCK *const x = &cpi->td.mb;
1344 MACROBLOCKD *const xd = &x->e_mbd;
Thomas Davies24523292017-01-11 16:56:47 +00001345 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Angie Chiangc31ea682017-04-13 16:20:54 -07001346 const MODE_INFO *mi = xd->mi[0];
Thomas Davies24523292017-01-11 16:56:47 +00001347
Yaowu Xuc27fc142016-08-22 16:08:15 -07001348 const struct segmentation *const seg = &cm->seg;
Thomas Davies9f5cedd2017-07-10 09:20:32 +01001349 struct segmentation_probs *const segp = &ec_ctx->seg;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001350 const MB_MODE_INFO *const mbmi = &mi->mbmi;
1351 const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext;
1352 const PREDICTION_MODE mode = mbmi->mode;
1353 const int segment_id = mbmi->segment_id;
1354 const BLOCK_SIZE bsize = mbmi->sb_type;
1355 const int allow_hp = cm->allow_high_precision_mv;
1356 const int is_inter = is_inter_block(mbmi);
1357 const int is_compound = has_second_ref(mbmi);
1358 int skip, ref;
David Barker45390c12017-02-20 14:44:40 +00001359 (void)mi_row;
1360 (void)mi_col;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001361
1362 if (seg->update_map) {
1363 if (seg->temporal_update) {
1364 const int pred_flag = mbmi->seg_id_predicted;
Thomas Davies00021352017-07-11 16:07:55 +01001365#if CONFIG_NEW_MULTISYMBOL
1366 aom_cdf_prob *pred_cdf = av1_get_pred_cdf_seg_id(segp, xd);
1367 aom_write_symbol(w, pred_flag, pred_cdf, 2);
1368#else
Yaowu Xuf883b422016-08-30 14:01:10 -07001369 aom_prob pred_prob = av1_get_pred_prob_seg_id(segp, xd);
1370 aom_write(w, pred_flag, pred_prob);
Thomas Davies00021352017-07-11 16:07:55 +01001371#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001372 if (!pred_flag) write_segment_id(w, seg, segp, segment_id);
1373 } else {
1374 write_segment_id(w, seg, segp, segment_id);
1375 }
1376 }
1377
Yaowu Xuc27fc142016-08-22 16:08:15 -07001378 skip = write_skip(cm, xd, segment_id, mi, w);
Arild Fuldseth07441162016-08-15 15:07:52 +02001379 if (cm->delta_q_present_flag) {
Pavel Frolov1dbe92d2017-11-02 01:49:19 +03001380 int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) &&
1381 ((mi_col & (cm->mib_size - 1)) == 0);
Pavel Frolovbfa2b8c2017-11-01 20:08:44 +03001382 if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) {
Arild Fuldseth (arilfuld)54de7d62017-03-20 13:07:11 +01001383 assert(mbmi->current_q_index > 0);
Thomas Daviesf6936102016-09-05 16:51:31 +01001384 int reduced_delta_qindex =
1385 (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res;
Thomas Daviesd6ee8a82017-03-02 14:42:50 +00001386 write_delta_qindex(cm, xd, reduced_delta_qindex, w);
Arild Fuldseth07441162016-08-15 15:07:52 +02001387 xd->prev_qindex = mbmi->current_q_index;
Fangwen Fu231fe422017-04-24 17:52:29 -07001388#if CONFIG_EXT_DELTA_Q
Cheng Chena97394f2017-09-27 15:05:14 -07001389#if CONFIG_LOOPFILTER_LEVEL
1390 if (cm->delta_lf_present_flag) {
Cheng Chen880166a2017-10-02 17:48:48 -07001391 if (cm->delta_lf_multi) {
1392 for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) {
1393 int reduced_delta_lflevel =
1394 (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) /
1395 cm->delta_lf_res;
1396 write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w);
1397 xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id];
1398 }
1399 } else {
Cheng Chena97394f2017-09-27 15:05:14 -07001400 int reduced_delta_lflevel =
Cheng Chen880166a2017-10-02 17:48:48 -07001401 (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) /
Cheng Chena97394f2017-09-27 15:05:14 -07001402 cm->delta_lf_res;
Cheng Chen880166a2017-10-02 17:48:48 -07001403 write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w);
1404 xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base;
Cheng Chena97394f2017-09-27 15:05:14 -07001405 }
1406 }
1407#else
Fangwen Fu231fe422017-04-24 17:52:29 -07001408 if (cm->delta_lf_present_flag) {
1409 int reduced_delta_lflevel =
1410 (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) /
1411 cm->delta_lf_res;
1412 write_delta_lflevel(cm, xd, reduced_delta_lflevel, w);
1413 xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base;
1414 }
Cheng Chena97394f2017-09-27 15:05:14 -07001415#endif // CONFIG_LOOPFILTER_LEVEL
Fangwen Fu231fe422017-04-24 17:52:29 -07001416#endif // CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +02001417 }
1418 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07001419
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001420 write_is_inter(cm, xd, mbmi->segment_id, w, is_inter);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001421
Debargha Mukherjee4def76a2017-10-19 13:38:35 -07001422 if (cm->tx_mode == TX_MODE_SELECT && block_signals_txsize(bsize) &&
Yaowu Xuc27fc142016-08-22 16:08:15 -07001423 !(is_inter && skip) && !xd->lossless[segment_id]) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07001424 if (is_inter) { // This implies skip flag is 0.
Rupert Swarbrick4e7b7d62017-09-28 17:30:44 +01001425 const TX_SIZE max_tx_size = get_vartx_max_txsize(mbmi, bsize, 0);
Jingning Hanf64062f2016-11-02 16:22:18 -07001426 const int bh = tx_size_high_unit[max_tx_size];
1427 const int bw = tx_size_wide_unit[max_tx_size];
Jingning Han9ca05b72017-01-03 14:41:36 -08001428 const int width = block_size_wide[bsize] >> tx_size_wide_log2[0];
1429 const int height = block_size_high[bsize] >> tx_size_wide_log2[0];
Yaowu Xuc27fc142016-08-22 16:08:15 -07001430 int idx, idy;
Jingning Hanfe45b212016-11-22 10:30:23 -08001431 for (idy = 0; idy < height; idy += bh)
1432 for (idx = 0; idx < width; idx += bw)
Debargha Mukherjeeedc73462017-10-31 15:13:32 -07001433 write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w);
Yue Chend6bdd462017-07-19 16:05:43 -07001434#if CONFIG_RECT_TX_EXT
1435 if (is_quarter_tx_allowed(xd, mbmi, is_inter_block(mbmi)) &&
1436 quarter_txsize_lookup[bsize] != max_tx_size &&
1437 (mbmi->tx_size == quarter_txsize_lookup[bsize] ||
1438 mbmi->tx_size == max_tx_size)) {
Thomas Daviese3f69782017-10-03 10:43:17 +01001439#if CONFIG_NEW_MULTISYMBOL
1440 aom_write_symbol(w, mbmi->tx_size != max_tx_size,
1441 cm->fc->quarter_tx_size_cdf, 2);
1442#else
Yue Chend6bdd462017-07-19 16:05:43 -07001443 aom_write(w, mbmi->tx_size != max_tx_size,
1444 cm->fc->quarter_tx_size_prob);
Thomas Daviese3f69782017-10-03 10:43:17 +01001445#endif
Yue Chend6bdd462017-07-19 16:05:43 -07001446 }
1447#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001448 } else {
Jingning Han1b1dc932016-11-09 10:55:30 -08001449 set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, skip, xd);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001450 write_selected_tx_size(cm, xd, w);
1451 }
1452 } else {
Jingning Han1b1dc932016-11-09 10:55:30 -08001453 set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, skip, xd);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001454 }
1455
1456 if (!is_inter) {
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001457 write_intra_mode(ec_ctx, bsize, mode, w);
Jingning Hand3a64432017-04-06 17:04:17 -07001458 if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x,
Luc Trudeaub09b55d2017-04-26 10:06:35 -04001459 xd->plane[1].subsampling_y)) {
Jingning Hanf04254f2017-03-08 10:51:35 -08001460 write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mode, w);
Jingning Han0b7cbe62017-03-08 10:22:47 -08001461
Luc Trudeaub09b55d2017-04-26 10:06:35 -04001462#if CONFIG_CFL
Luc Trudeau6e1cd782017-06-21 13:52:36 -04001463 if (mbmi->uv_mode == UV_CFL_PRED) {
David Michael Barr23198662017-06-19 23:19:48 +09001464 write_cfl_alphas(ec_ctx, mbmi->cfl_alpha_idx, mbmi->cfl_alpha_signs, w);
Luc Trudeaub09b55d2017-04-26 10:06:35 -04001465 }
1466#endif
Luc Trudeaub09b55d2017-04-26 10:06:35 -04001467 }
Luc Trudeaub09b55d2017-04-26 10:06:35 -04001468
Yaowu Xuc27fc142016-08-22 16:08:15 -07001469#if CONFIG_EXT_INTRA
Joe Young3ca43bf2017-10-06 15:12:46 -07001470 write_intra_angle_info(xd, ec_ctx, w);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001471#endif // CONFIG_EXT_INTRA
Hui Sue87fb232017-10-05 15:00:15 -07001472 if (av1_allow_palette(cm->allow_screen_content_tools, bsize))
Yaowu Xuc27fc142016-08-22 16:08:15 -07001473 write_palette_mode_info(cm, xd, mi, w);
hui su5db97432016-10-14 16:10:14 -07001474#if CONFIG_FILTER_INTRA
Yue Chen57b8ff62017-10-10 23:37:31 -07001475 write_filter_intra_mode_info(cm, xd, mbmi, w);
hui su5db97432016-10-14 16:10:14 -07001476#endif // CONFIG_FILTER_INTRA
Yaowu Xuc27fc142016-08-22 16:08:15 -07001477 } else {
Yaowu Xub0d0d002016-11-22 09:26:43 -08001478 int16_t mode_ctx;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001479 write_ref_frames(cm, xd, w);
1480
Cheng Chen0a7f2f52017-10-10 15:16:09 -07001481#if CONFIG_JNT_COMP
1482 if (has_second_ref(mbmi)) {
1483 const int comp_index_ctx = get_comp_index_context(cm, xd);
1484 aom_write(w, mbmi->compound_idx,
1485 ec_ctx->compound_index_probs[comp_index_ctx]);
1486 }
1487#endif // CONFIG_JNT_COMP
1488
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02001489#if CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07001490 if (!segfeature_active(seg, segment_id, SEG_LVL_REF_FRAME)) {
1491 // NOTE: Handle single ref comp mode
1492 if (!is_compound)
1493 aom_write(w, is_inter_singleref_comp_mode(mode),
1494 av1_get_inter_mode_prob(cm, xd));
1495 }
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02001496#endif // CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07001497
Zoe Liu85b66462017-04-20 14:28:19 -07001498#if CONFIG_COMPOUND_SINGLEREF
1499 if (is_compound || is_inter_singleref_comp_mode(mode))
1500#else // !CONFIG_COMPOUND_SINGLEREF
Yaowu Xuc27fc142016-08-22 16:08:15 -07001501 if (is_compound)
Zoe Liu85b66462017-04-20 14:28:19 -07001502#endif // CONFIG_COMPOUND_SINGLEREF
Yaowu Xuc27fc142016-08-22 16:08:15 -07001503 mode_ctx = mbmi_ext->compound_mode_context[mbmi->ref_frame[0]];
1504 else
Di Chen56586622017-06-09 13:49:44 -07001505
Yaowu Xuf883b422016-08-30 14:01:10 -07001506 mode_ctx = av1_mode_context_analyzer(mbmi_ext->mode_context,
1507 mbmi->ref_frame, bsize, -1);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001508
1509 // If segment skip is not enabled code the mode.
1510 if (!segfeature_active(seg, segment_id, SEG_LVL_SKIP)) {
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001511 if (is_inter_compound_mode(mode))
1512 write_inter_compound_mode(cm, xd, w, mode, mode_ctx);
Zoe Liu85b66462017-04-20 14:28:19 -07001513#if CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001514 else if (is_inter_singleref_comp_mode(mode))
1515 write_inter_singleref_comp_mode(xd, w, mode, mode_ctx);
Zoe Liu85b66462017-04-20 14:28:19 -07001516#endif // CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001517 else if (is_inter_singleref_mode(mode))
1518 write_inter_mode(w, mode, ec_ctx, mode_ctx);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001519
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001520 if (mode == NEWMV || mode == NEW_NEWMV ||
Zoe Liu85b66462017-04-20 14:28:19 -07001521#if CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001522 mbmi->mode == SR_NEW_NEWMV ||
Zoe Liu85b66462017-04-20 14:28:19 -07001523#endif // CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001524 have_nearmv_in_inter_mode(mode))
1525 write_drl_idx(ec_ctx, mbmi, mbmi_ext, w);
1526 else
1527 assert(mbmi->ref_mv_idx == 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001528 }
1529
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001530 if (mode == NEWMV || mode == NEW_NEWMV) {
1531 int_mv ref_mv;
1532 for (ref = 0; ref < 1 + is_compound; ++ref) {
1533 int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame);
1534 int nmv_ctx =
1535 av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type],
1536 mbmi_ext->ref_mv_stack[rf_type], ref, mbmi->ref_mv_idx);
1537 nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx];
1538 ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[ref]][0];
1539 av1_encode_mv(cpi, w, &mbmi->mv[ref].as_mv, &ref_mv.as_mv, nmvc,
1540 allow_hp);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001541 }
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001542 } else if (mode == NEAREST_NEWMV || mode == NEAR_NEWMV) {
1543 int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame);
1544 int nmv_ctx =
1545 av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type],
1546 mbmi_ext->ref_mv_stack[rf_type], 1, mbmi->ref_mv_idx);
1547 nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx];
1548 av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv,
1549 &mbmi_ext->ref_mvs[mbmi->ref_frame[1]][0].as_mv, nmvc,
1550 allow_hp);
1551 } else if (mode == NEW_NEARESTMV || mode == NEW_NEARMV) {
1552 int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame);
1553 int nmv_ctx =
1554 av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type],
1555 mbmi_ext->ref_mv_stack[rf_type], 0, mbmi->ref_mv_idx);
1556 nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx];
1557 av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv,
1558 &mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0].as_mv, nmvc,
1559 allow_hp);
Zoe Liu85b66462017-04-20 14:28:19 -07001560#if CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001561 } else if ( // mode == SR_NEAREST_NEWMV ||
1562 mode == SR_NEAR_NEWMV || mode == SR_ZERO_NEWMV ||
1563 mode == SR_NEW_NEWMV) {
1564 int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame);
1565 int nmv_ctx =
1566 av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type],
1567 mbmi_ext->ref_mv_stack[rf_type], 0, mbmi->ref_mv_idx);
1568 nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx];
1569 int_mv ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0];
1570 if (mode == SR_NEW_NEWMV)
1571 av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, &ref_mv.as_mv, nmvc,
Zoe Liu85b66462017-04-20 14:28:19 -07001572 allow_hp);
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001573 av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, &ref_mv.as_mv, nmvc, allow_hp);
Zoe Liu85b66462017-04-20 14:28:19 -07001574#endif // CONFIG_COMPOUND_SINGLEREF
Yaowu Xuc27fc142016-08-22 16:08:15 -07001575 }
1576
Yaowu Xuc27fc142016-08-22 16:08:15 -07001577 if (cpi->common.reference_mode != COMPOUND_REFERENCE &&
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07001578 cpi->common.allow_interintra_compound && is_interintra_allowed(mbmi)) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07001579 const int interintra = mbmi->ref_frame[1] == INTRA_FRAME;
1580 const int bsize_group = size_group_lookup[bsize];
Thomas Daviescff91712017-07-07 11:49:55 +01001581#if CONFIG_NEW_MULTISYMBOL
1582 aom_write_symbol(w, interintra, ec_ctx->interintra_cdf[bsize_group], 2);
1583#else
Yaowu Xuf883b422016-08-30 14:01:10 -07001584 aom_write(w, interintra, cm->fc->interintra_prob[bsize_group]);
Thomas Daviescff91712017-07-07 11:49:55 +01001585#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001586 if (interintra) {
Thomas Davies299ff042017-06-27 13:41:59 +01001587 aom_write_symbol(w, mbmi->interintra_mode,
1588 ec_ctx->interintra_mode_cdf[bsize_group],
1589 INTERINTRA_MODES);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001590 if (is_interintra_wedge_used(bsize)) {
Thomas Daviescff91712017-07-07 11:49:55 +01001591#if CONFIG_NEW_MULTISYMBOL
1592 aom_write_symbol(w, mbmi->use_wedge_interintra,
1593 ec_ctx->wedge_interintra_cdf[bsize], 2);
1594#else
Yaowu Xuf883b422016-08-30 14:01:10 -07001595 aom_write(w, mbmi->use_wedge_interintra,
1596 cm->fc->wedge_interintra_prob[bsize]);
Thomas Daviescff91712017-07-07 11:49:55 +01001597#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001598 if (mbmi->use_wedge_interintra) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001599 aom_write_literal(w, mbmi->interintra_wedge_index,
1600 get_wedge_bits_lookup(bsize));
Yaowu Xuc27fc142016-08-22 16:08:15 -07001601 assert(mbmi->interintra_wedge_sign == 0);
1602 }
1603 }
1604 }
1605 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07001606
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001607 if (mbmi->ref_frame[1] != INTRA_FRAME) write_motion_mode(cm, xd, mi, w);
Wei-Ting Lin85a8f702017-06-22 13:55:15 -07001608#if CONFIG_NCOBMC_ADAPT_WEIGHT
Wei-Ting Linca710d62017-07-13 11:41:02 -07001609 write_ncobmc_mode(xd, mi, w);
Wei-Ting Lin85a8f702017-06-22 13:55:15 -07001610#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07001611
Zoe Liu85b66462017-04-20 14:28:19 -07001612 if (
1613#if CONFIG_COMPOUND_SINGLEREF
Zoe Liu0c634c72017-06-19 07:06:28 -07001614 is_inter_anyref_comp_mode(mbmi->mode) &&
Zoe Liu85b66462017-04-20 14:28:19 -07001615#else // !CONFIG_COMPOUND_SINGLEREF
1616 cpi->common.reference_mode != SINGLE_REFERENCE &&
1617 is_inter_compound_mode(mbmi->mode) &&
1618#endif // CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07001619 mbmi->motion_mode == SIMPLE_TRANSLATION &&
Zoe Liu85b66462017-04-20 14:28:19 -07001620 is_any_masked_compound_used(bsize)) {
Cheng Chenbdd6ca82017-10-23 22:34:25 -07001621#if CONFIG_JNT_COMP
1622 if (cm->allow_masked_compound && mbmi->compound_idx)
1623#else
1624 if (cm->allow_masked_compound)
1625#endif // CONFIG_JNT_COMP
1626 {
Sarah Parker680b9b12017-08-16 18:55:34 -07001627 if (!is_interinter_compound_used(COMPOUND_WEDGE, bsize))
1628 aom_write_bit(w, mbmi->interinter_compound_type == COMPOUND_AVERAGE);
1629 else
Cheng Chenbdd6ca82017-10-23 22:34:25 -07001630 aom_write_symbol(w, mbmi->interinter_compound_type,
1631 ec_ctx->compound_type_cdf[bsize], COMPOUND_TYPES);
Sarah Parker680b9b12017-08-16 18:55:34 -07001632 if (is_interinter_compound_used(COMPOUND_WEDGE, bsize) &&
1633 mbmi->interinter_compound_type == COMPOUND_WEDGE) {
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07001634 aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize));
1635 aom_write_bit(w, mbmi->wedge_sign);
1636 }
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07001637 if (mbmi->interinter_compound_type == COMPOUND_SEG) {
Cheng Chenbdd6ca82017-10-23 22:34:25 -07001638 aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS);
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07001639 }
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07001640 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07001641 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07001642
Debargha Mukherjee0df711f2017-05-02 16:00:20 -07001643 write_mb_interp_filter(cpi, xd, w);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001644 }
1645
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001646#if !CONFIG_TXK_SEL
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001647 av1_write_tx_type(cm, xd, w);
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001648#endif // !CONFIG_TXK_SEL
Yaowu Xuc27fc142016-08-22 16:08:15 -07001649}
1650
Hui Suc2232cf2017-10-11 17:32:56 -07001651#if CONFIG_INTRABC
1652static void write_intrabc_info(AV1_COMMON *cm, MACROBLOCKD *xd,
1653 const MB_MODE_INFO_EXT *mbmi_ext,
1654 int enable_tx_size, aom_writer *w) {
1655 const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi;
1656 int use_intrabc = is_intrabc_block(mbmi);
1657 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
1658 aom_write_symbol(w, use_intrabc, ec_ctx->intrabc_cdf, 2);
1659 if (use_intrabc) {
1660 assert(mbmi->mode == DC_PRED);
1661 assert(mbmi->uv_mode == UV_DC_PRED);
Hui Su12546aa2017-10-13 16:10:01 -07001662 if ((enable_tx_size && !mbmi->skip)) {
Hui Su12546aa2017-10-13 16:10:01 -07001663 const BLOCK_SIZE bsize = mbmi->sb_type;
1664 const TX_SIZE max_tx_size = get_vartx_max_txsize(mbmi, bsize, 0);
1665 const int bh = tx_size_high_unit[max_tx_size];
1666 const int bw = tx_size_wide_unit[max_tx_size];
1667 const int width = block_size_wide[bsize] >> tx_size_wide_log2[0];
1668 const int height = block_size_high[bsize] >> tx_size_wide_log2[0];
Hui Su12546aa2017-10-13 16:10:01 -07001669 int idx, idy;
1670 for (idy = 0; idy < height; idy += bh) {
1671 for (idx = 0; idx < width; idx += bw) {
Debargha Mukherjeeedc73462017-10-31 15:13:32 -07001672 write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w);
Hui Su12546aa2017-10-13 16:10:01 -07001673 }
1674 }
Hui Su12546aa2017-10-13 16:10:01 -07001675 } else {
Hui Su12546aa2017-10-13 16:10:01 -07001676 set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, mbmi->skip, xd);
Hui Su12546aa2017-10-13 16:10:01 -07001677 }
Hui Suc2232cf2017-10-11 17:32:56 -07001678 int_mv dv_ref = mbmi_ext->ref_mvs[INTRA_FRAME][0];
1679 av1_encode_dv(w, &mbmi->mv[0].as_mv, &dv_ref.as_mv, &ec_ctx->ndvc);
Sebastien Alaiwan3bac9922017-11-02 12:34:41 +01001680#if !CONFIG_TXK_SEL
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001681 av1_write_tx_type(cm, xd, w);
Sebastien Alaiwan3bac9922017-11-02 12:34:41 +01001682#endif // !CONFIG_TXK_SEL
Hui Suc2232cf2017-10-11 17:32:56 -07001683 }
1684}
1685#endif // CONFIG_INTRABC
1686
Thomas Davies3ab20b42017-09-19 10:30:53 +01001687static void write_mb_modes_kf(AV1_COMMON *cm, MACROBLOCKD *xd,
Alex Converse44c2bad2017-05-11 09:36:10 -07001688#if CONFIG_INTRABC
1689 const MB_MODE_INFO_EXT *mbmi_ext,
1690#endif // CONFIG_INTRABC
Jingning Han36fe3202017-02-20 22:31:49 -08001691 const int mi_row, const int mi_col,
Angie Chiangc31ea682017-04-13 16:20:54 -07001692 aom_writer *w) {
Thomas Davies9f5cedd2017-07-10 09:20:32 +01001693 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001694 const struct segmentation *const seg = &cm->seg;
Thomas Davies9f5cedd2017-07-10 09:20:32 +01001695 struct segmentation_probs *const segp = &ec_ctx->seg;
Angie Chiangc31ea682017-04-13 16:20:54 -07001696 const MODE_INFO *const mi = xd->mi[0];
Yaowu Xuc27fc142016-08-22 16:08:15 -07001697 const MODE_INFO *const above_mi = xd->above_mi;
1698 const MODE_INFO *const left_mi = xd->left_mi;
1699 const MB_MODE_INFO *const mbmi = &mi->mbmi;
1700 const BLOCK_SIZE bsize = mbmi->sb_type;
David Barker45390c12017-02-20 14:44:40 +00001701 (void)mi_row;
1702 (void)mi_col;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001703
1704 if (seg->update_map) write_segment_id(w, seg, segp, mbmi->segment_id);
1705
Alex Converse619576b2017-05-10 15:14:18 -07001706 const int skip = write_skip(cm, xd, mbmi->segment_id, mi, w);
Arild Fuldseth07441162016-08-15 15:07:52 +02001707 if (cm->delta_q_present_flag) {
Pavel Frolov1dbe92d2017-11-02 01:49:19 +03001708 int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) &&
1709 ((mi_col & (cm->mib_size - 1)) == 0);
Pavel Frolovbfa2b8c2017-11-01 20:08:44 +03001710 if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) {
Arild Fuldseth (arilfuld)54de7d62017-03-20 13:07:11 +01001711 assert(mbmi->current_q_index > 0);
Thomas Daviesf6936102016-09-05 16:51:31 +01001712 int reduced_delta_qindex =
1713 (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res;
Thomas Daviesd6ee8a82017-03-02 14:42:50 +00001714 write_delta_qindex(cm, xd, reduced_delta_qindex, w);
Arild Fuldseth07441162016-08-15 15:07:52 +02001715 xd->prev_qindex = mbmi->current_q_index;
Fangwen Fu231fe422017-04-24 17:52:29 -07001716#if CONFIG_EXT_DELTA_Q
Cheng Chena97394f2017-09-27 15:05:14 -07001717#if CONFIG_LOOPFILTER_LEVEL
1718 if (cm->delta_lf_present_flag) {
Cheng Chen880166a2017-10-02 17:48:48 -07001719 if (cm->delta_lf_multi) {
1720 for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) {
1721 int reduced_delta_lflevel =
1722 (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) /
1723 cm->delta_lf_res;
1724 write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w);
1725 xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id];
1726 }
1727 } else {
Cheng Chena97394f2017-09-27 15:05:14 -07001728 int reduced_delta_lflevel =
Cheng Chen880166a2017-10-02 17:48:48 -07001729 (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) /
Cheng Chena97394f2017-09-27 15:05:14 -07001730 cm->delta_lf_res;
Cheng Chen880166a2017-10-02 17:48:48 -07001731 write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w);
1732 xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base;
Cheng Chena97394f2017-09-27 15:05:14 -07001733 }
1734 }
1735#else
Fangwen Fu231fe422017-04-24 17:52:29 -07001736 if (cm->delta_lf_present_flag) {
1737 int reduced_delta_lflevel =
1738 (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) /
1739 cm->delta_lf_res;
1740 write_delta_lflevel(cm, xd, reduced_delta_lflevel, w);
1741 xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base;
1742 }
Cheng Chena97394f2017-09-27 15:05:14 -07001743#endif // CONFIG_LOOPFILTER_LEVEL
Fangwen Fu231fe422017-04-24 17:52:29 -07001744#endif // CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +02001745 }
1746 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07001747
Alex Conversef71808c2017-06-06 12:21:17 -07001748 int enable_tx_size = cm->tx_mode == TX_MODE_SELECT &&
Rupert Swarbrickfcff0b22017-10-05 09:26:04 +01001749 block_signals_txsize(bsize) &&
Alex Conversef71808c2017-06-06 12:21:17 -07001750 !xd->lossless[mbmi->segment_id];
Yaowu Xuc27fc142016-08-22 16:08:15 -07001751
Alex Converse28744302017-04-13 14:46:22 -07001752#if CONFIG_INTRABC
RogerZhouca865462017-10-05 15:06:27 -07001753 if (av1_allow_intrabc(bsize, cm)) {
Hui Suc2232cf2017-10-11 17:32:56 -07001754 write_intrabc_info(cm, xd, mbmi_ext, enable_tx_size, w);
1755 if (is_intrabc_block(mbmi)) return;
Alex Converse28744302017-04-13 14:46:22 -07001756 }
1757#endif // CONFIG_INTRABC
Hui Suc2232cf2017-10-11 17:32:56 -07001758
Alex Conversef71808c2017-06-06 12:21:17 -07001759 if (enable_tx_size) write_selected_tx_size(cm, xd, w);
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02001760#if CONFIG_INTRABC
Hui Su12546aa2017-10-13 16:10:01 -07001761 if (cm->allow_screen_content_tools)
1762 set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, mbmi->skip, xd);
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02001763#endif // CONFIG_INTRABC
Alex Converse28744302017-04-13 14:46:22 -07001764
Debargha Mukherjeeedced252017-10-20 00:02:00 -07001765 write_intra_mode_kf(cm, ec_ctx, mi, above_mi, left_mi, 0, mbmi->mode, w);
Jingning Han0b7cbe62017-03-08 10:22:47 -08001766
Jingning Hand3a64432017-04-06 17:04:17 -07001767 if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x,
Luc Trudeau2c317902017-04-28 11:06:50 -04001768 xd->plane[1].subsampling_y)) {
Jingning Hanf04254f2017-03-08 10:51:35 -08001769 write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mbmi->mode, w);
Jingning Han0b7cbe62017-03-08 10:22:47 -08001770
Luc Trudeauf5334002017-04-25 12:21:26 -04001771#if CONFIG_CFL
Luc Trudeau6e1cd782017-06-21 13:52:36 -04001772 if (mbmi->uv_mode == UV_CFL_PRED) {
David Michael Barr23198662017-06-19 23:19:48 +09001773 write_cfl_alphas(ec_ctx, mbmi->cfl_alpha_idx, mbmi->cfl_alpha_signs, w);
Luc Trudeauf5334002017-04-25 12:21:26 -04001774 }
Luc Trudeauf5334002017-04-25 12:21:26 -04001775#endif
Luc Trudeau2c317902017-04-28 11:06:50 -04001776 }
Debargha Mukherjee6ea917e2017-10-19 09:31:29 -07001777
Yaowu Xuc27fc142016-08-22 16:08:15 -07001778#if CONFIG_EXT_INTRA
Joe Young3ca43bf2017-10-06 15:12:46 -07001779 write_intra_angle_info(xd, ec_ctx, w);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001780#endif // CONFIG_EXT_INTRA
Hui Sue87fb232017-10-05 15:00:15 -07001781 if (av1_allow_palette(cm->allow_screen_content_tools, bsize))
Yaowu Xuc27fc142016-08-22 16:08:15 -07001782 write_palette_mode_info(cm, xd, mi, w);
hui su5db97432016-10-14 16:10:14 -07001783#if CONFIG_FILTER_INTRA
Yue Chen57b8ff62017-10-10 23:37:31 -07001784 write_filter_intra_mode_info(cm, xd, mbmi, w);
hui su5db97432016-10-14 16:10:14 -07001785#endif // CONFIG_FILTER_INTRA
Yaowu Xuc27fc142016-08-22 16:08:15 -07001786
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001787#if !CONFIG_TXK_SEL
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001788 av1_write_tx_type(cm, xd, w);
Angie Chiangcd9b03f2017-04-16 13:37:13 -07001789#endif // !CONFIG_TXK_SEL
Yaowu Xuc27fc142016-08-22 16:08:15 -07001790}
1791
Angie Chiangd4022822016-11-02 18:30:25 -07001792#if CONFIG_RD_DEBUG
1793static void dump_mode_info(MODE_INFO *mi) {
1794 printf("\nmi->mbmi.mi_row == %d\n", mi->mbmi.mi_row);
1795 printf("&& mi->mbmi.mi_col == %d\n", mi->mbmi.mi_col);
1796 printf("&& mi->mbmi.sb_type == %d\n", mi->mbmi.sb_type);
1797 printf("&& mi->mbmi.tx_size == %d\n", mi->mbmi.tx_size);
1798 if (mi->mbmi.sb_type >= BLOCK_8X8) {
1799 printf("&& mi->mbmi.mode == %d\n", mi->mbmi.mode);
1800 } else {
1801 printf("&& mi->bmi[0].as_mode == %d\n", mi->bmi[0].as_mode);
1802 }
1803}
Angie Chiangd02001d2016-11-06 15:31:49 -08001804static int rd_token_stats_mismatch(RD_STATS *rd_stats, TOKEN_STATS *token_stats,
1805 int plane) {
1806 if (rd_stats->txb_coeff_cost[plane] != token_stats->cost) {
1807 int r, c;
1808 printf("\nplane %d rd_stats->txb_coeff_cost %d token_stats->cost %d\n",
1809 plane, rd_stats->txb_coeff_cost[plane], token_stats->cost);
Angie Chiangd02001d2016-11-06 15:31:49 -08001810 printf("rd txb_coeff_cost_map\n");
1811 for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) {
1812 for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) {
1813 printf("%d ", rd_stats->txb_coeff_cost_map[plane][r][c]);
1814 }
1815 printf("\n");
1816 }
1817
1818 printf("pack txb_coeff_cost_map\n");
1819 for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) {
1820 for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) {
1821 printf("%d ", token_stats->txb_coeff_cost_map[r][c]);
1822 }
1823 printf("\n");
1824 }
Angie Chiangd02001d2016-11-06 15:31:49 -08001825 return 1;
1826 }
1827 return 0;
1828}
Angie Chiangd4022822016-11-02 18:30:25 -07001829#endif
1830
Di Chen56586622017-06-09 13:49:44 -07001831#if ENC_MISMATCH_DEBUG
1832static void enc_dump_logs(AV1_COMP *cpi, int mi_row, int mi_col) {
1833 AV1_COMMON *const cm = &cpi->common;
1834 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
1835 MODE_INFO *m;
1836 xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col);
1837 m = xd->mi[0];
1838 if (is_inter_block(&m->mbmi)) {
1839#define FRAME_TO_CHECK 1
Zoe Liu17af2742017-10-06 10:36:42 -07001840 if (cm->current_video_frame == FRAME_TO_CHECK && cm->show_frame == 1) {
Di Chen56586622017-06-09 13:49:44 -07001841 const MB_MODE_INFO *const mbmi = &m->mbmi;
1842 const BLOCK_SIZE bsize = mbmi->sb_type;
1843
1844 int_mv mv[2];
1845 int is_comp_ref = has_second_ref(&m->mbmi);
1846 int ref;
1847
1848 for (ref = 0; ref < 1 + is_comp_ref; ++ref)
1849 mv[ref].as_mv = m->mbmi.mv[ref].as_mv;
1850
1851 if (!is_comp_ref) {
1852#if CONFIG_COMPOUND_SINGLEREF
1853 if (is_inter_singleref_comp_mode(m->mbmi.mode))
1854 mv[1].as_mv = m->mbmi.mv[1].as_mv;
1855 else
1856#endif // CONFIG_COMPOUND_SINGLEREF
1857 mv[1].as_int = 0;
1858 }
Di Chen56586622017-06-09 13:49:44 -07001859
Di Chen56586622017-06-09 13:49:44 -07001860 MACROBLOCK *const x = &cpi->td.mb;
Di Chen56586622017-06-09 13:49:44 -07001861 const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext;
1862 const int16_t mode_ctx = av1_mode_context_analyzer(
1863 mbmi_ext->mode_context, mbmi->ref_frame, bsize, -1);
1864 const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK;
1865 int16_t zeromv_ctx = -1;
1866 int16_t refmv_ctx = -1;
1867 if (mbmi->mode != NEWMV) {
Sarah Parker2b9ec2e2017-10-30 17:34:08 -07001868 zeromv_ctx = (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK;
Di Chen56586622017-06-09 13:49:44 -07001869 if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) {
Sarah Parker2b9ec2e2017-10-30 17:34:08 -07001870 assert(mbmi->mode == GLOBALMV);
Di Chen56586622017-06-09 13:49:44 -07001871 }
Sarah Parker2b9ec2e2017-10-30 17:34:08 -07001872 if (mbmi->mode != GLOBALMV) {
Di Chen56586622017-06-09 13:49:44 -07001873 refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK;
1874 if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6;
1875 if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7;
1876 if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8;
1877 }
1878 }
1879
1880 int8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame);
1881 printf(
1882 "=== ENCODER ===: "
1883 "Frame=%d, (mi_row,mi_col)=(%d,%d), mode=%d, bsize=%d, "
1884 "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, "
1885 "ref[1]=%d, motion_mode=%d, inter_mode_ctx=%d, mode_ctx=%d, "
Zoe Liu0b3ef732017-10-06 18:37:24 -07001886 "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d\n",
Di Chen56586622017-06-09 13:49:44 -07001887 cm->current_video_frame, mi_row, mi_col, mbmi->mode, bsize,
1888 cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, mv[1].as_mv.row,
1889 mv[1].as_mv.col, mbmi->ref_frame[0], mbmi->ref_frame[1],
1890 mbmi->motion_mode, mbmi_ext->mode_context[ref_frame_type], mode_ctx,
Di Chen56586622017-06-09 13:49:44 -07001891 newmv_ctx, zeromv_ctx, refmv_ctx);
1892 }
1893 }
1894}
1895#endif // ENC_MISMATCH_DEBUG
1896
Yue Chen64550b62017-01-12 12:18:22 -08001897static void write_mbmi_b(AV1_COMP *cpi, const TileInfo *const tile,
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001898 aom_writer *w, int mi_row, int mi_col) {
Yaowu Xuf883b422016-08-30 14:01:10 -07001899 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001900 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
1901 MODE_INFO *m;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001902 int bh, bw;
Yaowu Xuc27fc142016-08-22 16:08:15 -07001903 xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col);
1904 m = xd->mi[0];
1905
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01001906 assert(m->mbmi.sb_type <= cm->sb_size ||
Rupert Swarbrick72678572017-08-02 12:05:26 +01001907 (m->mbmi.sb_type >= BLOCK_SIZES && m->mbmi.sb_type < BLOCK_SIZES_ALL));
Yaowu Xuc27fc142016-08-22 16:08:15 -07001908
Jingning Hanc709e1f2016-12-06 14:48:09 -08001909 bh = mi_size_high[m->mbmi.sb_type];
1910 bw = mi_size_wide[m->mbmi.sb_type];
Yaowu Xuc27fc142016-08-22 16:08:15 -07001911
1912 cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col);
1913
Urvang Joshi359dc2b2017-04-27 15:41:47 -07001914 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw,
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08001915#if CONFIG_DEPENDENT_HORZTILES
Urvang Joshi359dc2b2017-04-27 15:41:47 -07001916 cm->dependent_horz_tiles,
1917#endif // CONFIG_DEPENDENT_HORZTILES
1918 cm->mi_rows, cm->mi_cols);
Yushin Cho77bba8d2016-11-04 16:36:56 -07001919
Yaowu Xuc27fc142016-08-22 16:08:15 -07001920 if (frame_is_intra_only(cm)) {
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02001921#if CONFIG_INTRABC
Hui Su12546aa2017-10-13 16:10:01 -07001922 if (cm->allow_screen_content_tools) {
1923 xd->above_txfm_context =
1924 cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2);
1925 xd->left_txfm_context = xd->left_txfm_context_buffer +
1926 ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2);
1927 }
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02001928#endif // CONFIG_INTRABC
Alex Converse44c2bad2017-05-11 09:36:10 -07001929 write_mb_modes_kf(cm, xd,
1930#if CONFIG_INTRABC
1931 cpi->td.mb.mbmi_ext,
1932#endif // CONFIG_INTRABC
1933 mi_row, mi_col, w);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001934 } else {
Jingning Han331662e2017-05-30 17:03:32 -07001935 xd->above_txfm_context =
1936 cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2);
1937 xd->left_txfm_context = xd->left_txfm_context_buffer +
1938 ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2);
Angie Chiang38edf682017-02-21 15:13:09 -08001939 // has_subpel_mv_component needs the ref frame buffers set up to look
1940 // up if they are scaled. has_subpel_mv_component is in turn needed by
Yaowu Xuc27fc142016-08-22 16:08:15 -07001941 // write_switchable_interp_filter, which is called by pack_inter_mode_mvs.
1942 set_ref_ptrs(cm, xd, m->mbmi.ref_frame[0], m->mbmi.ref_frame[1]);
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02001943#if CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07001944 if (!has_second_ref(&m->mbmi) && is_inter_singleref_comp_mode(m->mbmi.mode))
1945 xd->block_refs[1] = xd->block_refs[0];
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02001946#endif // CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07001947
Di Chen56586622017-06-09 13:49:44 -07001948#if ENC_MISMATCH_DEBUG
Di Chen56586622017-06-09 13:49:44 -07001949 enc_dump_logs(cpi, mi_row, mi_col);
1950#endif // ENC_MISMATCH_DEBUG
Yaowu Xuc27fc142016-08-22 16:08:15 -07001951
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02001952 pack_inter_mode_mvs(cpi, mi_row, mi_col, w);
Yaowu Xuc27fc142016-08-22 16:08:15 -07001953 }
Yue Chen64550b62017-01-12 12:18:22 -08001954}
Yaowu Xuc27fc142016-08-22 16:08:15 -07001955
Yue Chen64550b62017-01-12 12:18:22 -08001956static void write_tokens_b(AV1_COMP *cpi, const TileInfo *const tile,
1957 aom_writer *w, const TOKENEXTRA **tok,
1958 const TOKENEXTRA *const tok_end, int mi_row,
1959 int mi_col) {
1960 AV1_COMMON *const cm = &cpi->common;
1961 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
Wei-Ting Lin1d46d902017-06-26 15:57:18 -07001962 const int mi_offset = mi_row * cm->mi_stride + mi_col;
1963 MODE_INFO *const m = *(cm->mi_grid_visible + mi_offset);
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05001964 MB_MODE_INFO *const mbmi = &m->mbmi;
Yue Chen64550b62017-01-12 12:18:22 -08001965 int plane;
1966 int bh, bw;
Yushin Chod0b77ac2017-10-20 17:33:16 -07001967#if CONFIG_LV_MAP
Yushin Cho258a0242017-03-06 13:53:01 -08001968 MACROBLOCK *const x = &cpi->td.mb;
Yue Chen64550b62017-01-12 12:18:22 -08001969 (void)tok;
1970 (void)tok_end;
1971#endif
Wei-Ting Lin1d46d902017-06-26 15:57:18 -07001972 xd->mi = cm->mi_grid_visible + mi_offset;
Yue Chen64550b62017-01-12 12:18:22 -08001973
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01001974 assert(mbmi->sb_type <= cm->sb_size ||
Rupert Swarbrick72678572017-08-02 12:05:26 +01001975 (mbmi->sb_type >= BLOCK_SIZES && mbmi->sb_type < BLOCK_SIZES_ALL));
Yue Chen64550b62017-01-12 12:18:22 -08001976
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05001977 bh = mi_size_high[mbmi->sb_type];
1978 bw = mi_size_wide[mbmi->sb_type];
Yue Chen64550b62017-01-12 12:18:22 -08001979 cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col);
1980
Urvang Joshi359dc2b2017-04-27 15:41:47 -07001981 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw,
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08001982#if CONFIG_DEPENDENT_HORZTILES
Urvang Joshi359dc2b2017-04-27 15:41:47 -07001983 cm->dependent_horz_tiles,
1984#endif // CONFIG_DEPENDENT_HORZTILES
1985 cm->mi_rows, cm->mi_cols);
Yue Chen64550b62017-01-12 12:18:22 -08001986
Fangwen Fub3be9262017-03-06 15:34:28 -08001987 for (plane = 0; plane <= 1; ++plane) {
1988 const uint8_t palette_size_plane =
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05001989 mbmi->palette_mode_info.palette_size[plane];
Fangwen Fub3be9262017-03-06 15:34:28 -08001990 if (palette_size_plane > 0) {
Alex Converseed37d012017-04-24 11:15:24 -07001991#if CONFIG_INTRABC
1992 assert(mbmi->use_intrabc == 0);
1993#endif
Fangwen Fub3be9262017-03-06 15:34:28 -08001994 int rows, cols;
hui su9bc1d8d2017-03-24 12:36:03 -07001995 assert(mbmi->sb_type >= BLOCK_8X8);
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05001996 av1_get_block_dimensions(mbmi->sb_type, plane, xd, NULL, NULL, &rows,
Fangwen Fub3be9262017-03-06 15:34:28 -08001997 &cols);
1998 assert(*tok < tok_end);
Sarah Parker99e7daa2017-08-29 10:30:13 -07001999 pack_map_tokens(w, tok, palette_size_plane, rows * cols);
Jingning Han13648e72017-08-17 09:21:53 -07002000#if !CONFIG_LV_MAP
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05002001 assert(*tok < tok_end + mbmi->skip);
Jingning Han13648e72017-08-17 09:21:53 -07002002#endif // !CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -07002003 }
Fangwen Fub3be9262017-03-06 15:34:28 -08002004 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002005
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05002006 if (!mbmi->skip) {
Yushin Chod0b77ac2017-10-20 17:33:16 -07002007#if !CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -07002008 assert(*tok < tok_end);
Yushin Cho258a0242017-03-06 13:53:01 -08002009#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07002010 for (plane = 0; plane < MAX_MB_PLANE; ++plane) {
Jingning Hand3a64432017-04-06 17:04:17 -07002011 if (!is_chroma_reference(mi_row, mi_col, mbmi->sb_type,
2012 xd->plane[plane].subsampling_x,
2013 xd->plane[plane].subsampling_y)) {
Jingning Han13648e72017-08-17 09:21:53 -07002014#if !CONFIG_LV_MAP
Jingning Hanc20dc8e2017-02-17 15:37:28 -08002015 (*tok)++;
Jingning Han13648e72017-08-17 09:21:53 -07002016#endif // !CONFIG_LV_MAP
Jingning Hanc20dc8e2017-02-17 15:37:28 -08002017 continue;
2018 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002019 const struct macroblockd_plane *const pd = &xd->plane[plane];
Yaowu Xuc27fc142016-08-22 16:08:15 -07002020 BLOCK_SIZE bsize = mbmi->sb_type;
2021 const BLOCK_SIZE plane_bsize =
Jingning Han29a41202017-04-05 11:53:32 -07002022 AOMMAX(BLOCK_4X4, get_plane_block_size(bsize, pd));
Yaowu Xuc27fc142016-08-22 16:08:15 -07002023
Jingning Han42a0fb32016-10-31 10:43:31 -07002024 const int num_4x4_w =
2025 block_size_wide[plane_bsize] >> tx_size_wide_log2[0];
2026 const int num_4x4_h =
2027 block_size_high[plane_bsize] >> tx_size_wide_log2[0];
Yaowu Xuc27fc142016-08-22 16:08:15 -07002028 int row, col;
Angie Chiangd4022822016-11-02 18:30:25 -07002029 TOKEN_STATS token_stats;
Angie Chiangd02001d2016-11-06 15:31:49 -08002030 init_token_stats(&token_stats);
Angie Chiangd4022822016-11-02 18:30:25 -07002031
Jingning Hanc2b797f2017-07-19 09:37:11 -07002032 const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, pd);
2033 int mu_blocks_wide =
2034 block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0];
2035 int mu_blocks_high =
2036 block_size_high[max_unit_bsize] >> tx_size_high_log2[0];
2037
2038 mu_blocks_wide = AOMMIN(num_4x4_w, mu_blocks_wide);
2039 mu_blocks_high = AOMMIN(num_4x4_h, mu_blocks_high);
2040
Jingning Hanfe45b212016-11-22 10:30:23 -08002041 if (is_inter_block(mbmi)) {
Rupert Swarbrick4e7b7d62017-09-28 17:30:44 +01002042 const TX_SIZE max_tx_size = get_vartx_max_txsize(
2043 mbmi, plane_bsize, pd->subsampling_x || pd->subsampling_y);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002044 int block = 0;
Jingning Han42a0fb32016-10-31 10:43:31 -07002045 const int step =
2046 tx_size_wide_unit[max_tx_size] * tx_size_high_unit[max_tx_size];
2047 const int bkw = tx_size_wide_unit[max_tx_size];
2048 const int bkh = tx_size_high_unit[max_tx_size];
Rupert Swarbrick4e7b7d62017-09-28 17:30:44 +01002049 assert(bkw <= mu_blocks_wide);
2050 assert(bkh <= mu_blocks_high);
Jingning Hanc2b797f2017-07-19 09:37:11 -07002051 for (row = 0; row < num_4x4_h; row += mu_blocks_high) {
Luc Trudeauda9397a2017-07-21 12:00:22 -04002052 const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h);
Jingning Hanc2b797f2017-07-19 09:37:11 -07002053 for (col = 0; col < num_4x4_w; col += mu_blocks_wide) {
2054 int blk_row, blk_col;
Jingning Hanc2b797f2017-07-19 09:37:11 -07002055 const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w);
2056 for (blk_row = row; blk_row < unit_height; blk_row += bkh) {
2057 for (blk_col = col; blk_col < unit_width; blk_col += bkw) {
2058 pack_txb_tokens(w,
Jingning Han5ab7ed42017-05-18 16:15:52 -07002059#if CONFIG_LV_MAP
Jingning Hana2285692017-10-25 15:14:31 -07002060 cm, x,
Jingning Han4fe5f672017-05-19 15:46:07 -07002061#endif
Jingning Hana2285692017-10-25 15:14:31 -07002062 tok, tok_end, xd, mbmi, plane, plane_bsize,
2063 cm->bit_depth, block, blk_row, blk_col,
2064 max_tx_size, &token_stats);
Jingning Hanc2b797f2017-07-19 09:37:11 -07002065 block += step;
2066 }
2067 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002068 }
2069 }
Angie Chiangd02001d2016-11-06 15:31:49 -08002070#if CONFIG_RD_DEBUG
Angie Chiang3963d632016-11-10 18:41:40 -08002071 if (mbmi->sb_type >= BLOCK_8X8 &&
Luc Trudeau3e32f1a2017-03-08 10:37:49 -05002072 rd_token_stats_mismatch(&mbmi->rd_stats, &token_stats, plane)) {
Angie Chiangd02001d2016-11-06 15:31:49 -08002073 dump_mode_info(m);
2074 assert(0);
2075 }
Jingning Hanfe45b212016-11-22 10:30:23 -08002076#endif // CONFIG_RD_DEBUG
Yaowu Xuc27fc142016-08-22 16:08:15 -07002077 } else {
Jingning Han5ab7ed42017-05-18 16:15:52 -07002078#if CONFIG_LV_MAP
2079 av1_write_coeffs_mb(cm, x, w, plane);
2080#else
hui su0c6244b2017-07-12 17:11:43 -07002081 const TX_SIZE tx = av1_get_tx_size(plane, xd);
Jingning Han42a0fb32016-10-31 10:43:31 -07002082 const int bkw = tx_size_wide_unit[tx];
2083 const int bkh = tx_size_high_unit[tx];
Jingning Han5b701742017-07-19 14:39:07 -07002084 int blk_row, blk_col;
2085
2086 for (row = 0; row < num_4x4_h; row += mu_blocks_high) {
2087 for (col = 0; col < num_4x4_w; col += mu_blocks_wide) {
2088 const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h);
2089 const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w);
2090
2091 for (blk_row = row; blk_row < unit_height; blk_row += bkh) {
2092 for (blk_col = col; blk_col < unit_width; blk_col += bkw) {
Sarah Parker99e7daa2017-08-29 10:30:13 -07002093#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
2094 TX_TYPE tx_type =
2095 av1_get_tx_type(plane ? PLANE_TYPE_UV : PLANE_TYPE_Y, xd,
2096 blk_row, blk_col, 0, tx);
2097#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
Jingning Han5b701742017-07-19 14:39:07 -07002098 pack_mb_tokens(w, tok, tok_end, cm->bit_depth, tx,
Sarah Parker99e7daa2017-08-29 10:30:13 -07002099#if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
2100 tx_type, is_inter_block(mbmi),
2101#endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK
Jingning Han5b701742017-07-19 14:39:07 -07002102 &token_stats);
Jingning Han5b701742017-07-19 14:39:07 -07002103 }
2104 }
Fangwen Fu33bcd112017-02-07 16:42:41 -08002105 }
2106 }
Jingning Han5ab7ed42017-05-18 16:15:52 -07002107#endif // CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -07002108 }
Angie Chiangd4022822016-11-02 18:30:25 -07002109
Yushin Chod0b77ac2017-10-20 17:33:16 -07002110#if !CONFIG_LV_MAP
Yaowu Xuc27fc142016-08-22 16:08:15 -07002111 assert(*tok < tok_end && (*tok)->token == EOSB_TOKEN);
2112 (*tok)++;
Yushin Cho258a0242017-03-06 13:53:01 -08002113#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07002114 }
2115 }
2116}
2117
Sebastien Alaiwan1bc94fc2017-10-31 10:25:17 +01002118#if NC_MODE_INFO
Yue Chen9ab6d712017-01-12 15:50:46 -08002119static void write_tokens_sb(AV1_COMP *cpi, const TileInfo *const tile,
2120 aom_writer *w, const TOKENEXTRA **tok,
2121 const TOKENEXTRA *const tok_end, int mi_row,
2122 int mi_col, BLOCK_SIZE bsize) {
2123 const AV1_COMMON *const cm = &cpi->common;
Yue Chenf27b1602017-01-13 11:11:43 -08002124 const int hbs = mi_size_wide[bsize] / 2;
Yue Chen9ab6d712017-01-12 15:50:46 -08002125 PARTITION_TYPE partition;
2126 BLOCK_SIZE subsize;
Yue Chen9ab6d712017-01-12 15:50:46 -08002127
2128 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return;
2129
Yue Chenf27b1602017-01-13 11:11:43 -08002130 partition = get_partition(cm, mi_row, mi_col, bsize);
Yue Chen9ab6d712017-01-12 15:50:46 -08002131 subsize = get_subsize(bsize, partition);
2132
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002133 switch (partition) {
2134 case PARTITION_NONE:
2135 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2136 break;
2137 case PARTITION_HORZ:
2138 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2139 if (mi_row + hbs < cm->mi_rows)
2140 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2141 break;
2142 case PARTITION_VERT:
2143 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2144 if (mi_col + hbs < cm->mi_cols)
2145 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2146 break;
2147 case PARTITION_SPLIT:
2148 write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize);
2149 write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs,
2150 subsize);
2151 write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col,
2152 subsize);
2153 write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs,
2154 subsize);
2155 break;
Yue Chenf27b1602017-01-13 11:11:43 -08002156#if CONFIG_EXT_PARTITION_TYPES
Rupert Swarbrick3dd33912017-09-12 14:24:11 +01002157#if CONFIG_EXT_PARTITION_TYPES_AB
2158#error NC_MODE_INFO+MOTION_VAR not yet supported for new HORZ/VERT_AB partitions
2159#endif
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002160 case PARTITION_HORZ_A:
2161 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2162 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2163 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2164 break;
2165 case PARTITION_HORZ_B:
2166 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2167 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2168 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs);
2169 break;
2170 case PARTITION_VERT_A:
2171 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2172 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2173 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2174 break;
2175 case PARTITION_VERT_B:
2176 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2177 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2178 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs);
2179 break;
Yue Chenf27b1602017-01-13 11:11:43 -08002180#endif // CONFIG_EXT_PARTITION_TYPES
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002181 default: assert(0);
Yue Chen9ab6d712017-01-12 15:50:46 -08002182 }
2183}
2184#endif
2185
Yue Chen64550b62017-01-12 12:18:22 -08002186static void write_modes_b(AV1_COMP *cpi, const TileInfo *const tile,
2187 aom_writer *w, const TOKENEXTRA **tok,
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02002188 const TOKENEXTRA *const tok_end, int mi_row,
2189 int mi_col) {
2190 write_mbmi_b(cpi, tile, w, mi_row, mi_col);
Jingning Hanf5a4d3b2017-08-27 23:01:19 -07002191
Sebastien Alaiwan1bc94fc2017-10-31 10:25:17 +01002192#if NC_MODE_INFO
Yue Chen9ab6d712017-01-12 15:50:46 -08002193 (void)tok;
2194 (void)tok_end;
2195#else
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02002196 write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
Yue Chen9ab6d712017-01-12 15:50:46 -08002197#endif
Yue Chen64550b62017-01-12 12:18:22 -08002198}
2199
Yaowu Xuf883b422016-08-30 14:01:10 -07002200static void write_partition(const AV1_COMMON *const cm,
Yaowu Xuc27fc142016-08-22 16:08:15 -07002201 const MACROBLOCKD *const xd, int hbs, int mi_row,
2202 int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize,
Yaowu Xuf883b422016-08-30 14:01:10 -07002203 aom_writer *w) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002204 const int has_rows = (mi_row + hbs) < cm->mi_rows;
2205 const int has_cols = (mi_col + hbs) < cm->mi_cols;
Alex Converse55c6bde2017-01-12 15:55:31 -08002206 const int is_partition_point = bsize >= BLOCK_8X8;
2207 const int ctx = is_partition_point
2208 ? partition_plane_context(xd, mi_row, mi_col,
2209#if CONFIG_UNPOISON_PARTITION_CTX
2210 has_rows, has_cols,
2211#endif
2212 bsize)
2213 : 0;
Thomas Daviesc2ec0e42017-01-11 16:27:27 +00002214 FRAME_CONTEXT *ec_ctx = xd->tile_ctx;
2215 (void)cm;
Thomas Daviesc2ec0e42017-01-11 16:27:27 +00002216
Jingning Hanbf9c6b72016-12-14 14:50:45 -08002217 if (!is_partition_point) return;
2218
Yaowu Xuc27fc142016-08-22 16:08:15 -07002219 if (has_rows && has_cols) {
2220#if CONFIG_EXT_PARTITION_TYPES
Rupert Swarbrick2fa6e1c2017-09-11 12:38:10 +01002221 const int num_partition_types =
2222 (mi_width_log2_lookup[bsize] > mi_width_log2_lookup[BLOCK_8X8])
2223 ? EXT_PARTITION_TYPES
2224 : PARTITION_TYPES;
Alex Converse57795a42017-03-14 12:18:25 -07002225#else
Rupert Swarbrick2fa6e1c2017-09-11 12:38:10 +01002226 const int num_partition_types = PARTITION_TYPES;
2227#endif
2228 aom_write_symbol(w, p, ec_ctx->partition_cdf[ctx], num_partition_types);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002229 } else if (!has_rows && has_cols) {
2230 assert(p == PARTITION_SPLIT || p == PARTITION_HORZ);
Stanislav Vitvitskyy8711cf52017-08-18 15:17:57 -07002231 assert(bsize > BLOCK_8X8);
2232 aom_cdf_prob cdf[2];
2233 partition_gather_vert_alike(cdf, ec_ctx->partition_cdf[ctx]);
2234 aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002235 } else if (has_rows && !has_cols) {
2236 assert(p == PARTITION_SPLIT || p == PARTITION_VERT);
Stanislav Vitvitskyy8711cf52017-08-18 15:17:57 -07002237 assert(bsize > BLOCK_8X8);
2238 aom_cdf_prob cdf[2];
2239 partition_gather_horz_alike(cdf, ec_ctx->partition_cdf[ctx]);
2240 aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002241 } else {
2242 assert(p == PARTITION_SPLIT);
2243 }
2244}
2245
Yaowu Xuf883b422016-08-30 14:01:10 -07002246static void write_modes_sb(AV1_COMP *const cpi, const TileInfo *const tile,
2247 aom_writer *const w, const TOKENEXTRA **tok,
Sebastien Alaiwan0cf54d42017-10-16 16:10:04 +02002248 const TOKENEXTRA *const tok_end, int mi_row,
2249 int mi_col, BLOCK_SIZE bsize) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002250 const AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002251 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
Jingning Hanc709e1f2016-12-06 14:48:09 -08002252 const int hbs = mi_size_wide[bsize] / 2;
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01002253#if CONFIG_EXT_PARTITION_TYPES
2254 const int quarter_step = mi_size_wide[bsize] / 4;
2255 int i;
Rupert Swarbrick3dd33912017-09-12 14:24:11 +01002256#if CONFIG_EXT_PARTITION_TYPES_AB
2257 const int qbs = mi_size_wide[bsize] / 4;
2258#endif // CONFIG_EXT_PARTITION_TYPES_AB
2259#endif // CONFIG_EXT_PARTITION_TYPES
Yaowu Xuc27fc142016-08-22 16:08:15 -07002260 const PARTITION_TYPE partition = get_partition(cm, mi_row, mi_col, bsize);
2261 const BLOCK_SIZE subsize = get_subsize(bsize, partition);
Jingning Han52261842016-12-14 12:17:49 -08002262
Yaowu Xuc27fc142016-08-22 16:08:15 -07002263 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return;
2264
2265 write_partition(cm, xd, hbs, mi_row, mi_col, partition, bsize, w);
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002266 switch (partition) {
2267 case PARTITION_NONE:
2268 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2269 break;
2270 case PARTITION_HORZ:
2271 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2272 if (mi_row + hbs < cm->mi_rows)
2273 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2274 break;
2275 case PARTITION_VERT:
2276 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2277 if (mi_col + hbs < cm->mi_cols)
2278 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2279 break;
2280 case PARTITION_SPLIT:
2281 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize);
2282 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, subsize);
2283 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, subsize);
2284 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs,
2285 subsize);
2286 break;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002287#if CONFIG_EXT_PARTITION_TYPES
Rupert Swarbrick3dd33912017-09-12 14:24:11 +01002288#if CONFIG_EXT_PARTITION_TYPES_AB
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002289 case PARTITION_HORZ_A:
2290 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2291 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + qbs, mi_col);
2292 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2293 break;
2294 case PARTITION_HORZ_B:
2295 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2296 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2297 if (mi_row + 3 * qbs < cm->mi_rows)
2298 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + 3 * qbs, mi_col);
2299 break;
2300 case PARTITION_VERT_A:
2301 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2302 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + qbs);
2303 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2304 break;
2305 case PARTITION_VERT_B:
2306 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2307 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2308 if (mi_col + 3 * qbs < cm->mi_cols)
2309 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + 3 * qbs);
2310 break;
Rupert Swarbrick3dd33912017-09-12 14:24:11 +01002311#else
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002312 case PARTITION_HORZ_A:
2313 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2314 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2315 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2316 break;
2317 case PARTITION_HORZ_B:
2318 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2319 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2320 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs);
2321 break;
2322 case PARTITION_VERT_A:
2323 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2324 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col);
2325 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2326 break;
2327 case PARTITION_VERT_B:
2328 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
2329 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs);
2330 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs);
2331 break;
Rupert Swarbrick3dd33912017-09-12 14:24:11 +01002332#endif
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002333 case PARTITION_HORZ_4:
2334 for (i = 0; i < 4; ++i) {
2335 int this_mi_row = mi_row + i * quarter_step;
2336 if (i > 0 && this_mi_row >= cm->mi_rows) break;
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01002337
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002338 write_modes_b(cpi, tile, w, tok, tok_end, this_mi_row, mi_col);
2339 }
2340 break;
2341 case PARTITION_VERT_4:
2342 for (i = 0; i < 4; ++i) {
2343 int this_mi_col = mi_col + i * quarter_step;
2344 if (i > 0 && this_mi_col >= cm->mi_cols) break;
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01002345
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002346 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, this_mi_col);
2347 }
2348 break;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002349#endif // CONFIG_EXT_PARTITION_TYPES
Debargha Mukherjeeedced252017-10-20 00:02:00 -07002350 default: assert(0);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002351 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002352
2353// update partition context
2354#if CONFIG_EXT_PARTITION_TYPES
2355 update_ext_partition_context(xd, mi_row, mi_col, subsize, bsize, partition);
2356#else
2357 if (bsize >= BLOCK_8X8 &&
2358 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT))
2359 update_partition_context(xd, mi_row, mi_col, subsize, bsize);
David Barkerf8935c92016-10-26 14:54:06 +01002360#endif // CONFIG_EXT_PARTITION_TYPES
Yaowu Xuc27fc142016-08-22 16:08:15 -07002361
Cheng Chenf572cd32017-08-25 18:34:51 -07002362#if CONFIG_LPF_SB
2363 // send filter level for each superblock (64x64)
2364 if (bsize == cm->sb_size) {
Cheng Chena4b27de2017-08-31 16:05:19 -07002365 if (mi_row == 0 && mi_col == 0) {
Cheng Chen41d37c22017-09-08 19:00:21 -07002366 aom_write_literal(w, cm->mi_grid_visible[0]->mbmi.filt_lvl, 6);
2367 cm->mi_grid_visible[0]->mbmi.reuse_sb_lvl = 0;
2368 cm->mi_grid_visible[0]->mbmi.delta = 0;
2369 cm->mi_grid_visible[0]->mbmi.sign = 0;
Cheng Chena4b27de2017-08-31 16:05:19 -07002370 } else {
2371 int prev_mi_row, prev_mi_col;
2372 if (mi_col - MAX_MIB_SIZE < 0) {
2373 prev_mi_row = mi_row - MAX_MIB_SIZE;
2374 prev_mi_col = mi_col;
2375 } else {
2376 prev_mi_row = mi_row;
2377 prev_mi_col = mi_col - MAX_MIB_SIZE;
2378 }
2379 MB_MODE_INFO *curr_mbmi =
2380 &cm->mi_grid_visible[mi_row * cm->mi_stride + mi_col]->mbmi;
2381 MB_MODE_INFO *prev_mbmi =
2382 &cm->mi_grid_visible[prev_mi_row * cm->mi_stride + prev_mi_col]->mbmi;
2383
2384 const uint8_t curr_lvl = curr_mbmi->filt_lvl;
2385 const uint8_t prev_lvl = prev_mbmi->filt_lvl;
Cheng Chena4b27de2017-08-31 16:05:19 -07002386
Cheng Chen41d37c22017-09-08 19:00:21 -07002387 const int reuse_prev_lvl = curr_lvl == prev_lvl;
2388 const int reuse_ctx = prev_mbmi->reuse_sb_lvl;
2389 curr_mbmi->reuse_sb_lvl = reuse_prev_lvl;
2390 aom_write_symbol(w, reuse_prev_lvl,
2391 xd->tile_ctx->lpf_reuse_cdf[reuse_ctx], 2);
Cheng Chen855f0fc2017-08-25 18:34:51 -07002392 cpi->td.counts->lpf_reuse[reuse_ctx][reuse_prev_lvl]++;
Cheng Chenc7855b12017-09-05 10:49:08 -07002393
Cheng Chen41d37c22017-09-08 19:00:21 -07002394 if (reuse_prev_lvl) {
2395 curr_mbmi->delta = 0;
2396 curr_mbmi->sign = 0;
2397 } else {
2398 const unsigned int delta = abs(curr_lvl - prev_lvl) / LPF_STEP;
2399 const int delta_ctx = prev_mbmi->delta;
2400 curr_mbmi->delta = delta;
2401 aom_write_symbol(w, delta, xd->tile_ctx->lpf_delta_cdf[delta_ctx],
2402 DELTA_RANGE);
Cheng Chen855f0fc2017-08-25 18:34:51 -07002403 cpi->td.counts->lpf_delta[delta_ctx][delta]++;
Cheng Chen41d37c22017-09-08 19:00:21 -07002404
2405 if (delta) {
2406 const int sign = curr_lvl > prev_lvl;
2407 const int sign_ctx = prev_mbmi->sign;
2408 curr_mbmi->sign = sign;
2409 aom_write_symbol(w, sign,
2410 xd->tile_ctx->lpf_sign_cdf[reuse_ctx][sign_ctx], 2);
Cheng Chen855f0fc2017-08-25 18:34:51 -07002411 cpi->td.counts->lpf_sign[reuse_ctx][sign_ctx][sign]++;
Cheng Chen41d37c22017-09-08 19:00:21 -07002412 } else {
2413 curr_mbmi->sign = 0;
2414 }
Cheng Chenc7855b12017-09-05 10:49:08 -07002415 }
Cheng Chena4b27de2017-08-31 16:05:19 -07002416 }
Cheng Chenf572cd32017-08-25 18:34:51 -07002417 }
2418#endif
2419
Jean-Marc Valin01435132017-02-18 14:12:53 -05002420#if CONFIG_CDEF
Cheng Chenf5bdeac2017-07-24 14:31:30 -07002421 if (bsize == cm->sb_size && cm->cdef_bits != 0 && !cm->all_lossless) {
2422 int width_step = mi_size_wide[BLOCK_64X64];
2423 int height_step = mi_size_high[BLOCK_64X64];
2424 int width, height;
2425 for (height = 0; (height < mi_size_high[cm->sb_size]) &&
2426 (mi_row + height < cm->mi_rows);
2427 height += height_step) {
2428 for (width = 0; (width < mi_size_wide[cm->sb_size]) &&
2429 (mi_col + width < cm->mi_cols);
2430 width += width_step) {
2431 if (!sb_all_skip(cm, mi_row + height, mi_col + width))
2432 aom_write_literal(
clang-format4eafefe2017-09-04 12:51:20 -07002433 w,
2434 cm->mi_grid_visible[(mi_row + height) * cm->mi_stride +
2435 (mi_col + width)]
2436 ->mbmi.cdef_strength,
Cheng Chenf5bdeac2017-07-24 14:31:30 -07002437 cm->cdef_bits);
2438 }
2439 }
Steinar Midtskogen5d56f4d2016-09-25 09:23:16 +02002440 }
2441#endif
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002442#if CONFIG_LOOP_RESTORATION
2443 for (int plane = 0; plane < MAX_MB_PLANE; ++plane) {
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002444 int rcol0, rcol1, rrow0, rrow1, tile_tl_idx;
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002445 if (av1_loop_restoration_corners_in_sb(cm, plane, mi_row, mi_col, bsize,
2446 &rcol0, &rcol1, &rrow0, &rrow1,
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002447 &tile_tl_idx)) {
2448 const int rstride = cm->rst_info[plane].horz_units_per_tile;
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002449 for (int rrow = rrow0; rrow < rrow1; ++rrow) {
2450 for (int rcol = rcol0; rcol < rcol1; ++rcol) {
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002451 const int rtile_idx = tile_tl_idx + rcol + rrow * rstride;
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002452 const RestorationUnitInfo *rui =
2453 &cm->rst_info[plane].unit_info[rtile_idx];
2454 loop_restoration_write_sb_coeffs(cm, xd, rui, w, plane);
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002455 }
2456 }
2457 }
2458 }
2459#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07002460}
2461
Yaowu Xuf883b422016-08-30 14:01:10 -07002462static void write_modes(AV1_COMP *const cpi, const TileInfo *const tile,
2463 aom_writer *const w, const TOKENEXTRA **tok,
Yaowu Xuc27fc142016-08-22 16:08:15 -07002464 const TOKENEXTRA *const tok_end) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002465 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002466 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
2467 const int mi_row_start = tile->mi_row_start;
2468 const int mi_row_end = tile->mi_row_end;
2469 const int mi_col_start = tile->mi_col_start;
2470 const int mi_col_end = tile->mi_col_end;
2471 int mi_row, mi_col;
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08002472
2473#if CONFIG_DEPENDENT_HORZTILES
Fangwen Fu73126c02017-02-08 22:37:47 -08002474 if (!cm->dependent_horz_tiles || mi_row_start == 0 ||
2475 tile->tg_horz_boundary) {
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08002476 av1_zero_above_context(cm, mi_col_start, mi_col_end);
2477 }
2478#else
Yaowu Xuf883b422016-08-30 14:01:10 -07002479 av1_zero_above_context(cm, mi_col_start, mi_col_end);
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08002480#endif
Arild Fuldseth07441162016-08-15 15:07:52 +02002481 if (cpi->common.delta_q_present_flag) {
2482 xd->prev_qindex = cpi->common.base_qindex;
Fangwen Fu231fe422017-04-24 17:52:29 -07002483#if CONFIG_EXT_DELTA_Q
2484 if (cpi->common.delta_lf_present_flag) {
Cheng Chena97394f2017-09-27 15:05:14 -07002485#if CONFIG_LOOPFILTER_LEVEL
2486 for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id)
2487 xd->prev_delta_lf[lf_id] = 0;
2488#endif // CONFIG_LOOPFILTER_LEVEL
Fangwen Fu231fe422017-04-24 17:52:29 -07002489 xd->prev_delta_lf_from_base = 0;
2490 }
2491#endif // CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +02002492 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002493
2494 for (mi_row = mi_row_start; mi_row < mi_row_end; mi_row += cm->mib_size) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002495 av1_zero_left_context(xd);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002496
2497 for (mi_col = mi_col_start; mi_col < mi_col_end; mi_col += cm->mib_size) {
Sebastien Alaiwan6534ba82017-10-13 20:35:14 +02002498 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, cm->sb_size);
Sebastien Alaiwan1bc94fc2017-10-31 10:25:17 +01002499#if NC_MODE_INFO
Yue Chen9ab6d712017-01-12 15:50:46 -08002500 write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, cm->sb_size);
2501#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07002502 }
2503 }
2504}
2505
Yaowu Xuc27fc142016-08-22 16:08:15 -07002506#if CONFIG_LOOP_RESTORATION
Debargha Mukherjee5cd2ab92016-09-08 15:15:17 -07002507static void encode_restoration_mode(AV1_COMMON *cm,
2508 struct aom_write_bit_buffer *wb) {
Debargha Mukherjeea43a2d92017-01-03 15:14:57 -08002509 int p;
Debargha Mukherjeea3d4fe52017-05-19 16:22:54 -07002510 RestorationInfo *rsi;
2511 for (p = 0; p < MAX_MB_PLANE; ++p) {
Debargha Mukherjeea43a2d92017-01-03 15:14:57 -08002512 rsi = &cm->rst_info[p];
2513 switch (rsi->frame_restoration_type) {
Debargha Mukherjeea3d4fe52017-05-19 16:22:54 -07002514 case RESTORE_NONE:
2515 aom_wb_write_bit(wb, 0);
2516 aom_wb_write_bit(wb, 0);
2517 break;
Debargha Mukherjeed23ceea2017-05-18 20:33:52 -07002518 case RESTORE_WIENER:
2519 aom_wb_write_bit(wb, 1);
2520 aom_wb_write_bit(wb, 0);
2521 break;
2522 case RESTORE_SGRPROJ:
2523 aom_wb_write_bit(wb, 1);
2524 aom_wb_write_bit(wb, 1);
2525 break;
Debargha Mukherjeea3d4fe52017-05-19 16:22:54 -07002526 case RESTORE_SWITCHABLE:
2527 aom_wb_write_bit(wb, 0);
2528 aom_wb_write_bit(wb, 1);
2529 break;
Debargha Mukherjeea43a2d92017-01-03 15:14:57 -08002530 default: assert(0);
2531 }
2532 }
Debargha Mukherjee1008c1e2017-03-06 19:18:43 -08002533 if (cm->rst_info[0].frame_restoration_type != RESTORE_NONE ||
2534 cm->rst_info[1].frame_restoration_type != RESTORE_NONE ||
2535 cm->rst_info[2].frame_restoration_type != RESTORE_NONE) {
Debargha Mukherjeea3d4fe52017-05-19 16:22:54 -07002536 aom_wb_write_bit(
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002537 wb, rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 2));
2538 if (rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 2)) {
Debargha Mukherjee1008c1e2017-03-06 19:18:43 -08002539 aom_wb_write_bit(
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002540 wb, rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 1));
Debargha Mukherjee1008c1e2017-03-06 19:18:43 -08002541 }
2542 }
Debargha Mukherjee84f567c2017-06-21 10:53:59 -07002543 int s = AOMMIN(cm->subsampling_x, cm->subsampling_y);
2544 if (s && (cm->rst_info[1].frame_restoration_type != RESTORE_NONE ||
2545 cm->rst_info[2].frame_restoration_type != RESTORE_NONE)) {
clang-format4eafefe2017-09-04 12:51:20 -07002546 aom_wb_write_bit(wb,
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002547 cm->rst_info[1].restoration_unit_size !=
2548 cm->rst_info[0].restoration_unit_size);
2549 assert(cm->rst_info[1].restoration_unit_size ==
2550 cm->rst_info[0].restoration_unit_size ||
2551 cm->rst_info[1].restoration_unit_size ==
2552 (cm->rst_info[0].restoration_unit_size >> s));
2553 assert(cm->rst_info[2].restoration_unit_size ==
2554 cm->rst_info[1].restoration_unit_size);
Debargha Mukherjee84f567c2017-06-21 10:53:59 -07002555 } else if (!s) {
Rupert Swarbrickbcb65fe2017-10-25 17:15:28 +01002556 assert(cm->rst_info[1].restoration_unit_size ==
2557 cm->rst_info[0].restoration_unit_size);
2558 assert(cm->rst_info[2].restoration_unit_size ==
2559 cm->rst_info[1].restoration_unit_size);
Debargha Mukherjee84f567c2017-06-21 10:53:59 -07002560 }
Debargha Mukherjee5cd2ab92016-09-08 15:15:17 -07002561}
2562
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002563static void write_wiener_filter(int wiener_win, const WienerInfo *wiener_info,
Debargha Mukherjeecfc12f32017-04-18 07:03:32 -07002564 WienerInfo *ref_wiener_info, aom_writer *wb) {
Debargha Mukherjee1cb757c2017-08-21 02:46:31 -07002565 if (wiener_win == WIENER_WIN)
2566 aom_write_primitive_refsubexpfin(
2567 wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1,
2568 WIENER_FILT_TAP0_SUBEXP_K,
2569 ref_wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV,
2570 wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV);
2571 else
2572 assert(wiener_info->vfilter[0] == 0 &&
2573 wiener_info->vfilter[WIENER_WIN - 1] == 0);
Debargha Mukherjeecfc12f32017-04-18 07:03:32 -07002574 aom_write_primitive_refsubexpfin(
2575 wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1,
2576 WIENER_FILT_TAP1_SUBEXP_K,
2577 ref_wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV,
2578 wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV);
2579 aom_write_primitive_refsubexpfin(
2580 wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1,
2581 WIENER_FILT_TAP2_SUBEXP_K,
2582 ref_wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV,
2583 wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV);
Debargha Mukherjee1cb757c2017-08-21 02:46:31 -07002584 if (wiener_win == WIENER_WIN)
2585 aom_write_primitive_refsubexpfin(
2586 wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1,
2587 WIENER_FILT_TAP0_SUBEXP_K,
2588 ref_wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV,
2589 wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV);
2590 else
2591 assert(wiener_info->hfilter[0] == 0 &&
2592 wiener_info->hfilter[WIENER_WIN - 1] == 0);
Debargha Mukherjeecfc12f32017-04-18 07:03:32 -07002593 aom_write_primitive_refsubexpfin(
2594 wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1,
2595 WIENER_FILT_TAP1_SUBEXP_K,
2596 ref_wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV,
2597 wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV);
2598 aom_write_primitive_refsubexpfin(
2599 wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1,
2600 WIENER_FILT_TAP2_SUBEXP_K,
2601 ref_wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV,
2602 wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV);
2603 memcpy(ref_wiener_info, wiener_info, sizeof(*wiener_info));
Debargha Mukherjee8f209a82016-10-12 10:47:01 -07002604}
2605
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002606static void write_sgrproj_filter(const SgrprojInfo *sgrproj_info,
Debargha Mukherjeecfc12f32017-04-18 07:03:32 -07002607 SgrprojInfo *ref_sgrproj_info,
2608 aom_writer *wb) {
Debargha Mukherjee8f209a82016-10-12 10:47:01 -07002609 aom_write_literal(wb, sgrproj_info->ep, SGRPROJ_PARAMS_BITS);
Debargha Mukherjeecfc12f32017-04-18 07:03:32 -07002610 aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX0 - SGRPROJ_PRJ_MIN0 + 1,
2611 SGRPROJ_PRJ_SUBEXP_K,
2612 ref_sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0,
2613 sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0);
2614 aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX1 - SGRPROJ_PRJ_MIN1 + 1,
2615 SGRPROJ_PRJ_SUBEXP_K,
2616 ref_sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1,
2617 sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1);
2618 memcpy(ref_sgrproj_info, sgrproj_info, sizeof(*sgrproj_info));
Debargha Mukherjee8f209a82016-10-12 10:47:01 -07002619}
2620
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002621static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm,
2622 MACROBLOCKD *xd,
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002623 const RestorationUnitInfo *rui,
2624 aom_writer *const w, int plane) {
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002625 const RestorationInfo *rsi = cm->rst_info + plane;
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002626 RestorationType frame_rtype = rsi->frame_restoration_type;
2627 if (frame_rtype == RESTORE_NONE) return;
Rupert Swarbrick09b5b162017-08-31 16:32:29 +01002628
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002629 const int wiener_win = (plane > 0) ? WIENER_WIN_CHROMA : WIENER_WIN;
2630 WienerInfo *wiener_info = xd->wiener_info + plane;
2631 SgrprojInfo *sgrproj_info = xd->sgrproj_info + plane;
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002632 RestorationType unit_rtype = rui->restoration_type;
Rupert Swarbrick09b5b162017-08-31 16:32:29 +01002633
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002634 if (frame_rtype == RESTORE_SWITCHABLE) {
2635 aom_write_symbol(w, unit_rtype, xd->tile_ctx->switchable_restore_cdf,
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002636 RESTORE_SWITCHABLE_TYPES);
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002637 switch (unit_rtype) {
2638 case RESTORE_WIENER:
2639 write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w);
2640 break;
2641 case RESTORE_SGRPROJ:
2642 write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w);
2643 break;
2644 default: assert(unit_rtype == RESTORE_NONE); break;
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002645 }
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002646 } else if (frame_rtype == RESTORE_WIENER) {
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002647#if CONFIG_NEW_MULTISYMBOL
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002648 aom_write_symbol(w, unit_rtype != RESTORE_NONE,
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002649 xd->tile_ctx->wiener_restore_cdf, 2);
2650#else
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002651 aom_write(w, unit_rtype != RESTORE_NONE, RESTORE_NONE_WIENER_PROB);
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002652#endif // CONFIG_NEW_MULTISYMBOL
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002653 if (unit_rtype != RESTORE_NONE) {
2654 write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w);
Rupert Swarbrick6c545212017-09-01 17:17:25 +01002655 }
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002656 } else if (frame_rtype == RESTORE_SGRPROJ) {
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002657#if CONFIG_NEW_MULTISYMBOL
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002658 aom_write_symbol(w, unit_rtype != RESTORE_NONE,
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002659 xd->tile_ctx->sgrproj_restore_cdf, 2);
2660#else
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002661 aom_write(w, unit_rtype != RESTORE_NONE, RESTORE_NONE_SGRPROJ_PROB);
Debargha Mukherjeebc732ef2017-10-12 12:40:25 -07002662#endif // CONFIG_NEW_MULTISYMBOL
Rupert Swarbrickdd6f09a2017-10-19 16:10:23 +01002663 if (unit_rtype != RESTORE_NONE) {
2664 write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w);
Rupert Swarbrick09b5b162017-08-31 16:32:29 +01002665 }
2666 }
2667}
Yaowu Xuc27fc142016-08-22 16:08:15 -07002668#endif // CONFIG_LOOP_RESTORATION
2669
Yaowu Xuf883b422016-08-30 14:01:10 -07002670static void encode_loopfilter(AV1_COMMON *cm, struct aom_write_bit_buffer *wb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002671 int i;
2672 struct loopfilter *lf = &cm->lf;
2673
Cheng Chen179479f2017-08-04 10:56:39 -07002674// Encode the loop filter level and type
Cheng Chenf572cd32017-08-25 18:34:51 -07002675#if !CONFIG_LPF_SB
Cheng Chen13fc8192017-08-19 11:49:28 -07002676#if CONFIG_LOOPFILTER_LEVEL
Cheng Chen179479f2017-08-04 10:56:39 -07002677 aom_wb_write_literal(wb, lf->filter_level[0], 6);
2678 aom_wb_write_literal(wb, lf->filter_level[1], 6);
2679 if (lf->filter_level[0] || lf->filter_level[1]) {
Cheng Chene94df5c2017-07-19 17:25:33 -07002680 aom_wb_write_literal(wb, lf->filter_level_u, 6);
2681 aom_wb_write_literal(wb, lf->filter_level_v, 6);
2682 }
Cheng Chen179479f2017-08-04 10:56:39 -07002683#else
2684 aom_wb_write_literal(wb, lf->filter_level, 6);
Cheng Chenf572cd32017-08-25 18:34:51 -07002685#endif // CONFIG_LOOPFILTER_LEVEL
2686#endif // CONFIG_LPF_SB
Yaowu Xuf883b422016-08-30 14:01:10 -07002687 aom_wb_write_literal(wb, lf->sharpness_level, 3);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002688
2689 // Write out loop filter deltas applied at the MB level based on mode or
2690 // ref frame (if they are enabled).
Yaowu Xuf883b422016-08-30 14:01:10 -07002691 aom_wb_write_bit(wb, lf->mode_ref_delta_enabled);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002692
2693 if (lf->mode_ref_delta_enabled) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002694 aom_wb_write_bit(wb, lf->mode_ref_delta_update);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002695 if (lf->mode_ref_delta_update) {
2696 for (i = 0; i < TOTAL_REFS_PER_FRAME; i++) {
2697 const int delta = lf->ref_deltas[i];
2698 const int changed = delta != lf->last_ref_deltas[i];
Yaowu Xuf883b422016-08-30 14:01:10 -07002699 aom_wb_write_bit(wb, changed);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002700 if (changed) {
2701 lf->last_ref_deltas[i] = delta;
Yaowu Xuf883b422016-08-30 14:01:10 -07002702 aom_wb_write_inv_signed_literal(wb, delta, 6);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002703 }
2704 }
2705
2706 for (i = 0; i < MAX_MODE_LF_DELTAS; i++) {
2707 const int delta = lf->mode_deltas[i];
2708 const int changed = delta != lf->last_mode_deltas[i];
Yaowu Xuf883b422016-08-30 14:01:10 -07002709 aom_wb_write_bit(wb, changed);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002710 if (changed) {
2711 lf->last_mode_deltas[i] = delta;
Yaowu Xuf883b422016-08-30 14:01:10 -07002712 aom_wb_write_inv_signed_literal(wb, delta, 6);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002713 }
2714 }
2715 }
2716 }
2717}
2718
Jean-Marc Valin01435132017-02-18 14:12:53 -05002719#if CONFIG_CDEF
Steinar Midtskogena9d41e82017-03-17 12:48:15 +01002720static void encode_cdef(const AV1_COMMON *cm, struct aom_write_bit_buffer *wb) {
Jean-Marc Valin5f5c1322017-03-21 16:20:21 -04002721 int i;
Steinar Midtskogen59782122017-07-20 08:49:43 +02002722#if CONFIG_CDEF_SINGLEPASS
2723 aom_wb_write_literal(wb, cm->cdef_pri_damping - 3, 2);
2724 assert(cm->cdef_pri_damping == cm->cdef_sec_damping);
2725#else
Steinar Midtskogen94de0aa2017-08-02 10:30:12 +02002726 aom_wb_write_literal(wb, cm->cdef_pri_damping - 5, 1);
2727 aom_wb_write_literal(wb, cm->cdef_sec_damping - 3, 2);
Steinar Midtskogen59782122017-07-20 08:49:43 +02002728#endif
Jean-Marc Valin5f5c1322017-03-21 16:20:21 -04002729 aom_wb_write_literal(wb, cm->cdef_bits, 2);
2730 for (i = 0; i < cm->nb_cdef_strengths; i++) {
2731 aom_wb_write_literal(wb, cm->cdef_strengths[i], CDEF_STRENGTH_BITS);
Steinar Midtskogen1c1161f2017-09-08 15:03:51 +02002732 if (cm->subsampling_x == cm->subsampling_y)
2733 aom_wb_write_literal(wb, cm->cdef_uv_strengths[i], CDEF_STRENGTH_BITS);
Jean-Marc Valin5f5c1322017-03-21 16:20:21 -04002734 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07002735}
2736#endif
2737
Yaowu Xuf883b422016-08-30 14:01:10 -07002738static void write_delta_q(struct aom_write_bit_buffer *wb, int delta_q) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002739 if (delta_q != 0) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002740 aom_wb_write_bit(wb, 1);
2741 aom_wb_write_inv_signed_literal(wb, delta_q, 6);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002742 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -07002743 aom_wb_write_bit(wb, 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002744 }
2745}
2746
Yaowu Xuf883b422016-08-30 14:01:10 -07002747static void encode_quantization(const AV1_COMMON *const cm,
2748 struct aom_write_bit_buffer *wb) {
2749 aom_wb_write_literal(wb, cm->base_qindex, QINDEX_BITS);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002750 write_delta_q(wb, cm->y_dc_delta_q);
2751 write_delta_q(wb, cm->uv_dc_delta_q);
2752 write_delta_q(wb, cm->uv_ac_delta_q);
2753#if CONFIG_AOM_QM
Yaowu Xuf883b422016-08-30 14:01:10 -07002754 aom_wb_write_bit(wb, cm->using_qmatrix);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002755 if (cm->using_qmatrix) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002756 aom_wb_write_literal(wb, cm->min_qmlevel, QM_LEVEL_BITS);
2757 aom_wb_write_literal(wb, cm->max_qmlevel, QM_LEVEL_BITS);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002758 }
2759#endif
2760}
2761
Yaowu Xuf883b422016-08-30 14:01:10 -07002762static void encode_segmentation(AV1_COMMON *cm, MACROBLOCKD *xd,
2763 struct aom_write_bit_buffer *wb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002764 int i, j;
2765 const struct segmentation *seg = &cm->seg;
2766
Yaowu Xuf883b422016-08-30 14:01:10 -07002767 aom_wb_write_bit(wb, seg->enabled);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002768 if (!seg->enabled) return;
2769
2770 // Segmentation map
2771 if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002772 aom_wb_write_bit(wb, seg->update_map);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002773 } else {
2774 assert(seg->update_map == 1);
2775 }
2776 if (seg->update_map) {
2777 // Select the coding strategy (temporal or spatial)
Yaowu Xuf883b422016-08-30 14:01:10 -07002778 av1_choose_segmap_coding_method(cm, xd);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002779
2780 // Write out the chosen coding method.
2781 if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002782 aom_wb_write_bit(wb, seg->temporal_update);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002783 } else {
2784 assert(seg->temporal_update == 0);
2785 }
2786 }
2787
2788 // Segmentation data
Yaowu Xuf883b422016-08-30 14:01:10 -07002789 aom_wb_write_bit(wb, seg->update_data);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002790 if (seg->update_data) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002791 aom_wb_write_bit(wb, seg->abs_delta);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002792
2793 for (i = 0; i < MAX_SEGMENTS; i++) {
2794 for (j = 0; j < SEG_LVL_MAX; j++) {
2795 const int active = segfeature_active(seg, i, j);
Yaowu Xuf883b422016-08-30 14:01:10 -07002796 aom_wb_write_bit(wb, active);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002797 if (active) {
2798 const int data = get_segdata(seg, i, j);
Yaowu Xuf883b422016-08-30 14:01:10 -07002799 const int data_max = av1_seg_feature_data_max(j);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002800
Yaowu Xuf883b422016-08-30 14:01:10 -07002801 if (av1_is_segfeature_signed(j)) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002802 encode_unsigned_max(wb, abs(data), data_max);
Yaowu Xuf883b422016-08-30 14:01:10 -07002803 aom_wb_write_bit(wb, data < 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002804 } else {
2805 encode_unsigned_max(wb, data, data_max);
2806 }
2807 }
2808 }
2809 }
2810 }
2811}
2812
Thomas Daedef636d5c2017-06-29 13:48:27 -07002813static void write_tx_mode(AV1_COMMON *cm, TX_MODE *mode,
Yue Cheneeacc4c2017-01-17 17:29:17 -08002814 struct aom_write_bit_buffer *wb) {
Thomas Daedef636d5c2017-06-29 13:48:27 -07002815 if (cm->all_lossless) {
Yue Cheneeacc4c2017-01-17 17:29:17 -08002816 *mode = ONLY_4X4;
2817 return;
2818 }
Nathan E. Eggea33304f2017-06-28 20:48:34 -04002819#if CONFIG_VAR_TX_NO_TX_MODE
2820 (void)wb;
2821 *mode = TX_MODE_SELECT;
2822 return;
2823#else
Debargha Mukherjee18d38f62016-11-17 20:30:16 -08002824#if CONFIG_TX64X64
Yue Cheneeacc4c2017-01-17 17:29:17 -08002825 aom_wb_write_bit(wb, *mode == TX_MODE_SELECT);
2826 if (*mode != TX_MODE_SELECT) {
2827 aom_wb_write_literal(wb, AOMMIN(*mode, ALLOW_32X32), 2);
2828 if (*mode >= ALLOW_32X32) aom_wb_write_bit(wb, *mode == ALLOW_64X64);
Debargha Mukherjee18d38f62016-11-17 20:30:16 -08002829 }
2830#else
Yue Cheneeacc4c2017-01-17 17:29:17 -08002831 aom_wb_write_bit(wb, *mode == TX_MODE_SELECT);
2832 if (*mode != TX_MODE_SELECT) aom_wb_write_literal(wb, *mode, 2);
Debargha Mukherjee18d38f62016-11-17 20:30:16 -08002833#endif // CONFIG_TX64X64
Nathan E. Eggea33304f2017-06-28 20:48:34 -04002834#endif // CONFIG_VAR_TX_NO_TX_MODE
Yaowu Xuc27fc142016-08-22 16:08:15 -07002835}
2836
Angie Chiang5678ad92016-11-21 09:38:40 -08002837static void write_frame_interp_filter(InterpFilter filter,
2838 struct aom_write_bit_buffer *wb) {
Yaowu Xuf883b422016-08-30 14:01:10 -07002839 aom_wb_write_bit(wb, filter == SWITCHABLE);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002840 if (filter != SWITCHABLE)
Angie Chiang6305abe2016-10-24 12:24:44 -07002841 aom_wb_write_literal(wb, filter, LOG_SWITCHABLE_FILTERS);
Yaowu Xuc27fc142016-08-22 16:08:15 -07002842}
2843
Yaowu Xuf883b422016-08-30 14:01:10 -07002844static void fix_interp_filter(AV1_COMMON *cm, FRAME_COUNTS *counts) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002845 if (cm->interp_filter == SWITCHABLE) {
2846 // Check to see if only one of the filters is actually used
2847 int count[SWITCHABLE_FILTERS];
2848 int i, j, c = 0;
2849 for (i = 0; i < SWITCHABLE_FILTERS; ++i) {
2850 count[i] = 0;
2851 for (j = 0; j < SWITCHABLE_FILTER_CONTEXTS; ++j)
2852 count[i] += counts->switchable_interp[j][i];
2853 c += (count[i] > 0);
2854 }
2855 if (c == 1) {
2856 // Only one filter is used. So set the filter at frame level
2857 for (i = 0; i < SWITCHABLE_FILTERS; ++i) {
2858 if (count[i]) {
Sarah Parker4c10a3c2017-04-10 19:37:59 -07002859 if (i == EIGHTTAP_REGULAR || WARP_WM_NEIGHBORS_WITH_OBMC)
Debargha Mukherjee604d8462017-04-06 15:27:00 -07002860 cm->interp_filter = i;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002861 break;
2862 }
2863 }
2864 }
2865 }
2866}
2867
Dominic Symesdb5d66f2017-08-18 18:11:34 +02002868#if CONFIG_MAX_TILE
2869
2870// Same function as write_uniform but writing to uncompresses header wb
2871static void wb_write_uniform(struct aom_write_bit_buffer *wb, int n, int v) {
2872 const int l = get_unsigned_bits(n);
2873 const int m = (1 << l) - n;
2874 if (l == 0) return;
2875 if (v < m) {
2876 aom_wb_write_literal(wb, v, l - 1);
2877 } else {
2878 aom_wb_write_literal(wb, m + ((v - m) >> 1), l - 1);
2879 aom_wb_write_literal(wb, (v - m) & 1, 1);
2880 }
2881}
2882
2883static void write_tile_info_max_tile(const AV1_COMMON *const cm,
2884 struct aom_write_bit_buffer *wb) {
2885 int width_mi = ALIGN_POWER_OF_TWO(cm->mi_cols, MAX_MIB_SIZE_LOG2);
2886 int height_mi = ALIGN_POWER_OF_TWO(cm->mi_rows, MAX_MIB_SIZE_LOG2);
2887 int width_sb = width_mi >> MAX_MIB_SIZE_LOG2;
2888 int height_sb = height_mi >> MAX_MIB_SIZE_LOG2;
2889 int size_sb, i;
2890
2891 aom_wb_write_bit(wb, cm->uniform_tile_spacing_flag);
2892
2893 if (cm->uniform_tile_spacing_flag) {
2894 // Uniform spaced tiles with power-of-two number of rows and columns
2895 // tile columns
2896 int ones = cm->log2_tile_cols - cm->min_log2_tile_cols;
2897 while (ones--) {
2898 aom_wb_write_bit(wb, 1);
2899 }
2900 if (cm->log2_tile_cols < cm->max_log2_tile_cols) {
2901 aom_wb_write_bit(wb, 0);
2902 }
2903
2904 // rows
2905 ones = cm->log2_tile_rows - cm->min_log2_tile_rows;
2906 while (ones--) {
2907 aom_wb_write_bit(wb, 1);
2908 }
2909 if (cm->log2_tile_rows < cm->max_log2_tile_rows) {
2910 aom_wb_write_bit(wb, 0);
2911 }
2912 } else {
2913 // Explicit tiles with configurable tile widths and heights
2914 // columns
2915 for (i = 0; i < cm->tile_cols; i++) {
2916 size_sb = cm->tile_col_start_sb[i + 1] - cm->tile_col_start_sb[i];
2917 wb_write_uniform(wb, AOMMIN(width_sb, MAX_TILE_WIDTH_SB), size_sb - 1);
2918 width_sb -= size_sb;
2919 }
2920 assert(width_sb == 0);
2921
2922 // rows
2923 for (i = 0; i < cm->tile_rows; i++) {
2924 size_sb = cm->tile_row_start_sb[i + 1] - cm->tile_row_start_sb[i];
2925 wb_write_uniform(wb, AOMMIN(height_sb, cm->max_tile_height_sb),
2926 size_sb - 1);
2927 height_sb -= size_sb;
2928 }
2929 assert(height_sb == 0);
2930 }
2931}
2932#endif
2933
Yaowu Xuf883b422016-08-30 14:01:10 -07002934static void write_tile_info(const AV1_COMMON *const cm,
2935 struct aom_write_bit_buffer *wb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002936#if CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002937 if (cm->large_scale_tile) {
2938 const int tile_width =
2939 ALIGN_POWER_OF_TWO(cm->tile_width, cm->mib_size_log2) >>
2940 cm->mib_size_log2;
2941 const int tile_height =
2942 ALIGN_POWER_OF_TWO(cm->tile_height, cm->mib_size_log2) >>
2943 cm->mib_size_log2;
Yaowu Xuc27fc142016-08-22 16:08:15 -07002944
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002945 assert(tile_width > 0);
2946 assert(tile_height > 0);
Yunqing Wangd8cd55f2017-02-27 12:16:00 -08002947
Yaowu Xuc27fc142016-08-22 16:08:15 -07002948// Write the tile sizes
2949#if CONFIG_EXT_PARTITION
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002950 if (cm->sb_size == BLOCK_128X128) {
2951 assert(tile_width <= 32);
2952 assert(tile_height <= 32);
2953 aom_wb_write_literal(wb, tile_width - 1, 5);
2954 aom_wb_write_literal(wb, tile_height - 1, 5);
2955 } else {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002956#endif // CONFIG_EXT_PARTITION
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002957 assert(tile_width <= 64);
2958 assert(tile_height <= 64);
2959 aom_wb_write_literal(wb, tile_width - 1, 6);
2960 aom_wb_write_literal(wb, tile_height - 1, 6);
2961#if CONFIG_EXT_PARTITION
2962 }
2963#endif // CONFIG_EXT_PARTITION
2964 } else {
2965#endif // CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002966
Dominic Symesdb5d66f2017-08-18 18:11:34 +02002967#if CONFIG_MAX_TILE
2968 write_tile_info_max_tile(cm, wb);
2969#else
2970 int min_log2_tile_cols, max_log2_tile_cols, ones;
2971 av1_get_tile_n_bits(cm->mi_cols, &min_log2_tile_cols, &max_log2_tile_cols);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002972
Dominic Symesdb5d66f2017-08-18 18:11:34 +02002973 // columns
2974 ones = cm->log2_tile_cols - min_log2_tile_cols;
2975 while (ones--) aom_wb_write_bit(wb, 1);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002976
Dominic Symesdb5d66f2017-08-18 18:11:34 +02002977 if (cm->log2_tile_cols < max_log2_tile_cols) aom_wb_write_bit(wb, 0);
2978
2979 // rows
2980 aom_wb_write_bit(wb, cm->log2_tile_rows != 0);
2981 if (cm->log2_tile_rows != 0) aom_wb_write_bit(wb, cm->log2_tile_rows != 1);
2982#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002983#if CONFIG_DEPENDENT_HORZTILES
Dominic Symesdb5d66f2017-08-18 18:11:34 +02002984 if (cm->tile_rows > 1) aom_wb_write_bit(wb, cm->dependent_horz_tiles);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07002985#endif
2986#if CONFIG_EXT_TILE
Yaowu Xuc27fc142016-08-22 16:08:15 -07002987 }
Fangwen Fu70bcb892017-05-06 17:05:19 -07002988#endif // CONFIG_EXT_TILE
Fangwen Fu7b9f2b32017-01-17 14:01:52 -08002989
Ryan Lei9b02b0e2017-01-30 15:52:20 -08002990#if CONFIG_LOOPFILTERING_ACROSS_TILES
Yunqing Wang42015d12017-10-17 15:43:49 -07002991 if (cm->tile_cols * cm->tile_rows > 1)
2992 aom_wb_write_bit(wb, cm->loop_filter_across_tiles_enabled);
Ryan Lei9b02b0e2017-01-30 15:52:20 -08002993#endif // CONFIG_LOOPFILTERING_ACROSS_TILES
Yaowu Xuc27fc142016-08-22 16:08:15 -07002994}
2995
Zoe Liu8dd1c982017-09-11 10:14:35 -07002996#if USE_GF16_MULTI_LAYER
2997static int get_refresh_mask_gf16(AV1_COMP *cpi) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07002998 int refresh_mask = 0;
2999
Zoe Liu8dd1c982017-09-11 10:14:35 -07003000 if (cpi->refresh_last_frame || cpi->refresh_golden_frame ||
3001 cpi->refresh_bwd_ref_frame || cpi->refresh_alt2_ref_frame ||
3002 cpi->refresh_alt_ref_frame) {
3003 assert(cpi->refresh_fb_idx >= 0 && cpi->refresh_fb_idx < REF_FRAMES);
3004 refresh_mask |= (1 << cpi->refresh_fb_idx);
3005 }
3006
3007 return refresh_mask;
3008}
3009#endif // USE_GF16_MULTI_LAYER
Zoe Liu8dd1c982017-09-11 10:14:35 -07003010
3011static int get_refresh_mask(AV1_COMP *cpi) {
Yi Luo2e6a9ab2017-09-15 08:13:59 -07003012 int refresh_mask = 0;
Zoe Liu8dd1c982017-09-11 10:14:35 -07003013#if USE_GF16_MULTI_LAYER
3014 if (cpi->rc.baseline_gf_interval == 16) return get_refresh_mask_gf16(cpi);
3015#endif // USE_GF16_MULTI_LAYER
3016
Yaowu Xuc27fc142016-08-22 16:08:15 -07003017 // NOTE(zoeliu): When LAST_FRAME is to get refreshed, the decoder will be
3018 // notified to get LAST3_FRAME refreshed and then the virtual indexes for all
3019 // the 3 LAST reference frames will be updated accordingly, i.e.:
3020 // (1) The original virtual index for LAST3_FRAME will become the new virtual
3021 // index for LAST_FRAME; and
3022 // (2) The original virtual indexes for LAST_FRAME and LAST2_FRAME will be
3023 // shifted and become the new virtual indexes for LAST2_FRAME and
3024 // LAST3_FRAME.
3025 refresh_mask |=
3026 (cpi->refresh_last_frame << cpi->lst_fb_idxes[LAST_REF_FRAMES - 1]);
Zoe Liue9b15e22017-07-19 15:53:01 -07003027
Zoe Liue9b15e22017-07-19 15:53:01 -07003028 refresh_mask |= (cpi->refresh_bwd_ref_frame << cpi->bwd_fb_idx);
3029 refresh_mask |= (cpi->refresh_alt2_ref_frame << cpi->alt2_fb_idx);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003030
Yaowu Xuf883b422016-08-30 14:01:10 -07003031 if (av1_preserve_existing_gf(cpi)) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003032 // We have decided to preserve the previously existing golden frame as our
3033 // new ARF frame. However, in the short term we leave it in the GF slot and,
3034 // if we're updating the GF with the current decoded frame, we save it
3035 // instead to the ARF slot.
Yaowu Xuf883b422016-08-30 14:01:10 -07003036 // Later, in the function av1_encoder.c:av1_update_reference_frames() we
Yaowu Xuc27fc142016-08-22 16:08:15 -07003037 // will swap gld_fb_idx and alt_fb_idx to achieve our objective. We do it
3038 // there so that it can be done outside of the recode loop.
3039 // Note: This is highly specific to the use of ARF as a forward reference,
3040 // and this needs to be generalized as other uses are implemented
3041 // (like RTC/temporal scalability).
3042 return refresh_mask | (cpi->refresh_golden_frame << cpi->alt_fb_idx);
3043 } else {
Zoe Liue9b15e22017-07-19 15:53:01 -07003044 const int arf_idx = cpi->alt_fb_idx;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003045 return refresh_mask | (cpi->refresh_golden_frame << cpi->gld_fb_idx) |
3046 (cpi->refresh_alt_ref_frame << arf_idx);
3047 }
3048}
3049
3050#if CONFIG_EXT_TILE
3051static INLINE int find_identical_tile(
3052 const int tile_row, const int tile_col,
3053 TileBufferEnc (*const tile_buffers)[1024]) {
3054 const MV32 candidate_offset[1] = { { 1, 0 } };
3055 const uint8_t *const cur_tile_data =
3056 tile_buffers[tile_row][tile_col].data + 4;
Jingning Han99ffce62017-04-25 15:48:41 -07003057 const size_t cur_tile_size = tile_buffers[tile_row][tile_col].size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003058
3059 int i;
3060
3061 if (tile_row == 0) return 0;
3062
3063 // (TODO: yunqingwang) For now, only above tile is checked and used.
3064 // More candidates such as left tile can be added later.
3065 for (i = 0; i < 1; i++) {
3066 int row_offset = candidate_offset[0].row;
3067 int col_offset = candidate_offset[0].col;
3068 int row = tile_row - row_offset;
3069 int col = tile_col - col_offset;
3070 uint8_t tile_hdr;
3071 const uint8_t *tile_data;
3072 TileBufferEnc *candidate;
3073
3074 if (row < 0 || col < 0) continue;
3075
3076 tile_hdr = *(tile_buffers[row][col].data);
3077
3078 // Read out tcm bit
3079 if ((tile_hdr >> 7) == 1) {
3080 // The candidate is a copy tile itself
3081 row_offset += tile_hdr & 0x7f;
3082 row = tile_row - row_offset;
3083 }
3084
3085 candidate = &tile_buffers[row][col];
3086
3087 if (row_offset >= 128 || candidate->size != cur_tile_size) continue;
3088
3089 tile_data = candidate->data + 4;
3090
3091 if (memcmp(tile_data, cur_tile_data, cur_tile_size) != 0) continue;
3092
3093 // Identical tile found
3094 assert(row_offset > 0);
3095 return row_offset;
3096 }
3097
3098 // No identical tile found
3099 return 0;
3100}
3101#endif // CONFIG_EXT_TILE
3102
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04003103#if !CONFIG_OBU || CONFIG_EXT_TILE
Yaowu Xuf883b422016-08-30 14:01:10 -07003104static uint32_t write_tiles(AV1_COMP *const cpi, uint8_t *const dst,
Yaowu Xuc27fc142016-08-22 16:08:15 -07003105 unsigned int *max_tile_size,
3106 unsigned int *max_tile_col_size) {
Thomas Davies4822e142017-10-10 11:30:36 +01003107 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuf883b422016-08-30 14:01:10 -07003108 aom_writer mode_bc;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003109 int tile_row, tile_col;
3110 TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok;
clang-format67948d32016-09-07 22:40:40 -07003111 TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers;
James Zern71a37de2017-04-20 16:03:13 -07003112 uint32_t total_size = 0;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003113 const int tile_cols = cm->tile_cols;
3114 const int tile_rows = cm->tile_rows;
Thomas Daviesaf6df172016-11-09 14:04:18 +00003115 unsigned int tile_size = 0;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003116 const int have_tiles = tile_cols * tile_rows > 1;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003117 struct aom_write_bit_buffer wb = { dst, 0 };
Thomas Davies80188d12016-10-26 16:08:35 -07003118 const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols;
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003119 uint32_t compressed_hdr_size;
Thomas Davies80188d12016-10-26 16:08:35 -07003120 // Fixed size tile groups for the moment
3121 const int num_tg_hdrs = cm->num_tg;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003122 const int tg_size =
3123#if CONFIG_EXT_TILE
3124 (cm->large_scale_tile)
3125 ? 1
3126 :
3127#endif // CONFIG_EXT_TILE
3128 (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs;
Thomas Davies80188d12016-10-26 16:08:35 -07003129 int tile_count = 0;
Thomas Daviesdbfc4f92017-01-18 16:46:09 +00003130 int tg_count = 1;
3131 int tile_size_bytes = 4;
3132 int tile_col_size_bytes;
James Zern71a37de2017-04-20 16:03:13 -07003133 uint32_t uncompressed_hdr_size = 0;
Thomas Davies80188d12016-10-26 16:08:35 -07003134 struct aom_write_bit_buffer tg_params_wb;
Thomas Daviesdbfc4f92017-01-18 16:46:09 +00003135 struct aom_write_bit_buffer tile_size_bytes_wb;
James Zern71a37de2017-04-20 16:03:13 -07003136 uint32_t saved_offset;
Thomas Daviesaf6df172016-11-09 14:04:18 +00003137 int mtu_size = cpi->oxcf.mtu;
3138 int curr_tg_data_size = 0;
3139 int hdr_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003140
3141 *max_tile_size = 0;
3142 *max_tile_col_size = 0;
3143
3144// All tile size fields are output on 4 bytes. A call to remux_tiles will
3145// later compact the data if smaller headers are adequate.
3146
Thomas Davies4822e142017-10-10 11:30:36 +01003147#if CONFIG_SIMPLE_BWD_ADAPT
3148 cm->largest_tile_id = 0;
3149#endif
3150
Yaowu Xuc27fc142016-08-22 16:08:15 -07003151#if CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003152 if (cm->large_scale_tile) {
3153 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
3154 TileInfo tile_info;
3155 const int is_last_col = (tile_col == tile_cols - 1);
3156 const uint32_t col_offset = total_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003157
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003158 av1_tile_set_col(&tile_info, cm, tile_col);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003159
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003160 // The last column does not have a column header
3161 if (!is_last_col) total_size += 4;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003162
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003163 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
3164 TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col];
3165 const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col];
3166 const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col];
3167 const int data_offset = have_tiles ? 4 : 0;
3168 const int tile_idx = tile_row * tile_cols + tile_col;
3169 TileDataEnc *this_tile = &cpi->tile_data[tile_idx];
3170 av1_tile_set_row(&tile_info, cm, tile_row);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003171
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003172 buf->data = dst + total_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003173
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003174 // Is CONFIG_EXT_TILE = 1, every tile in the row has a header,
3175 // even for the last one, unless no tiling is used at all.
3176 total_size += data_offset;
3177 // Initialise tile context from the frame context
3178 this_tile->tctx = *cm->fc;
3179 cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx;
Alex Converse30f0e152017-03-28 10:13:27 -07003180#if CONFIG_ANS
3181 mode_bc.size = 1 << cpi->common.ans_window_size_log2;
3182#endif
Rupert Swarbrick7546b302017-10-26 10:45:26 +01003183#if CONFIG_LOOP_RESTORATION
3184 for (int p = 0; p < MAX_MB_PLANE; ++p) {
3185 set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p);
3186 set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p);
3187 }
3188#endif // CONFIG_LOOP_RESTORATION
3189
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003190 aom_start_encode(&mode_bc, buf->data + data_offset);
3191 write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end);
3192 assert(tok == tok_end);
3193 aom_stop_encode(&mode_bc);
3194 tile_size = mode_bc.pos;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003195 buf->size = tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003196
Thomas Davies4822e142017-10-10 11:30:36 +01003197#if CONFIG_SIMPLE_BWD_ADAPT
3198 if (tile_size > *max_tile_size) {
3199 cm->largest_tile_id = tile_cols * tile_row + tile_col;
3200 }
3201#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003202 // Record the maximum tile size we see, so we can compact headers later.
3203 *max_tile_size = AOMMAX(*max_tile_size, tile_size);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003204
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003205 if (have_tiles) {
3206 // tile header: size of this tile, or copy offset
3207 uint32_t tile_header = tile_size;
3208 const int tile_copy_mode =
3209 ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256)
3210 ? 1
3211 : 0;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003212
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003213 // If tile_copy_mode = 1, check if this tile is a copy tile.
3214 // Very low chances to have copy tiles on the key frames, so don't
3215 // search on key frames to reduce unnecessary search.
3216 if (cm->frame_type != KEY_FRAME && tile_copy_mode) {
3217 const int idendical_tile_offset =
3218 find_identical_tile(tile_row, tile_col, tile_buffers);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003219
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003220 if (idendical_tile_offset > 0) {
3221 tile_size = 0;
3222 tile_header = idendical_tile_offset | 0x80;
3223 tile_header <<= 24;
3224 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003225 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003226
3227 mem_put_le32(buf->data, tile_header);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003228 }
3229
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003230 total_size += tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003231 }
3232
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003233 if (!is_last_col) {
3234 uint32_t col_size = total_size - col_offset - 4;
3235 mem_put_le32(dst + col_offset, col_size);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003236
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003237 // If it is not final packing, record the maximum tile column size we
3238 // see, otherwise, check if the tile size is out of the range.
3239 *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size);
3240 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003241 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003242 } else {
3243#endif // CONFIG_EXT_TILE
Soo-Chul Han38427e82017-09-27 15:06:13 -04003244
3245#if !CONFIG_OBU
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04003246 write_uncompressed_header_frame(cpi, &wb);
Soo-Chul Han38427e82017-09-27 15:06:13 -04003247#else
3248 write_uncompressed_header_obu(cpi, &wb);
3249#endif
Thomas Davies80188d12016-10-26 16:08:35 -07003250
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003251 if (cm->show_existing_frame) {
3252 total_size = aom_wb_bytes_written(&wb);
3253 return (uint32_t)total_size;
3254 }
Jingning Hand3f441c2017-03-06 09:12:54 -08003255
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003256 // Write the tile length code
3257 tile_size_bytes_wb = wb;
3258 aom_wb_write_literal(&wb, 3, 2);
Thomas Davies80188d12016-10-26 16:08:35 -07003259
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003260 /* Write a placeholder for the number of tiles in each tile group */
3261 tg_params_wb = wb;
3262 saved_offset = wb.bit_offset;
3263 if (have_tiles) {
3264 aom_wb_overwrite_literal(&wb, 3, n_log2_tiles);
3265 aom_wb_overwrite_literal(&wb, (1 << n_log2_tiles) - 1, n_log2_tiles);
3266 }
Thomas Davies80188d12016-10-26 16:08:35 -07003267
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003268 if (!use_compressed_header(cm)) {
3269 uncompressed_hdr_size = aom_wb_bytes_written(&wb);
3270 compressed_hdr_size = 0;
3271 } else {
3272 /* Write a placeholder for the compressed header length */
3273 struct aom_write_bit_buffer comp_hdr_len_wb = wb;
3274 aom_wb_write_literal(&wb, 0, 16);
Thomas Davies80188d12016-10-26 16:08:35 -07003275
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003276 uncompressed_hdr_size = aom_wb_bytes_written(&wb);
3277 compressed_hdr_size =
3278 write_compressed_header(cpi, dst + uncompressed_hdr_size);
3279 aom_wb_overwrite_literal(&comp_hdr_len_wb, (int)(compressed_hdr_size),
3280 16);
3281 }
3282
3283 hdr_size = uncompressed_hdr_size + compressed_hdr_size;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003284 total_size += hdr_size;
Thomas Davies80188d12016-10-26 16:08:35 -07003285
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003286 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
3287 TileInfo tile_info;
3288 const int is_last_row = (tile_row == tile_rows - 1);
3289 av1_tile_set_row(&tile_info, cm, tile_row);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003290
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003291 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
3292 const int tile_idx = tile_row * tile_cols + tile_col;
3293 TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col];
3294 TileDataEnc *this_tile = &cpi->tile_data[tile_idx];
3295 const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col];
3296 const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col];
3297 const int is_last_col = (tile_col == tile_cols - 1);
3298 const int is_last_tile = is_last_col && is_last_row;
Thomas Daviesaf6df172016-11-09 14:04:18 +00003299
Thomas Daviesb25ba502017-07-18 10:18:24 +01003300 if ((!mtu_size && tile_count > tg_size) ||
3301 (mtu_size && tile_count && curr_tg_data_size >= mtu_size)) {
3302 // New tile group
3303 tg_count++;
3304 // We've exceeded the packet size
3305 if (tile_count > 1) {
3306 /* The last tile exceeded the packet size. The tile group size
3307 should therefore be tile_count-1.
3308 Move the last tile and insert headers before it
3309 */
3310 uint32_t old_total_size = total_size - tile_size - 4;
3311 memmove(dst + old_total_size + hdr_size, dst + old_total_size,
3312 (tile_size + 4) * sizeof(uint8_t));
3313 // Copy uncompressed header
3314 memmove(dst + old_total_size, dst,
3315 uncompressed_hdr_size * sizeof(uint8_t));
3316 // Write the number of tiles in the group into the last uncompressed
3317 // header before the one we've just inserted
3318 aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count,
3319 n_log2_tiles);
3320 aom_wb_overwrite_literal(&tg_params_wb, tile_count - 2,
3321 n_log2_tiles);
3322 // Update the pointer to the last TG params
3323 tg_params_wb.bit_offset = saved_offset + 8 * old_total_size;
3324 // Copy compressed header
3325 memmove(dst + old_total_size + uncompressed_hdr_size,
3326 dst + uncompressed_hdr_size,
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003327 compressed_hdr_size * sizeof(uint8_t));
Thomas Daviesb25ba502017-07-18 10:18:24 +01003328 total_size += hdr_size;
3329 tile_count = 1;
3330 curr_tg_data_size = hdr_size + tile_size + 4;
3331 } else {
3332 // We exceeded the packet size in just one tile
3333 // Copy uncompressed header
3334 memmove(dst + total_size, dst,
3335 uncompressed_hdr_size * sizeof(uint8_t));
3336 // Write the number of tiles in the group into the last uncompressed
3337 // header
3338 aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count,
3339 n_log2_tiles);
3340 aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1,
3341 n_log2_tiles);
3342 tg_params_wb.bit_offset = saved_offset + 8 * total_size;
3343 // Copy compressed header
3344 memmove(dst + total_size + uncompressed_hdr_size,
3345 dst + uncompressed_hdr_size,
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003346 compressed_hdr_size * sizeof(uint8_t));
Thomas Daviesb25ba502017-07-18 10:18:24 +01003347 total_size += hdr_size;
3348 tile_count = 0;
3349 curr_tg_data_size = hdr_size;
3350 }
Thomas Daviesaf6df172016-11-09 14:04:18 +00003351 }
Thomas Daviesb25ba502017-07-18 10:18:24 +01003352 tile_count++;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003353 av1_tile_set_col(&tile_info, cm, tile_col);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003354
Thomas Daviesb25ba502017-07-18 10:18:24 +01003355#if CONFIG_DEPENDENT_HORZTILES
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003356 av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col);
Fangwen Fu73126c02017-02-08 22:37:47 -08003357#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003358 buf->data = dst + total_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003359
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003360 // The last tile does not have a header.
3361 if (!is_last_tile) total_size += 4;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003362
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003363 // Initialise tile context from the frame context
3364 this_tile->tctx = *cm->fc;
3365 cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx;
Thomas Davies80188d12016-10-26 16:08:35 -07003366#if CONFIG_ANS
Alex Converse30f0e152017-03-28 10:13:27 -07003367 mode_bc.size = 1 << cpi->common.ans_window_size_log2;
3368#endif // CONFIG_ANS
Rupert Swarbrick6c545212017-09-01 17:17:25 +01003369#if CONFIG_LOOP_RESTORATION
3370 for (int p = 0; p < MAX_MB_PLANE; ++p) {
3371 set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p);
3372 set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p);
3373 }
3374#endif // CONFIG_LOOP_RESTORATION
3375
Alex Converse30f0e152017-03-28 10:13:27 -07003376 aom_start_encode(&mode_bc, dst + total_size);
3377 write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end);
Jingning Han223b90e2017-04-04 09:48:37 -07003378#if !CONFIG_LV_MAP
Alex Converse30f0e152017-03-28 10:13:27 -07003379 assert(tok == tok_end);
Jingning Han223b90e2017-04-04 09:48:37 -07003380#endif // !CONFIG_LV_MAP
Alex Converse30f0e152017-03-28 10:13:27 -07003381 aom_stop_encode(&mode_bc);
3382 tile_size = mode_bc.pos;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003383 assert(tile_size > 0);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003384
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003385 curr_tg_data_size += tile_size + 4;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003386 buf->size = tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003387
Thomas Davies4822e142017-10-10 11:30:36 +01003388#if CONFIG_SIMPLE_BWD_ADAPT
3389 if (tile_size > *max_tile_size) {
3390 cm->largest_tile_id = tile_cols * tile_row + tile_col;
3391 }
3392#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003393 if (!is_last_tile) {
3394 *max_tile_size = AOMMAX(*max_tile_size, tile_size);
3395 // size of this tile
3396 mem_put_le32(buf->data, tile_size);
3397 }
3398
3399 total_size += tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003400 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003401 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003402 // Write the final tile group size
3403 if (n_log2_tiles) {
Dominic Symesf58f1112017-09-25 12:47:40 +02003404 aom_wb_overwrite_literal(
3405 &tg_params_wb, (tile_cols * tile_rows) - tile_count, n_log2_tiles);
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003406 aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, n_log2_tiles);
3407 }
3408 // Remux if possible. TODO (Thomas Davies): do this for more than one tile
3409 // group
3410 if (have_tiles && tg_count == 1) {
Debargha Mukherjee2eada612017-09-22 15:37:39 -07003411 int data_size =
3412 total_size - (uncompressed_hdr_size + compressed_hdr_size);
3413 data_size =
3414 remux_tiles(cm, dst + uncompressed_hdr_size + compressed_hdr_size,
3415 data_size, *max_tile_size, *max_tile_col_size,
3416 &tile_size_bytes, &tile_col_size_bytes);
3417 total_size = data_size + uncompressed_hdr_size + compressed_hdr_size;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003418 aom_wb_overwrite_literal(&tile_size_bytes_wb, tile_size_bytes - 1, 2);
3419 }
Thomas Daviesdbfc4f92017-01-18 16:46:09 +00003420
Yunqing Wangeeb08a92017-07-07 21:25:18 -07003421#if CONFIG_EXT_TILE
3422 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003423#endif // CONFIG_EXT_TILE
3424 return (uint32_t)total_size;
3425}
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04003426#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003427
Yaowu Xuf883b422016-08-30 14:01:10 -07003428static void write_render_size(const AV1_COMMON *cm,
3429 struct aom_write_bit_buffer *wb) {
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003430 const int scaling_active = !av1_resize_unscaled(cm);
Yaowu Xuf883b422016-08-30 14:01:10 -07003431 aom_wb_write_bit(wb, scaling_active);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003432 if (scaling_active) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003433 aom_wb_write_literal(wb, cm->render_width - 1, 16);
3434 aom_wb_write_literal(wb, cm->render_height - 1, 16);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003435 }
3436}
3437
Fergus Simpsond91c8c92017-04-07 12:12:00 -07003438#if CONFIG_FRAME_SUPERRES
Fergus Simpsone7508412017-03-14 18:14:09 -07003439static void write_superres_scale(const AV1_COMMON *const cm,
3440 struct aom_write_bit_buffer *wb) {
Fergus Simpsone7508412017-03-14 18:14:09 -07003441 // First bit is whether to to scale or not
Urvang Joshide71d142017-10-05 12:12:15 -07003442 if (cm->superres_scale_denominator == SCALE_NUMERATOR) {
Fergus Simpsone7508412017-03-14 18:14:09 -07003443 aom_wb_write_bit(wb, 0); // no scaling
3444 } else {
3445 aom_wb_write_bit(wb, 1); // scaling, write scale factor
Urvang Joshi83010182017-10-27 12:36:02 -07003446 assert(cm->superres_scale_denominator >= SUPERRES_SCALE_DENOMINATOR_MIN);
3447 assert(cm->superres_scale_denominator <
3448 SUPERRES_SCALE_DENOMINATOR_MIN + (1 << SUPERRES_SCALE_BITS));
Fergus Simpsone7508412017-03-14 18:14:09 -07003449 aom_wb_write_literal(
Urvang Joshide71d142017-10-05 12:12:15 -07003450 wb, cm->superres_scale_denominator - SUPERRES_SCALE_DENOMINATOR_MIN,
Fergus Simpsone7508412017-03-14 18:14:09 -07003451 SUPERRES_SCALE_BITS);
3452 }
3453}
Fergus Simpsond91c8c92017-04-07 12:12:00 -07003454#endif // CONFIG_FRAME_SUPERRES
Fergus Simpsone7508412017-03-14 18:14:09 -07003455
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003456#if CONFIG_FRAME_SIZE
3457static void write_frame_size(const AV1_COMMON *cm, int frame_size_override,
3458 struct aom_write_bit_buffer *wb) {
3459#else
Yaowu Xuf883b422016-08-30 14:01:10 -07003460static void write_frame_size(const AV1_COMMON *cm,
3461 struct aom_write_bit_buffer *wb) {
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003462#endif
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003463#if CONFIG_FRAME_SUPERRES
3464 aom_wb_write_literal(wb, cm->superres_upscaled_width - 1, 16);
3465 aom_wb_write_literal(wb, cm->superres_upscaled_height - 1, 16);
3466 write_superres_scale(cm, wb);
3467#else
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003468#if CONFIG_FRAME_SIZE
3469 if (frame_size_override) {
3470 const SequenceHeader *seq_params = &cm->seq_params;
3471 int num_bits_width = seq_params->num_bits_width;
3472 int num_bits_height = seq_params->num_bits_height;
3473 aom_wb_write_literal(wb, cm->width - 1, num_bits_width);
3474 aom_wb_write_literal(wb, cm->height - 1, num_bits_height);
3475 }
3476#else
Fergus Simpson846d67d2017-05-15 14:28:44 -07003477 aom_wb_write_literal(wb, cm->width - 1, 16);
3478 aom_wb_write_literal(wb, cm->height - 1, 16);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003479#endif
Fergus Simpson7b2d1442017-05-22 17:18:33 -07003480#endif // CONFIG_FRAME_SUPERRES
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003481 write_render_size(cm, wb);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003482}
3483
Yaowu Xuf883b422016-08-30 14:01:10 -07003484static void write_frame_size_with_refs(AV1_COMP *cpi,
3485 struct aom_write_bit_buffer *wb) {
3486 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003487 int found = 0;
3488
3489 MV_REFERENCE_FRAME ref_frame;
3490 for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
3491 YV12_BUFFER_CONFIG *cfg = get_ref_frame_buffer(cpi, ref_frame);
3492
3493 if (cfg != NULL) {
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003494#if CONFIG_FRAME_SUPERRES
3495 found = cm->superres_upscaled_width == cfg->y_crop_width &&
3496 cm->superres_upscaled_height == cfg->y_crop_height;
3497#else
Yaowu Xuc27fc142016-08-22 16:08:15 -07003498 found =
3499 cm->width == cfg->y_crop_width && cm->height == cfg->y_crop_height;
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003500#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003501 found &= cm->render_width == cfg->render_width &&
3502 cm->render_height == cfg->render_height;
3503 }
Yaowu Xuf883b422016-08-30 14:01:10 -07003504 aom_wb_write_bit(wb, found);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003505 if (found) {
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003506#if CONFIG_FRAME_SUPERRES
3507 write_superres_scale(cm, wb);
3508#endif // CONFIG_FRAME_SUPERRES
Yaowu Xuc27fc142016-08-22 16:08:15 -07003509 break;
3510 }
3511 }
3512
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003513#if CONFIG_FRAME_SIZE
3514 if (!found) {
3515 int frame_size_override = 1; // Allways equal to 1 in this function
3516 write_frame_size(cm, frame_size_override, wb);
3517 }
3518#else
Fergus Simpsond2bcbb52017-05-22 23:15:05 -07003519 if (!found) write_frame_size(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003520#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003521}
3522
Yaowu Xuc27fc142016-08-22 16:08:15 -07003523static void write_profile(BITSTREAM_PROFILE profile,
Yaowu Xuf883b422016-08-30 14:01:10 -07003524 struct aom_write_bit_buffer *wb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003525 switch (profile) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003526 case PROFILE_0: aom_wb_write_literal(wb, 0, 2); break;
3527 case PROFILE_1: aom_wb_write_literal(wb, 2, 2); break;
3528 case PROFILE_2: aom_wb_write_literal(wb, 1, 2); break;
3529 case PROFILE_3: aom_wb_write_literal(wb, 6, 3); break;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003530 default: assert(0);
3531 }
3532}
3533
3534static void write_bitdepth_colorspace_sampling(
Yaowu Xuf883b422016-08-30 14:01:10 -07003535 AV1_COMMON *const cm, struct aom_write_bit_buffer *wb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003536 if (cm->profile >= PROFILE_2) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003537 assert(cm->bit_depth > AOM_BITS_8);
3538 aom_wb_write_bit(wb, cm->bit_depth == AOM_BITS_10 ? 0 : 1);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003539 }
anorkin76fb1262017-03-22 15:12:12 -07003540#if CONFIG_COLORSPACE_HEADERS
3541 aom_wb_write_literal(wb, cm->color_space, 5);
3542 aom_wb_write_literal(wb, cm->transfer_function, 5);
3543#else
Yaowu Xuf883b422016-08-30 14:01:10 -07003544 aom_wb_write_literal(wb, cm->color_space, 3);
anorkin76fb1262017-03-22 15:12:12 -07003545#endif
Yaowu Xuf883b422016-08-30 14:01:10 -07003546 if (cm->color_space != AOM_CS_SRGB) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003547 // 0: [16, 235] (i.e. xvYCC), 1: [0, 255]
Yaowu Xuf883b422016-08-30 14:01:10 -07003548 aom_wb_write_bit(wb, cm->color_range);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003549 if (cm->profile == PROFILE_1 || cm->profile == PROFILE_3) {
3550 assert(cm->subsampling_x != 1 || cm->subsampling_y != 1);
Yaowu Xuf883b422016-08-30 14:01:10 -07003551 aom_wb_write_bit(wb, cm->subsampling_x);
3552 aom_wb_write_bit(wb, cm->subsampling_y);
3553 aom_wb_write_bit(wb, 0); // unused
Yaowu Xuc27fc142016-08-22 16:08:15 -07003554 } else {
3555 assert(cm->subsampling_x == 1 && cm->subsampling_y == 1);
3556 }
anorkin76fb1262017-03-22 15:12:12 -07003557#if CONFIG_COLORSPACE_HEADERS
3558 if (cm->subsampling_x == 1 && cm->subsampling_y == 1) {
3559 aom_wb_write_literal(wb, cm->chroma_sample_position, 2);
3560 }
3561#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003562 } else {
3563 assert(cm->profile == PROFILE_1 || cm->profile == PROFILE_3);
Yaowu Xuf883b422016-08-30 14:01:10 -07003564 aom_wb_write_bit(wb, 0); // unused
Yaowu Xuc27fc142016-08-22 16:08:15 -07003565 }
3566}
3567
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003568#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003569void write_sequence_header(AV1_COMMON *const cm,
3570 struct aom_write_bit_buffer *wb) {
3571 SequenceHeader *seq_params = &cm->seq_params;
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003572
3573#if CONFIG_FRAME_SIZE
3574 int num_bits_width = 16;
3575 int num_bits_height = 16;
3576 int max_frame_width = cm->width;
3577 int max_frame_height = cm->height;
3578
3579 seq_params->num_bits_width = num_bits_width;
3580 seq_params->num_bits_height = num_bits_height;
3581 seq_params->max_frame_width = max_frame_width;
3582 seq_params->max_frame_height = max_frame_height;
3583
3584 aom_wb_write_literal(wb, num_bits_width - 1, 4);
3585 aom_wb_write_literal(wb, num_bits_height - 1, 4);
3586 aom_wb_write_literal(wb, max_frame_width - 1, num_bits_width);
3587 aom_wb_write_literal(wb, max_frame_height - 1, num_bits_height);
3588#endif
3589
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003590 /* Placeholder for actually writing to the bitstream */
Yunqing Wangc2502b52017-07-19 17:44:18 -07003591 seq_params->frame_id_numbers_present_flag =
3592#if CONFIG_EXT_TILE
3593 cm->large_scale_tile ? 0 :
3594#endif // CONFIG_EXT_TILE
3595 FRAME_ID_NUMBERS_PRESENT_FLAG;
Sebastien Alaiwand418f682017-10-19 15:06:52 +02003596 seq_params->frame_id_length = FRAME_ID_LENGTH;
3597 seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH;
David Barker5e70a112017-10-03 14:28:17 +01003598
3599 aom_wb_write_bit(wb, seq_params->frame_id_numbers_present_flag);
3600 if (seq_params->frame_id_numbers_present_flag) {
Frederic Barbier4d5d90e2017-10-13 09:22:33 +02003601 // We must always have delta_frame_id_length < frame_id_length,
3602 // in order for a frame to be referenced with a unique delta.
3603 // Avoid wasting bits by using a coding that enforces this restriction.
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02003604 aom_wb_write_literal(wb, seq_params->delta_frame_id_length - 2, 4);
Frederic Barbier4d5d90e2017-10-13 09:22:33 +02003605 aom_wb_write_literal(
3606 wb, seq_params->frame_id_length - seq_params->delta_frame_id_length - 1,
3607 3);
David Barker5e70a112017-10-03 14:28:17 +01003608 }
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003609}
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003610#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003611
Debargha Mukherjeed2630fa2017-09-22 10:32:51 -07003612static void write_sb_size(const AV1_COMMON *cm,
3613 struct aom_write_bit_buffer *wb) {
3614 (void)cm;
3615 (void)wb;
3616 assert(cm->mib_size == mi_size_wide[cm->sb_size]);
3617 assert(cm->mib_size == 1 << cm->mib_size_log2);
3618#if CONFIG_EXT_PARTITION
3619 assert(cm->sb_size == BLOCK_128X128 || cm->sb_size == BLOCK_64X64);
3620 aom_wb_write_bit(wb, cm->sb_size == BLOCK_128X128 ? 1 : 0);
3621#else
3622 assert(cm->sb_size == BLOCK_64X64);
3623#endif // CONFIG_EXT_PARTITION
3624}
3625
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003626static void write_compound_tools(const AV1_COMMON *cm,
3627 struct aom_write_bit_buffer *wb) {
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003628 if (!frame_is_intra_only(cm) && cm->reference_mode != COMPOUND_REFERENCE) {
3629 aom_wb_write_bit(wb, cm->allow_interintra_compound);
3630 } else {
3631 assert(cm->allow_interintra_compound == 0);
3632 }
Zoe Liu85b66462017-04-20 14:28:19 -07003633#if CONFIG_COMPOUND_SINGLEREF
3634 if (!frame_is_intra_only(cm)) {
3635#else // !CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003636 if (!frame_is_intra_only(cm) && cm->reference_mode != SINGLE_REFERENCE) {
Zoe Liu85b66462017-04-20 14:28:19 -07003637#endif // CONFIG_COMPOUND_SINGLEREF
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003638 aom_wb_write_bit(wb, cm->allow_masked_compound);
3639 } else {
3640 assert(cm->allow_masked_compound == 0);
3641 }
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003642}
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07003643
David Barkerd7c8bd52017-09-25 14:47:29 +01003644static void write_global_motion_params(const WarpedMotionParams *params,
3645 const WarpedMotionParams *ref_params,
Sarah Parker3e579a62017-08-23 16:53:20 -07003646 struct aom_write_bit_buffer *wb,
3647 int allow_hp) {
Sebastien Alaiwane4984ff2017-10-31 15:27:44 +01003648 const TransformationType type = params->wmtype;
Sarah Parker3e579a62017-08-23 16:53:20 -07003649
3650 aom_wb_write_bit(wb, type != IDENTITY);
3651 if (type != IDENTITY) {
3652#if GLOBAL_TRANS_TYPES > 4
3653 aom_wb_write_literal(wb, type - 1, GLOBAL_TYPE_BITS);
3654#else
3655 aom_wb_write_bit(wb, type == ROTZOOM);
3656 if (type != ROTZOOM) aom_wb_write_bit(wb, type == TRANSLATION);
3657#endif // GLOBAL_TRANS_TYPES > 4
3658 }
3659
Sebastien Alaiwane4984ff2017-10-31 15:27:44 +01003660 if (type >= ROTZOOM) {
3661 aom_wb_write_signed_primitive_refsubexpfin(
3662 wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K,
3663 (ref_params->wmmat[2] >> GM_ALPHA_PREC_DIFF) -
3664 (1 << GM_ALPHA_PREC_BITS),
3665 (params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS));
3666 aom_wb_write_signed_primitive_refsubexpfin(
3667 wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K,
3668 (ref_params->wmmat[3] >> GM_ALPHA_PREC_DIFF),
3669 (params->wmmat[3] >> GM_ALPHA_PREC_DIFF));
3670 }
3671
3672 if (type >= AFFINE) {
3673 aom_wb_write_signed_primitive_refsubexpfin(
3674 wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K,
3675 (ref_params->wmmat[4] >> GM_ALPHA_PREC_DIFF),
3676 (params->wmmat[4] >> GM_ALPHA_PREC_DIFF));
3677 aom_wb_write_signed_primitive_refsubexpfin(
3678 wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K,
3679 (ref_params->wmmat[5] >> GM_ALPHA_PREC_DIFF) -
3680 (1 << GM_ALPHA_PREC_BITS),
3681 (params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS));
3682 }
3683
3684 if (type >= TRANSLATION) {
3685 const int trans_bits = (type == TRANSLATION)
3686 ? GM_ABS_TRANS_ONLY_BITS - !allow_hp
3687 : GM_ABS_TRANS_BITS;
3688 const int trans_prec_diff = (type == TRANSLATION)
3689 ? GM_TRANS_ONLY_PREC_DIFF + !allow_hp
3690 : GM_TRANS_PREC_DIFF;
3691 aom_wb_write_signed_primitive_refsubexpfin(
3692 wb, (1 << trans_bits) + 1, SUBEXPFIN_K,
3693 (ref_params->wmmat[0] >> trans_prec_diff),
3694 (params->wmmat[0] >> trans_prec_diff));
3695 aom_wb_write_signed_primitive_refsubexpfin(
3696 wb, (1 << trans_bits) + 1, SUBEXPFIN_K,
3697 (ref_params->wmmat[1] >> trans_prec_diff),
3698 (params->wmmat[1] >> trans_prec_diff));
Sarah Parker3e579a62017-08-23 16:53:20 -07003699 }
3700}
3701
3702static void write_global_motion(AV1_COMP *cpi,
3703 struct aom_write_bit_buffer *wb) {
3704 AV1_COMMON *const cm = &cpi->common;
3705 int frame;
3706 for (frame = LAST_FRAME; frame <= ALTREF_FRAME; ++frame) {
David Barkerd7c8bd52017-09-25 14:47:29 +01003707 const WarpedMotionParams *ref_params =
3708 cm->error_resilient_mode ? &default_warp_params
3709 : &cm->prev_frame->global_motion[frame];
3710 write_global_motion_params(&cm->global_motion[frame], ref_params, wb,
Sarah Parker3e579a62017-08-23 16:53:20 -07003711 cm->allow_high_precision_mv);
3712 // TODO(sarahparker, debargha): The logic in the commented out code below
3713 // does not work currently and causes mismatches when resize is on.
3714 // Fix it before turning the optimization back on.
3715 /*
3716 YV12_BUFFER_CONFIG *ref_buf = get_ref_frame_buffer(cpi, frame);
3717 if (cpi->source->y_crop_width == ref_buf->y_crop_width &&
3718 cpi->source->y_crop_height == ref_buf->y_crop_height) {
3719 write_global_motion_params(&cm->global_motion[frame],
3720 &cm->prev_frame->global_motion[frame], wb,
3721 cm->allow_high_precision_mv);
3722 } else {
3723 assert(cm->global_motion[frame].wmtype == IDENTITY &&
3724 "Invalid warp type for frames of different resolutions");
3725 }
3726 */
3727 /*
3728 printf("Frame %d/%d: Enc Ref %d: %d %d %d %d\n",
3729 cm->current_video_frame, cm->show_frame, frame,
3730 cm->global_motion[frame].wmmat[0],
3731 cm->global_motion[frame].wmmat[1], cm->global_motion[frame].wmmat[2],
3732 cm->global_motion[frame].wmmat[3]);
3733 */
3734 }
3735}
Sarah Parker3e579a62017-08-23 16:53:20 -07003736
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04003737#if !CONFIG_OBU
3738static void write_uncompressed_header_frame(AV1_COMP *cpi,
3739 struct aom_write_bit_buffer *wb) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003740 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07003741 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
3742
Yaowu Xuf883b422016-08-30 14:01:10 -07003743 aom_wb_write_literal(wb, AOM_FRAME_MARKER, 2);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003744
3745 write_profile(cm->profile, wb);
3746
Yunqing Wangc2502b52017-07-19 17:44:18 -07003747#if CONFIG_EXT_TILE
3748 aom_wb_write_literal(wb, cm->large_scale_tile, 1);
3749#endif // CONFIG_EXT_TILE
3750
Yaowu Xuc27fc142016-08-22 16:08:15 -07003751 // NOTE: By default all coded frames to be used as a reference
3752 cm->is_reference_frame = 1;
3753
3754 if (cm->show_existing_frame) {
3755 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
3756 const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show];
3757
3758 if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003759 aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM,
Yaowu Xuc27fc142016-08-22 16:08:15 -07003760 "Buffer %d does not contain a reconstructed frame",
3761 frame_to_show);
3762 }
3763 ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show);
3764
Yaowu Xuf883b422016-08-30 14:01:10 -07003765 aom_wb_write_bit(wb, 1); // show_existing_frame
3766 aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003767
Arild Fuldseth (arilfuld)788dc232016-12-20 17:55:52 +01003768#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003769 if (cm->seq_params.frame_id_numbers_present_flag) {
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02003770 int frame_id_len = cm->seq_params.frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01003771 int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show];
3772 aom_wb_write_literal(wb, display_frame_id, frame_id_len);
3773 /* Add a zero byte to prevent emulation of superframe marker */
3774 /* Same logic as when when terminating the entropy coder */
3775 /* Consider to have this logic only one place */
3776 aom_wb_write_literal(wb, 0, 8);
Arild Fuldseth (arilfuld)788dc232016-12-20 17:55:52 +01003777 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003778#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)788dc232016-12-20 17:55:52 +01003779
Yaowu Xuc27fc142016-08-22 16:08:15 -07003780 return;
3781 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -07003782 aom_wb_write_bit(wb, 0); // show_existing_frame
Yaowu Xuc27fc142016-08-22 16:08:15 -07003783 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003784
Yaowu Xuf883b422016-08-30 14:01:10 -07003785 aom_wb_write_bit(wb, cm->frame_type);
3786 aom_wb_write_bit(wb, cm->show_frame);
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003787 if (cm->frame_type != KEY_FRAME)
3788 if (!cm->show_frame) aom_wb_write_bit(wb, cm->intra_only);
Yaowu Xuf883b422016-08-30 14:01:10 -07003789 aom_wb_write_bit(wb, cm->error_resilient_mode);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003790
Pavel Frolov3b95c502017-10-01 21:35:24 +03003791 if (frame_is_intra_only(cm)) {
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003792#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003793 write_sequence_header(cm, wb);
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003794#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003795 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003796#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003797 cm->invalid_delta_frame_id_minus1 = 0;
3798 if (cm->seq_params.frame_id_numbers_present_flag) {
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02003799 int frame_id_len = cm->seq_params.frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01003800 aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len);
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003801 }
3802#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003803
3804#if CONFIG_FRAME_SIZE
3805 int frame_size_override_flag =
3806 (cm->width != cm->seq_params.max_frame_width ||
3807 cm->height != cm->seq_params.max_frame_height);
3808 aom_wb_write_bit(wb, frame_size_override_flag);
3809#endif
3810
Yaowu Xuc27fc142016-08-22 16:08:15 -07003811 if (cm->frame_type == KEY_FRAME) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003812 write_bitdepth_colorspace_sampling(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003813#if CONFIG_FRAME_SIZE
3814 write_frame_size(cm, frame_size_override_flag, wb);
3815#else
Yaowu Xuc27fc142016-08-22 16:08:15 -07003816 write_frame_size(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003817#endif
Debargha Mukherjeed2630fa2017-09-22 10:32:51 -07003818 write_sb_size(cm, wb);
3819
Alex Converseeb780e72016-12-13 12:46:41 -08003820#if CONFIG_ANS && ANS_MAX_SYMBOLS
3821 assert(cpi->common.ans_window_size_log2 >= 8);
3822 assert(cpi->common.ans_window_size_log2 < 24);
3823 aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4);
3824#endif // CONFIG_ANS && ANS_MAX_SYMBOLS
hui su24f7b072016-10-12 11:36:24 -07003825 aom_wb_write_bit(wb, cm->allow_screen_content_tools);
RogerZhou3b635242017-09-19 10:06:46 -07003826#if CONFIG_AMVR
3827 if (cm->allow_screen_content_tools) {
RogerZhou10a03802017-10-26 11:49:48 -07003828 if (cm->seq_force_integer_mv == 2) {
RogerZhou3b635242017-09-19 10:06:46 -07003829 aom_wb_write_bit(wb, 1);
3830 } else {
3831 aom_wb_write_bit(wb, 0);
RogerZhou10a03802017-10-26 11:49:48 -07003832 aom_wb_write_bit(wb, cm->seq_force_integer_mv);
RogerZhou3b635242017-09-19 10:06:46 -07003833 }
3834 }
3835#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003836 } else {
hui su24f7b072016-10-12 11:36:24 -07003837 if (cm->intra_only) aom_wb_write_bit(wb, cm->allow_screen_content_tools);
Thomas Daedea6a854b2017-06-22 17:49:11 -07003838#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
Yaowu Xuc27fc142016-08-22 16:08:15 -07003839 if (!cm->error_resilient_mode) {
3840 if (cm->intra_only) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003841 aom_wb_write_bit(wb,
Yaowu Xuc27fc142016-08-22 16:08:15 -07003842 cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL);
3843 } else {
Yaowu Xuf883b422016-08-30 14:01:10 -07003844 aom_wb_write_bit(wb,
Yaowu Xuc27fc142016-08-22 16:08:15 -07003845 cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE);
3846 if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE)
Yaowu Xuf883b422016-08-30 14:01:10 -07003847 aom_wb_write_bit(wb,
Yaowu Xuc27fc142016-08-22 16:08:15 -07003848 cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL);
3849 }
3850 }
Thomas Daedea6a854b2017-06-22 17:49:11 -07003851#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003852 cpi->refresh_frame_mask = get_refresh_mask(cpi);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003853
3854 if (cm->intra_only) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07003855 write_bitdepth_colorspace_sampling(cm, wb);
3856
Yaowu Xuf883b422016-08-30 14:01:10 -07003857 aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003858#if CONFIG_FRAME_SIZE
3859 write_frame_size(cm, frame_size_override_flag, wb);
3860#else
Yaowu Xuc27fc142016-08-22 16:08:15 -07003861 write_frame_size(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003862#endif
Pavel Frolovef4af292017-11-01 18:23:02 +03003863 write_sb_size(cm, wb);
Alex Converseeb780e72016-12-13 12:46:41 -08003864
3865#if CONFIG_ANS && ANS_MAX_SYMBOLS
3866 assert(cpi->common.ans_window_size_log2 >= 8);
3867 assert(cpi->common.ans_window_size_log2 < 24);
3868 aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4);
3869#endif // CONFIG_ANS && ANS_MAX_SYMBOLS
Yaowu Xuc27fc142016-08-22 16:08:15 -07003870 } else {
3871 MV_REFERENCE_FRAME ref_frame;
3872
Yaowu Xuf883b422016-08-30 14:01:10 -07003873 aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003874
Yaowu Xuc27fc142016-08-22 16:08:15 -07003875 if (!cpi->refresh_frame_mask) {
3876 // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame
3877 // will not be used as a reference
3878 cm->is_reference_frame = 0;
3879 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07003880
3881 for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
3882 assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX);
Yaowu Xuf883b422016-08-30 14:01:10 -07003883 aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame),
Yaowu Xuc27fc142016-08-22 16:08:15 -07003884 REF_FRAMES_LOG2);
Zoe Liu17af2742017-10-06 10:36:42 -07003885#if !CONFIG_FRAME_SIGN_BIAS
Yaowu Xuf883b422016-08-30 14:01:10 -07003886 aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]);
Zoe Liu17af2742017-10-06 10:36:42 -07003887#endif // !CONFIG_FRAME_SIGN_BIAS
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003888#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003889 if (cm->seq_params.frame_id_numbers_present_flag) {
3890 int i = get_ref_frame_map_idx(cpi, ref_frame);
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02003891 int frame_id_len = cm->seq_params.frame_id_length;
3892 int diff_len = cm->seq_params.delta_frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01003893 int delta_frame_id_minus1 =
3894 ((cm->current_frame_id - cm->ref_frame_id[i] +
3895 (1 << frame_id_len)) %
3896 (1 << frame_id_len)) -
3897 1;
3898 if (delta_frame_id_minus1 < 0 ||
3899 delta_frame_id_minus1 >= (1 << diff_len))
3900 cm->invalid_delta_frame_id_minus1 = 1;
3901 aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len);
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003902 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003903#endif // CONFIG_REFERENCE_BUFFER
Yaowu Xuc27fc142016-08-22 16:08:15 -07003904 }
3905
Arild Fuldseth842e9b02016-09-02 13:00:05 +02003906#if CONFIG_FRAME_SIZE
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003907 if (cm->error_resilient_mode == 0 && frame_size_override_flag) {
Arild Fuldseth842e9b02016-09-02 13:00:05 +02003908 write_frame_size_with_refs(cpi, wb);
3909 } else {
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01003910 write_frame_size(cm, frame_size_override_flag, wb);
Arild Fuldseth842e9b02016-09-02 13:00:05 +02003911 }
3912#else
Yaowu Xuc27fc142016-08-22 16:08:15 -07003913 write_frame_size_with_refs(cpi, wb);
Arild Fuldseth842e9b02016-09-02 13:00:05 +02003914#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003915
RogerZhou3b635242017-09-19 10:06:46 -07003916#if CONFIG_AMVR
RogerZhou10a03802017-10-26 11:49:48 -07003917 if (cm->seq_force_integer_mv == 2) {
3918 aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv);
RogerZhou3b635242017-09-19 10:06:46 -07003919 }
RogerZhou10a03802017-10-26 11:49:48 -07003920 if (cm->cur_frame_force_integer_mv) {
3921 cm->allow_high_precision_mv = 0;
3922 } else {
Debargha Mukherjeeb2147752017-11-01 07:00:45 -07003923#if !CONFIG_EIGHTH_PEL_MV_ONLY
RogerZhou10a03802017-10-26 11:49:48 -07003924 aom_wb_write_bit(wb, cm->allow_high_precision_mv);
Debargha Mukherjeeb2147752017-11-01 07:00:45 -07003925#endif // !CONFIG_EIGHTH_PEL_MV_ONLY
RogerZhou10a03802017-10-26 11:49:48 -07003926 }
3927#else
Debargha Mukherjeeb2147752017-11-01 07:00:45 -07003928#if !CONFIG_EIGHTH_PEL_MV_ONLY
Yaowu Xuf883b422016-08-30 14:01:10 -07003929 aom_wb_write_bit(wb, cm->allow_high_precision_mv);
Debargha Mukherjeeb2147752017-11-01 07:00:45 -07003930#endif // !CONFIG_EIGHTH_PEL_MV_ONLY
RogerZhou10a03802017-10-26 11:49:48 -07003931#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003932 fix_interp_filter(cm, cpi->td.counts);
Angie Chiang5678ad92016-11-21 09:38:40 -08003933 write_frame_interp_filter(cm->interp_filter, wb);
Fangwen Fu8d164de2016-12-14 13:40:54 -08003934#if CONFIG_TEMPMV_SIGNALING
Rupert Swarbrick1f990a62017-07-11 11:09:33 +01003935 if (frame_might_use_prev_frame_mvs(cm)) {
Fangwen Fu8d164de2016-12-14 13:40:54 -08003936 aom_wb_write_bit(wb, cm->use_prev_frame_mvs);
3937 }
3938#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003939 }
3940 }
3941
Jingning Hanea255c92017-09-29 08:12:09 -07003942#if CONFIG_FRAME_MARKER
Jingning Hanc723b342017-08-24 11:19:46 -07003943 if (cm->show_frame == 0) {
3944 int arf_offset = AOMMIN(
3945 (MAX_GF_INTERVAL - 1),
3946 cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]);
Jingning Hanc723b342017-08-24 11:19:46 -07003947 int brf_offset =
3948 cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index];
3949
3950 arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset);
Jingning Hanc723b342017-08-24 11:19:46 -07003951 aom_wb_write_literal(wb, arf_offset, 4);
3952 }
3953#endif
3954
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003955#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01003956 if (cm->seq_params.frame_id_numbers_present_flag) {
Debargha Mukherjee778023d2017-09-26 17:50:27 -07003957 cm->refresh_mask =
3958 cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi);
3959 }
3960#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)5114b7b2016-11-09 13:32:54 +01003961
Rupert Swarbrick84b05ac2017-10-27 18:10:53 +01003962#if CONFIG_EXT_TILE
3963 const int might_bwd_adapt =
3964 !(cm->error_resilient_mode || cm->large_scale_tile);
3965#else
3966 const int might_bwd_adapt = !cm->error_resilient_mode;
3967#endif // CONFIG_EXT_TILE
3968 if (might_bwd_adapt) {
Yaowu Xuf883b422016-08-30 14:01:10 -07003969 aom_wb_write_bit(
Yaowu Xuc27fc142016-08-22 16:08:15 -07003970 wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD);
3971 }
Thomas Daededa4d8b92017-06-05 15:44:14 -07003972#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
Yaowu Xuf883b422016-08-30 14:01:10 -07003973 aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2);
Thomas Daededa4d8b92017-06-05 15:44:14 -07003974#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07003975 encode_loopfilter(cm, wb);
Yaowu Xuc27fc142016-08-22 16:08:15 -07003976 encode_quantization(cm, wb);
3977 encode_segmentation(cm, xd, wb);
Arild Fuldseth07441162016-08-15 15:07:52 +02003978 {
Thomas Davies28444be2017-10-13 18:12:25 +01003979 int delta_q_allowed = 1;
3980#if !CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +02003981 int i;
3982 struct segmentation *const seg = &cm->seg;
3983 int segment_quantizer_active = 0;
3984 for (i = 0; i < MAX_SEGMENTS; i++) {
3985 if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) {
3986 segment_quantizer_active = 1;
3987 }
3988 }
Thomas Davies28444be2017-10-13 18:12:25 +01003989 delta_q_allowed = !segment_quantizer_active;
3990#endif
Arild Fuldseth (arilfuld)54de7d62017-03-20 13:07:11 +01003991
Yaowu Xu288f8162017-10-10 15:03:22 -07003992 if (cm->delta_q_present_flag) assert(cm->base_qindex > 0);
Thomas Davies28444be2017-10-13 18:12:25 +01003993 // Segment quantizer and delta_q both allowed if CONFIG_EXT_DELTA_Q
3994 if (delta_q_allowed == 1 && cm->base_qindex > 0) {
Arild Fuldseth07441162016-08-15 15:07:52 +02003995 aom_wb_write_bit(wb, cm->delta_q_present_flag);
3996 if (cm->delta_q_present_flag) {
Thomas Daviesf6936102016-09-05 16:51:31 +01003997 aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2);
Arild Fuldseth07441162016-08-15 15:07:52 +02003998 xd->prev_qindex = cm->base_qindex;
Fangwen Fu231fe422017-04-24 17:52:29 -07003999#if CONFIG_EXT_DELTA_Q
Thomas Davies28444be2017-10-13 18:12:25 +01004000 assert(cm->seg.abs_delta == SEGMENT_DELTADATA);
Fangwen Fu231fe422017-04-24 17:52:29 -07004001 aom_wb_write_bit(wb, cm->delta_lf_present_flag);
4002 if (cm->delta_lf_present_flag) {
4003 aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2);
Cheng Chen880166a2017-10-02 17:48:48 -07004004 xd->prev_delta_lf_from_base = 0;
Cheng Chena97394f2017-09-27 15:05:14 -07004005#if CONFIG_LOOPFILTER_LEVEL
Cheng Chen880166a2017-10-02 17:48:48 -07004006 aom_wb_write_bit(wb, cm->delta_lf_multi);
Cheng Chena97394f2017-09-27 15:05:14 -07004007 for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id)
4008 xd->prev_delta_lf[lf_id] = 0;
4009#endif // CONFIG_LOOPFILTER_LEVEL
Fangwen Fu231fe422017-04-24 17:52:29 -07004010 }
4011#endif // CONFIG_EXT_DELTA_Q
Arild Fuldseth07441162016-08-15 15:07:52 +02004012 }
4013 }
4014 }
Thomas Daedef636d5c2017-06-29 13:48:27 -07004015#if CONFIG_CDEF
4016 if (!cm->all_lossless) {
4017 encode_cdef(cm, wb);
4018 }
4019#endif
4020#if CONFIG_LOOP_RESTORATION
4021 encode_restoration_mode(cm, wb);
4022#endif // CONFIG_LOOP_RESTORATION
4023 write_tx_mode(cm, &cm->tx_mode, wb);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004024
4025 if (cpi->allow_comp_inter_inter) {
4026 const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT;
Zoe Liub05e5d12017-02-07 14:32:53 -08004027#if !CONFIG_REF_ADAPT
Yaowu Xuc27fc142016-08-22 16:08:15 -07004028 const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE;
Zoe Liub05e5d12017-02-07 14:32:53 -08004029#endif // !CONFIG_REF_ADAPT
Yaowu Xuc27fc142016-08-22 16:08:15 -07004030
Yaowu Xuf883b422016-08-30 14:01:10 -07004031 aom_wb_write_bit(wb, use_hybrid_pred);
Zoe Liub05e5d12017-02-07 14:32:53 -08004032#if !CONFIG_REF_ADAPT
Yaowu Xuf883b422016-08-30 14:01:10 -07004033 if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred);
Zoe Liub05e5d12017-02-07 14:32:53 -08004034#endif // !CONFIG_REF_ADAPT
Yaowu Xuc27fc142016-08-22 16:08:15 -07004035 }
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07004036 write_compound_tools(cm, wb);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004037
Sarah Parkere68a3e42017-02-16 14:03:24 -08004038 aom_wb_write_bit(wb, cm->reduced_tx_set_used);
Sarah Parkere68a3e42017-02-16 14:03:24 -08004039
Angie Chiang6dbffbf2017-10-06 16:59:54 -07004040#if CONFIG_ADAPT_SCAN
4041 aom_wb_write_bit(wb, cm->use_adapt_scan);
4042#endif
4043
Sarah Parkerf289f9f2017-09-12 18:50:02 -07004044 if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb);
Sarah Parker3e579a62017-08-23 16:53:20 -07004045
Yaowu Xuc27fc142016-08-22 16:08:15 -07004046 write_tile_info(cm, wb);
4047}
4048
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004049#else
4050// New function based on HLS R18
4051static void write_uncompressed_header_obu(AV1_COMP *cpi,
4052 struct aom_write_bit_buffer *wb) {
4053 AV1_COMMON *const cm = &cpi->common;
4054 MACROBLOCKD *const xd = &cpi->td.mb.e_mbd;
4055
4056#if CONFIG_EXT_TILE
4057 aom_wb_write_literal(wb, cm->large_scale_tile, 1);
4058#endif // CONFIG_EXT_TILE
4059
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004060 // NOTE: By default all coded frames to be used as a reference
4061 cm->is_reference_frame = 1;
4062
4063 if (cm->show_existing_frame) {
4064 RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
4065 const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show];
4066
4067 if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) {
4068 aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM,
4069 "Buffer %d does not contain a reconstructed frame",
4070 frame_to_show);
4071 }
4072 ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show);
4073
4074 aom_wb_write_bit(wb, 1); // show_existing_frame
4075 aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3);
4076
4077#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01004078 if (cm->seq_params.frame_id_numbers_present_flag) {
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02004079 int frame_id_len = cm->seq_params.frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01004080 int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show];
4081 aom_wb_write_literal(wb, display_frame_id, frame_id_len);
4082 /* Add a zero byte to prevent emulation of superframe marker */
4083 /* Same logic as when when terminating the entropy coder */
4084 /* Consider to have this logic only one place */
4085 aom_wb_write_literal(wb, 0, 8);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004086 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07004087#endif // CONFIG_REFERENCE_BUFFER
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004088
4089 return;
4090 } else {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004091 aom_wb_write_bit(wb, 0); // show_existing_frame
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004092 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004093
4094 cm->frame_type = cm->intra_only ? INTRA_ONLY_FRAME : cm->frame_type;
4095 aom_wb_write_literal(wb, cm->frame_type, 2);
4096
4097 if (cm->intra_only) cm->frame_type = INTRA_ONLY_FRAME;
4098
4099 aom_wb_write_bit(wb, cm->show_frame);
4100 aom_wb_write_bit(wb, cm->error_resilient_mode);
4101
4102#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01004103 cm->invalid_delta_frame_id_minus1 = 0;
4104 if (cm->seq_params.frame_id_numbers_present_flag) {
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02004105 int frame_id_len = cm->seq_params.frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01004106 aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len);
Debargha Mukherjee778023d2017-09-26 17:50:27 -07004107 }
4108#endif // CONFIG_REFERENCE_BUFFER
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004109
4110#if CONFIG_FRAME_SIZE
4111 int frame_size_override_flag =
4112 (cm->width != cm->seq_params.max_frame_width ||
4113 cm->height != cm->seq_params.max_frame_height);
4114 aom_wb_write_bit(wb, frame_size_override_flag);
4115#endif
4116
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004117 if (cm->frame_type == KEY_FRAME) {
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004118#if CONFIG_FRAME_SIZE
4119 write_frame_size(cm, frame_size_override_flag, wb);
4120#else
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004121 write_frame_size(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004122#endif
Debargha Mukherjeed2630fa2017-09-22 10:32:51 -07004123 write_sb_size(cm, wb);
4124
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004125#if CONFIG_ANS && ANS_MAX_SYMBOLS
4126 assert(cpi->common.ans_window_size_log2 >= 8);
4127 assert(cpi->common.ans_window_size_log2 < 24);
4128 aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4);
4129#endif // CONFIG_ANS && ANS_MAX_SYMBOLS
4130 aom_wb_write_bit(wb, cm->allow_screen_content_tools);
4131#if CONFIG_AMVR
4132 if (cm->allow_screen_content_tools) {
RogerZhou10a03802017-10-26 11:49:48 -07004133 if (cm->seq_force_integer_mv == 2) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004134 aom_wb_write_bit(wb, 1);
4135 } else {
4136 aom_wb_write_bit(wb, 0);
RogerZhou10a03802017-10-26 11:49:48 -07004137 aom_wb_write_bit(wb, cm->seq_force_integer_mv == 0);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004138 }
4139 }
4140#endif
4141 } else if (cm->frame_type == INTRA_ONLY_FRAME) {
4142 if (cm->intra_only) aom_wb_write_bit(wb, cm->allow_screen_content_tools);
4143#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
4144 if (!cm->error_resilient_mode) {
4145 if (cm->intra_only) {
4146 aom_wb_write_bit(wb,
4147 cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL);
4148 }
4149 }
4150#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004151 cpi->refresh_frame_mask = get_refresh_mask(cpi);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004152
4153 if (cm->intra_only) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004154 aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004155#if CONFIG_FRAME_SIZE
4156 write_frame_size(cm, frame_size_override_flag, wb);
4157#else
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004158 write_frame_size(cm, wb);
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004159#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004160
4161#if CONFIG_ANS && ANS_MAX_SYMBOLS
4162 assert(cpi->common.ans_window_size_log2 >= 8);
4163 assert(cpi->common.ans_window_size_log2 < 24);
4164 aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4);
4165#endif // CONFIG_ANS && ANS_MAX_SYMBOLS
4166 }
4167 } else if (cm->frame_type == INTER_FRAME) {
4168 MV_REFERENCE_FRAME ref_frame;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004169#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
4170 if (!cm->error_resilient_mode) {
4171 aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE);
4172 if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE)
4173 aom_wb_write_bit(wb,
4174 cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL);
4175 }
4176#endif
4177
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004178 cpi->refresh_frame_mask = get_refresh_mask(cpi);
4179 aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004180
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004181 if (!cpi->refresh_frame_mask) {
4182 // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame
4183 // will not be used as a reference
4184 cm->is_reference_frame = 0;
4185 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004186
4187 for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
4188 assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX);
4189 aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame),
4190 REF_FRAMES_LOG2);
Zoe Liu17af2742017-10-06 10:36:42 -07004191#if !CONFIG_FRAME_SIGN_BIAS
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004192 aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]);
Zoe Liu17af2742017-10-06 10:36:42 -07004193#endif // !CONFIG_FRAME_SIGN_BIAS
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004194#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01004195 if (cm->seq_params.frame_id_numbers_present_flag) {
4196 int i = get_ref_frame_map_idx(cpi, ref_frame);
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02004197 int frame_id_len = cm->seq_params.frame_id_length;
4198 int diff_len = cm->seq_params.delta_frame_id_length;
David Barker5e70a112017-10-03 14:28:17 +01004199 int delta_frame_id_minus1 =
4200 ((cm->current_frame_id - cm->ref_frame_id[i] +
4201 (1 << frame_id_len)) %
4202 (1 << frame_id_len)) -
4203 1;
4204 if (delta_frame_id_minus1 < 0 ||
4205 delta_frame_id_minus1 >= (1 << diff_len))
4206 cm->invalid_delta_frame_id_minus1 = 1;
4207 aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004208 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07004209#endif // CONFIG_REFERENCE_BUFFER
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004210 }
4211
4212#if CONFIG_FRAME_SIZE
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004213 if (cm->error_resilient_mode == 0 && frame_size_override_flag) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004214 write_frame_size_with_refs(cpi, wb);
4215 } else {
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004216 write_frame_size(cm, frame_size_override_flag, wb);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004217 }
4218#else
4219 write_frame_size_with_refs(cpi, wb);
4220#endif
4221
4222#if CONFIG_AMVR
RogerZhou10a03802017-10-26 11:49:48 -07004223 if (cm->seq_force_integer_mv == 2) {
4224 aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv == 0);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004225 }
4226#endif
4227 aom_wb_write_bit(wb, cm->allow_high_precision_mv);
4228
4229 fix_interp_filter(cm, cpi->td.counts);
4230 write_frame_interp_filter(cm->interp_filter, wb);
4231#if CONFIG_TEMPMV_SIGNALING
4232 if (frame_might_use_prev_frame_mvs(cm)) {
4233 aom_wb_write_bit(wb, cm->use_prev_frame_mvs);
4234 }
4235#endif
4236 } else if (cm->frame_type == S_FRAME) {
4237 MV_REFERENCE_FRAME ref_frame;
4238
4239#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
4240 if (!cm->error_resilient_mode) {
4241 aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE);
4242 if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE)
4243 aom_wb_write_bit(wb,
4244 cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL);
4245 }
4246#endif
4247
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004248 if (!cpi->refresh_frame_mask) {
4249 // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame
4250 // will not be used as a reference
4251 cm->is_reference_frame = 0;
4252 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004253
4254 for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) {
4255 assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX);
4256 aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame),
4257 REF_FRAMES_LOG2);
4258 assert(cm->ref_frame_sign_bias[ref_frame] == 0);
4259#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01004260 if (cm->seq_params.frame_id_numbers_present_flag) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004261 int i = get_ref_frame_map_idx(cpi, ref_frame);
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02004262 int frame_id_len = cm->seq_params.frame_id_length;
4263 int diff_len = cm->seq_params.delta_frame_id_length;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004264 int delta_frame_id_minus1 =
4265 ((cm->current_frame_id - cm->ref_frame_id[i] +
4266 (1 << frame_id_len)) %
4267 (1 << frame_id_len)) -
4268 1;
4269 if (delta_frame_id_minus1 < 0 ||
4270 delta_frame_id_minus1 >= (1 << diff_len))
4271 cm->invalid_delta_frame_id_minus1 = 1;
4272 aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len);
4273 }
Debargha Mukherjee778023d2017-09-26 17:50:27 -07004274#endif // CONFIG_REFERENCE_BUFFER
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004275 }
4276
4277#if CONFIG_FRAME_SIZE
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004278 if (cm->error_resilient_mode == 0 && frame_size_override_flag) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004279 write_frame_size_with_refs(cpi, wb);
4280 } else {
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004281 write_frame_size(cm, frame_size_override_flag, wb);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004282 }
4283#else
4284 write_frame_size_with_refs(cpi, wb);
4285#endif
4286
4287 aom_wb_write_bit(wb, cm->allow_high_precision_mv);
4288
4289 fix_interp_filter(cm, cpi->td.counts);
4290 write_frame_interp_filter(cm->interp_filter, wb);
4291#if CONFIG_TEMPMV_SIGNALING
4292 if (frame_might_use_prev_frame_mvs(cm)) {
4293 aom_wb_write_bit(wb, cm->use_prev_frame_mvs);
4294 }
4295#endif
4296 }
4297
Soo-Chul Hanebdbcb42017-11-02 18:26:21 -04004298#if CONFIG_FRAME_MARKER
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004299 if (cm->show_frame == 0) {
4300 int arf_offset = AOMMIN(
4301 (MAX_GF_INTERVAL - 1),
4302 cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004303 int brf_offset =
4304 cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index];
4305
4306 arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004307 aom_wb_write_literal(wb, arf_offset, 4);
4308 }
4309#endif
4310
4311#if CONFIG_REFERENCE_BUFFER
David Barker5e70a112017-10-03 14:28:17 +01004312 if (cm->seq_params.frame_id_numbers_present_flag) {
Debargha Mukherjee778023d2017-09-26 17:50:27 -07004313 cm->refresh_mask =
4314 cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi);
4315 }
4316#endif // CONFIG_REFERENCE_BUFFER
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004317
4318 if (!cm->error_resilient_mode) {
4319 aom_wb_write_bit(
4320 wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD);
4321 }
4322#if !CONFIG_NO_FRAME_CONTEXT_SIGNALING
4323 aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2);
4324#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004325 encode_loopfilter(cm, wb);
4326 encode_quantization(cm, wb);
4327 encode_segmentation(cm, xd, wb);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004328 {
Thomas Davies28444be2017-10-13 18:12:25 +01004329 int delta_q_allowed = 1;
4330#if !CONFIG_EXT_DELTA_Q
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004331 int i;
4332 struct segmentation *const seg = &cm->seg;
4333 int segment_quantizer_active = 0;
4334 for (i = 0; i < MAX_SEGMENTS; i++) {
4335 if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) {
4336 segment_quantizer_active = 1;
4337 }
4338 }
Thomas Davies28444be2017-10-13 18:12:25 +01004339 delta_q_allowed = !segment_quantizer_active;
4340#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004341
4342 if (cm->delta_q_present_flag)
Thomas Davies28444be2017-10-13 18:12:25 +01004343 assert(delta_q_allowed == 1 && cm->base_qindex > 0);
4344 if (delta_q_allowed == 1 && cm->base_qindex > 0) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004345 aom_wb_write_bit(wb, cm->delta_q_present_flag);
4346 if (cm->delta_q_present_flag) {
4347 aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2);
4348 xd->prev_qindex = cm->base_qindex;
4349#if CONFIG_EXT_DELTA_Q
Rupert Swarbrick70f0eb32017-10-25 12:18:50 +01004350 assert(cm->seg.abs_delta == SEGMENT_DELTADATA);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004351 aom_wb_write_bit(wb, cm->delta_lf_present_flag);
4352 if (cm->delta_lf_present_flag) {
4353 aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2);
Cheng Chena97394f2017-09-27 15:05:14 -07004354#if CONFIG_LOOPFILTER_LEVEL
4355 for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id)
4356 xd->prev_delta_lf[lf_id] = 0;
4357#endif // CONFIG_LOOPFILTER_LEVEL
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004358 xd->prev_delta_lf_from_base = 0;
4359 }
4360#endif // CONFIG_EXT_DELTA_Q
4361 }
4362 }
4363 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004364#if CONFIG_CDEF
4365 if (!cm->all_lossless) {
4366 encode_cdef(cm, wb);
4367 }
4368#endif
4369#if CONFIG_LOOP_RESTORATION
4370 encode_restoration_mode(cm, wb);
4371#endif // CONFIG_LOOP_RESTORATION
4372 write_tx_mode(cm, &cm->tx_mode, wb);
4373
4374 if (cpi->allow_comp_inter_inter) {
4375 const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT;
4376#if !CONFIG_REF_ADAPT
4377 const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE;
4378#endif // !CONFIG_REF_ADAPT
4379
4380 aom_wb_write_bit(wb, use_hybrid_pred);
4381#if !CONFIG_REF_ADAPT
4382 if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred);
4383#endif // !CONFIG_REF_ADAPT
4384 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004385 write_compound_tools(cm, wb);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004386
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004387 aom_wb_write_bit(wb, cm->reduced_tx_set_used);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004388
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004389 if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004390
4391 write_tile_info(cm, wb);
4392}
4393#endif // CONFIG_OBU
4394
Yaowu Xuf883b422016-08-30 14:01:10 -07004395static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data) {
4396 AV1_COMMON *const cm = &cpi->common;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004397 FRAME_CONTEXT *const fc = cm->fc;
Yaowu Xuf883b422016-08-30 14:01:10 -07004398 aom_writer *header_bc;
Ryanf0e39192017-10-09 09:45:13 -07004399
4400#if !CONFIG_NEW_MULTISYMBOL || CONFIG_COMPOUND_SINGLEREF
Thomas Davies599395e2017-07-21 18:02:48 +01004401 FRAME_COUNTS *counts = cpi->td.counts;
Thomas Davies894cc812017-06-22 17:51:33 +01004402#endif
Thomas9ac55082016-09-23 18:04:17 +01004403
Thomas Davies80188d12016-10-26 16:08:35 -07004404 const int probwt = cm->num_tg;
Thomas Davies04e5aa72017-06-28 14:36:39 +01004405 (void)probwt;
Thomas Davies04e5aa72017-06-28 14:36:39 +01004406 (void)fc;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004407
Yaowu Xuf883b422016-08-30 14:01:10 -07004408 aom_writer real_header_bc;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004409 header_bc = &real_header_bc;
Alex Converse30f0e152017-03-28 10:13:27 -07004410#if CONFIG_ANS
4411 header_bc->size = 1 << cpi->common.ans_window_size_log2;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004412#endif
Alex Converse30f0e152017-03-28 10:13:27 -07004413 aom_start_encode(header_bc, data);
Debargha Mukherjee5cd2ab92016-09-08 15:15:17 -07004414
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02004415#if CONFIG_RECT_TX_EXT
Yue Chen56e226e2017-05-02 16:21:40 -07004416 if (cm->tx_mode == TX_MODE_SELECT)
4417 av1_cond_prob_diff_update(header_bc, &cm->fc->quarter_tx_size_prob,
4418 cm->counts.quarter_tx_size, probwt);
Yue Chend6bdd462017-07-19 16:05:43 -07004419#endif
Angie Chiang800df032017-03-22 11:14:12 -07004420
Sebastien Alaiwanfb838772017-10-24 12:02:54 +02004421#if !CONFIG_NEW_MULTISYMBOL
David Barker16c64e32017-08-23 16:54:59 +01004422 if (cm->tx_mode == TX_MODE_SELECT)
4423 update_txfm_partition_probs(cm, header_bc, counts, probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004424#endif
4425
Thomas Davies61e3e372017-04-04 16:10:23 +01004426#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -07004427 update_skip_probs(cm, header_bc, counts);
Cheng Chen0a7f2f52017-10-10 15:16:09 -07004428#if CONFIG_JNT_COMP
4429 for (int k = 0; k < COMP_INDEX_CONTEXTS; ++k)
4430 av1_cond_prob_diff_update(header_bc, &cm->fc->compound_index_probs[k],
4431 counts->compound_index[k], probwt);
4432#endif // CONFIG_JNT_COMP
Thomas Davies61e3e372017-04-04 16:10:23 +01004433#endif
hui su9aa97492017-01-26 16:46:01 -08004434
Debargha Mukherjee801cc922017-09-22 17:22:50 -07004435 if (!frame_is_intra_only(cm)) {
Thomas Davies149eda52017-06-12 18:11:55 +01004436#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -07004437 update_inter_mode_probs(cm, header_bc, counts);
Thomas Davies149eda52017-06-12 18:11:55 +01004438#endif
Debargha Mukherjee9e2c7a62017-05-23 21:18:42 -07004439 if (cm->reference_mode != COMPOUND_REFERENCE &&
4440 cm->allow_interintra_compound) {
Thomas Daviescff91712017-07-07 11:49:55 +01004441#if !CONFIG_NEW_MULTISYMBOL
Ryanf0e39192017-10-09 09:45:13 -07004442 for (int i = 0; i < BLOCK_SIZE_GROUPS; i++) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07004443 if (is_interintra_allowed_bsize_group(i)) {
Yaowu Xuf883b422016-08-30 14:01:10 -07004444 av1_cond_prob_diff_update(header_bc, &fc->interintra_prob[i],
Thomas Davies80188d12016-10-26 16:08:35 -07004445 cm->counts.interintra[i], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004446 }
4447 }
Thomas Daviescff91712017-07-07 11:49:55 +01004448#endif
Debargha Mukherjee371968c2017-10-29 12:30:04 -07004449#if !CONFIG_NEW_MULTISYMBOL
Rupert Swarbrick93c39e92017-07-12 11:11:02 +01004450#if CONFIG_EXT_PARTITION_TYPES
4451 int block_sizes_to_update = BLOCK_SIZES_ALL;
4452#else
4453 int block_sizes_to_update = BLOCK_SIZES;
4454#endif
Ryanf0e39192017-10-09 09:45:13 -07004455 for (int i = 0; i < block_sizes_to_update; i++) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07004456 if (is_interintra_allowed_bsize(i) && is_interintra_wedge_used(i))
Yaowu Xuf883b422016-08-30 14:01:10 -07004457 av1_cond_prob_diff_update(header_bc, &fc->wedge_interintra_prob[i],
Thomas Davies80188d12016-10-26 16:08:35 -07004458 cm->counts.wedge_interintra[i], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004459 }
Debargha Mukherjee371968c2017-10-29 12:30:04 -07004460#endif // !CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -07004461 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07004462
Thomas Daviesf6ad9352017-04-19 11:38:06 +01004463#if !CONFIG_NEW_MULTISYMBOL
Ryanf0e39192017-10-09 09:45:13 -07004464 for (int i = 0; i < INTRA_INTER_CONTEXTS; i++)
Yaowu Xuf883b422016-08-30 14:01:10 -07004465 av1_cond_prob_diff_update(header_bc, &fc->intra_inter_prob[i],
Thomas Davies80188d12016-10-26 16:08:35 -07004466 counts->intra_inter[i], probwt);
Thomas Daviesf6ad9352017-04-19 11:38:06 +01004467#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07004468
Thomas Davies860def62017-06-14 10:00:03 +01004469#if !CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -07004470 if (cpi->allow_comp_inter_inter) {
4471 const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT;
4472 if (use_hybrid_pred)
Ryanf0e39192017-10-09 09:45:13 -07004473 for (int i = 0; i < COMP_INTER_CONTEXTS; i++)
Yaowu Xuf883b422016-08-30 14:01:10 -07004474 av1_cond_prob_diff_update(header_bc, &fc->comp_inter_prob[i],
Thomas Davies80188d12016-10-26 16:08:35 -07004475 counts->comp_inter[i], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004476 }
4477
4478 if (cm->reference_mode != COMPOUND_REFERENCE) {
Ryanf0e39192017-10-09 09:45:13 -07004479 for (int i = 0; i < REF_CONTEXTS; i++) {
4480 for (int j = 0; j < (SINGLE_REFS - 1); j++) {
Yaowu Xuf883b422016-08-30 14:01:10 -07004481 av1_cond_prob_diff_update(header_bc, &fc->single_ref_prob[i][j],
Thomas Davies80188d12016-10-26 16:08:35 -07004482 counts->single_ref[i][j], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004483 }
4484 }
4485 }
Zoe Liufcf5fa22017-06-26 16:00:38 -07004486
Yaowu Xuc27fc142016-08-22 16:08:15 -07004487 if (cm->reference_mode != SINGLE_REFERENCE) {
Zoe Liuc082bbc2017-05-17 13:31:37 -07004488#if CONFIG_EXT_COMP_REFS
Ryanf0e39192017-10-09 09:45:13 -07004489 for (int i = 0; i < COMP_REF_TYPE_CONTEXTS; i++)
Zoe Liuc082bbc2017-05-17 13:31:37 -07004490 av1_cond_prob_diff_update(header_bc, &fc->comp_ref_type_prob[i],
4491 counts->comp_ref_type[i], probwt);
4492
Ryanf0e39192017-10-09 09:45:13 -07004493 for (int i = 0; i < UNI_COMP_REF_CONTEXTS; i++)
4494 for (int j = 0; j < (UNIDIR_COMP_REFS - 1); j++)
Zoe Liuc082bbc2017-05-17 13:31:37 -07004495 av1_cond_prob_diff_update(header_bc, &fc->uni_comp_ref_prob[i][j],
4496 counts->uni_comp_ref[i][j], probwt);
4497#endif // CONFIG_EXT_COMP_REFS
4498
Ryanf0e39192017-10-09 09:45:13 -07004499 for (int i = 0; i < REF_CONTEXTS; i++) {
Ryanf0e39192017-10-09 09:45:13 -07004500 for (int j = 0; j < (FWD_REFS - 1); j++) {
Yaowu Xuf883b422016-08-30 14:01:10 -07004501 av1_cond_prob_diff_update(header_bc, &fc->comp_ref_prob[i][j],
Thomas Davies80188d12016-10-26 16:08:35 -07004502 counts->comp_ref[i][j], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004503 }
Ryanf0e39192017-10-09 09:45:13 -07004504 for (int j = 0; j < (BWD_REFS - 1); j++) {
Yaowu Xuf883b422016-08-30 14:01:10 -07004505 av1_cond_prob_diff_update(header_bc, &fc->comp_bwdref_prob[i][j],
Thomas Davies80188d12016-10-26 16:08:35 -07004506 counts->comp_bwdref[i][j], probwt);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004507 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07004508 }
4509 }
Zoe Liufcf5fa22017-06-26 16:00:38 -07004510#endif // CONFIG_NEW_MULTISYMBOL
Yaowu Xuc27fc142016-08-22 16:08:15 -07004511
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02004512#if CONFIG_COMPOUND_SINGLEREF
Ryanf0e39192017-10-09 09:45:13 -07004513 for (int i = 0; i < COMP_INTER_MODE_CONTEXTS; i++)
Zoe Liu85b66462017-04-20 14:28:19 -07004514 av1_cond_prob_diff_update(header_bc, &fc->comp_inter_mode_prob[i],
4515 counts->comp_inter_mode[i], probwt);
Sebastien Alaiwan0bdea0d2017-10-02 15:15:05 +02004516#endif // CONFIG_COMPOUND_SINGLEREF
Zoe Liu85b66462017-04-20 14:28:19 -07004517
Thomas Davies599395e2017-07-21 18:02:48 +01004518#if !CONFIG_NEW_MULTISYMBOL
Sebastien Alaiwane140c502017-04-27 09:52:34 +02004519 av1_write_nmv_probs(cm, cm->allow_high_precision_mv, header_bc, counts->mv);
Thomas Davies599395e2017-07-21 18:02:48 +01004520#endif
Sarah Parker689b0ca2016-10-11 12:06:33 -07004521 }
Yaowu Xuf883b422016-08-30 14:01:10 -07004522 aom_stop_encode(header_bc);
Yaowu Xuc27fc142016-08-22 16:08:15 -07004523 assert(header_bc->pos <= 0xffff);
4524 return header_bc->pos;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004525}
4526
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004527#if !CONFIG_OBU || CONFIG_EXT_TILE
Yaowu Xuc27fc142016-08-22 16:08:15 -07004528static int choose_size_bytes(uint32_t size, int spare_msbs) {
4529 // Choose the number of bytes required to represent size, without
4530 // using the 'spare_msbs' number of most significant bits.
4531
4532 // Make sure we will fit in 4 bytes to start with..
4533 if (spare_msbs > 0 && size >> (32 - spare_msbs) != 0) return -1;
4534
4535 // Normalise to 32 bits
4536 size <<= spare_msbs;
4537
4538 if (size >> 24 != 0)
4539 return 4;
4540 else if (size >> 16 != 0)
4541 return 3;
4542 else if (size >> 8 != 0)
4543 return 2;
4544 else
4545 return 1;
4546}
4547
4548static void mem_put_varsize(uint8_t *const dst, const int sz, const int val) {
4549 switch (sz) {
4550 case 1: dst[0] = (uint8_t)(val & 0xff); break;
4551 case 2: mem_put_le16(dst, val); break;
4552 case 3: mem_put_le24(dst, val); break;
4553 case 4: mem_put_le32(dst, val); break;
James Zern06c372d2017-04-20 16:08:29 -07004554 default: assert(0 && "Invalid size"); break;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004555 }
4556}
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004557
Yaowu Xuf883b422016-08-30 14:01:10 -07004558static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst,
Yaowu Xuc27fc142016-08-22 16:08:15 -07004559 const uint32_t data_size, const uint32_t max_tile_size,
4560 const uint32_t max_tile_col_size,
4561 int *const tile_size_bytes,
4562 int *const tile_col_size_bytes) {
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004563 // Choose the tile size bytes (tsb) and tile column size bytes (tcsb)
4564 int tsb;
4565 int tcsb;
4566
Yaowu Xuc27fc142016-08-22 16:08:15 -07004567#if CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004568 if (cm->large_scale_tile) {
4569 // The top bit in the tile size field indicates tile copy mode, so we
4570 // have 1 less bit to code the tile size
4571 tsb = choose_size_bytes(max_tile_size, 1);
4572 tcsb = choose_size_bytes(max_tile_col_size, 0);
4573 } else {
4574#endif // CONFIG_EXT_TILE
4575 tsb = choose_size_bytes(max_tile_size, 0);
4576 tcsb = 4; // This is ignored
4577 (void)max_tile_col_size;
4578#if CONFIG_EXT_TILE
4579 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07004580#endif // CONFIG_EXT_TILE
4581
4582 assert(tsb > 0);
4583 assert(tcsb > 0);
4584
4585 *tile_size_bytes = tsb;
4586 *tile_col_size_bytes = tcsb;
4587
4588 if (tsb == 4 && tcsb == 4) {
4589 return data_size;
4590 } else {
4591 uint32_t wpos = 0;
4592 uint32_t rpos = 0;
4593
4594#if CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004595 if (cm->large_scale_tile) {
4596 int tile_row;
4597 int tile_col;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004598
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004599 for (tile_col = 0; tile_col < cm->tile_cols; tile_col++) {
4600 // All but the last column has a column header
4601 if (tile_col < cm->tile_cols - 1) {
4602 uint32_t tile_col_size = mem_get_le32(dst + rpos);
4603 rpos += 4;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004604
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004605 // Adjust the tile column size by the number of bytes removed
4606 // from the tile size fields.
4607 tile_col_size -= (4 - tsb) * cm->tile_rows;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004608
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004609 mem_put_varsize(dst + wpos, tcsb, tile_col_size);
4610 wpos += tcsb;
4611 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07004612
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004613 for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) {
4614 // All, including the last row has a header
4615 uint32_t tile_header = mem_get_le32(dst + rpos);
4616 rpos += 4;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004617
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004618 // If this is a copy tile, we need to shift the MSB to the
4619 // top bit of the new width, and there is no data to copy.
4620 if (tile_header >> 31 != 0) {
4621 if (tsb < 4) tile_header >>= 32 - 8 * tsb;
4622 mem_put_varsize(dst + wpos, tsb, tile_header);
4623 wpos += tsb;
4624 } else {
4625 mem_put_varsize(dst + wpos, tsb, tile_header);
4626 wpos += tsb;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004627
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004628 memmove(dst + wpos, dst + rpos, tile_header);
4629 rpos += tile_header;
4630 wpos += tile_header;
4631 }
Yaowu Xuc27fc142016-08-22 16:08:15 -07004632 }
4633 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004634 } else {
4635#endif // CONFIG_EXT_TILE
4636 const int n_tiles = cm->tile_cols * cm->tile_rows;
4637 int n;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004638
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004639 for (n = 0; n < n_tiles; n++) {
4640 int tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004641
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004642 if (n == n_tiles - 1) {
4643 tile_size = data_size - rpos;
4644 } else {
4645 tile_size = mem_get_le32(dst + rpos);
4646 rpos += 4;
4647 mem_put_varsize(dst + wpos, tsb, tile_size);
4648 wpos += tsb;
4649 }
4650
4651 memmove(dst + wpos, dst + rpos, tile_size);
4652
4653 rpos += tile_size;
4654 wpos += tile_size;
Yaowu Xuc27fc142016-08-22 16:08:15 -07004655 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07004656#if CONFIG_EXT_TILE
Yaowu Xuc27fc142016-08-22 16:08:15 -07004657 }
4658#endif // CONFIG_EXT_TILE
4659
4660 assert(rpos > wpos);
4661 assert(rpos == data_size);
4662
4663 return wpos;
4664 }
4665}
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004666#endif
4667
4668#if CONFIG_OBU
Soo-Chul Han38427e82017-09-27 15:06:13 -04004669
4670uint32_t write_obu_header(OBU_TYPE obu_type, int obu_extension,
4671 uint8_t *const dst) {
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004672 struct aom_write_bit_buffer wb = { dst, 0 };
4673 uint32_t size = 0;
4674
Soo-Chul Han38427e82017-09-27 15:06:13 -04004675 // first bit is obu_forbidden_bit according to R19
4676 aom_wb_write_literal(&wb, 0, 1);
4677 aom_wb_write_literal(&wb, (int)obu_type, 4);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004678 aom_wb_write_literal(&wb, 0, 2);
4679 aom_wb_write_literal(&wb, obu_extension ? 1 : 0, 1);
4680 if (obu_extension) {
4681 aom_wb_write_literal(&wb, obu_extension & 0xFF, 8);
4682 }
4683
4684 size = aom_wb_bytes_written(&wb);
4685 return size;
4686}
4687
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004688static uint32_t write_sequence_header_obu(AV1_COMP *cpi, uint8_t *const dst) {
4689 AV1_COMMON *const cm = &cpi->common;
David Barker5e70a112017-10-03 14:28:17 +01004690 SequenceHeader *const seq_params = &cm->seq_params;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004691 struct aom_write_bit_buffer wb = { dst, 0 };
4692 uint32_t size = 0;
4693
4694 write_profile(cm->profile, &wb);
4695
4696 aom_wb_write_literal(&wb, 0, 4);
4697
Arild Fuldseth (arilfuld)7193f022017-10-30 12:24:57 +01004698#if CONFIG_FRAME_SIZE
4699 int num_bits_width = 16;
4700 int num_bits_height = 16;
4701 int max_frame_width = cm->width;
4702 int max_frame_height = cm->height;
4703
4704 seq_params->num_bits_width = num_bits_width;
4705 seq_params->num_bits_height = num_bits_height;
4706 seq_params->max_frame_width = max_frame_width;
4707 seq_params->max_frame_height = max_frame_height;
4708
4709 aom_wb_write_literal(&wb, num_bits_width - 1, 4);
4710 aom_wb_write_literal(&wb, num_bits_height - 1, 4);
4711 aom_wb_write_literal(&wb, max_frame_width - 1, num_bits_width);
4712 aom_wb_write_literal(&wb, max_frame_height - 1, num_bits_height);
4713#endif
4714
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004715 seq_params->frame_id_numbers_present_flag = FRAME_ID_NUMBERS_PRESENT_FLAG;
4716 aom_wb_write_literal(&wb, seq_params->frame_id_numbers_present_flag, 1);
4717 if (seq_params->frame_id_numbers_present_flag) {
Sebastien Alaiwand418f682017-10-19 15:06:52 +02004718 seq_params->frame_id_length = FRAME_ID_LENGTH;
4719 seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH;
Frederic Barbier4d5d90e2017-10-13 09:22:33 +02004720 // We must always have delta_frame_id_length < frame_id_length,
4721 // in order for a frame to be referenced with a unique delta.
4722 // Avoid wasting bits by using a coding that enforces this restriction.
Frederic Barbiere83fcfe2017-10-13 10:37:50 +02004723 aom_wb_write_literal(&wb, seq_params->delta_frame_id_length - 2, 4);
Frederic Barbier4d5d90e2017-10-13 09:22:33 +02004724 aom_wb_write_literal(
4725 &wb,
4726 seq_params->frame_id_length - seq_params->delta_frame_id_length - 1, 3);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004727 }
4728
4729 // color_config
4730 write_bitdepth_colorspace_sampling(cm, &wb);
4731
4732 size = aom_wb_bytes_written(&wb);
4733 return size;
4734}
4735
4736static uint32_t write_frame_header_obu(AV1_COMP *cpi, uint8_t *const dst) {
4737 AV1_COMMON *const cm = &cpi->common;
4738 struct aom_write_bit_buffer wb = { dst, 0 };
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004739 uint32_t total_size = 0;
Debargha Mukherjee2eada612017-09-22 15:37:39 -07004740 uint32_t compressed_hdr_size, uncompressed_hdr_size;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004741
4742 write_uncompressed_header_obu(cpi, &wb);
4743
4744 if (cm->show_existing_frame) {
4745 total_size = aom_wb_bytes_written(&wb);
4746 return total_size;
4747 }
4748
4749 // write the tile length code (Always 4 bytes for now)
4750 aom_wb_write_literal(&wb, 3, 2);
4751
Debargha Mukherjee2eada612017-09-22 15:37:39 -07004752 if (!use_compressed_header(cm)) {
4753 uncompressed_hdr_size = aom_wb_bytes_written(&wb);
4754 compressed_hdr_size = 0;
4755 } else {
4756 // placeholder for the compressed header length
4757 struct aom_write_bit_buffer compr_hdr_len_wb = wb;
4758 aom_wb_write_literal(&wb, 0, 16);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004759
Debargha Mukherjee2eada612017-09-22 15:37:39 -07004760 uncompressed_hdr_size = aom_wb_bytes_written(&wb);
4761 compressed_hdr_size =
4762 write_compressed_header(cpi, dst + uncompressed_hdr_size);
4763 aom_wb_overwrite_literal(&compr_hdr_len_wb, (int)(compressed_hdr_size), 16);
4764 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004765
Debargha Mukherjee2eada612017-09-22 15:37:39 -07004766 total_size = uncompressed_hdr_size + compressed_hdr_size;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004767 return total_size;
4768}
4769
4770static uint32_t write_tile_group_header(uint8_t *const dst, int startTile,
4771 int endTile, int tiles_log2) {
4772 struct aom_write_bit_buffer wb = { dst, 0 };
4773 uint32_t size = 0;
4774
4775 aom_wb_write_literal(&wb, startTile, tiles_log2);
4776 aom_wb_write_literal(&wb, endTile, tiles_log2);
4777
4778 size = aom_wb_bytes_written(&wb);
4779 return size;
4780}
4781
4782static uint32_t write_tiles_in_tg_obus(AV1_COMP *const cpi, uint8_t *const dst,
4783 unsigned int *max_tile_size,
4784 unsigned int *max_tile_col_size,
4785 uint8_t *const frame_header_obu_location,
4786 uint32_t frame_header_obu_size,
4787 int insert_frame_header_obu_flag) {
Thomas Davies4822e142017-10-10 11:30:36 +01004788 AV1_COMMON *const cm = &cpi->common;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004789 aom_writer mode_bc;
4790 int tile_row, tile_col;
4791 TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok;
4792 TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers;
4793 uint32_t total_size = 0;
4794 const int tile_cols = cm->tile_cols;
4795 const int tile_rows = cm->tile_rows;
4796 unsigned int tile_size = 0;
4797 const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols;
4798 // Fixed size tile groups for the moment
4799 const int num_tg_hdrs = cm->num_tg;
4800 const int tg_size =
4801#if CONFIG_EXT_TILE
4802 (cm->large_scale_tile)
4803 ? 1
4804 :
4805#endif // CONFIG_EXT_TILE
4806 (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs;
4807 int tile_count = 0;
4808 int curr_tg_data_size = 0;
4809 uint8_t *data = dst;
4810 int new_tg = 1;
4811#if CONFIG_EXT_TILE
4812 const int have_tiles = tile_cols * tile_rows > 1;
4813#endif
4814
Thomas Davies4822e142017-10-10 11:30:36 +01004815#if CONFIG_SIMPLE_BWD_ADAPT
4816 cm->largest_tile_id = 0;
4817#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004818 *max_tile_size = 0;
4819 *max_tile_col_size = 0;
4820
4821#if CONFIG_EXT_TILE
4822 if (cm->large_scale_tile) {
4823 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
4824 TileInfo tile_info;
4825 const int is_last_col = (tile_col == tile_cols - 1);
4826 const uint32_t col_offset = total_size;
4827
4828 av1_tile_set_col(&tile_info, cm, tile_col);
4829
4830 // The last column does not have a column header
4831 if (!is_last_col) total_size += 4;
4832
4833 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
4834 TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col];
4835 const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col];
4836 const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col];
4837 const int data_offset = have_tiles ? 4 : 0;
4838 const int tile_idx = tile_row * tile_cols + tile_col;
4839 TileDataEnc *this_tile = &cpi->tile_data[tile_idx];
4840 av1_tile_set_row(&tile_info, cm, tile_row);
4841
4842 buf->data = dst + total_size;
4843
4844 // Is CONFIG_EXT_TILE = 1, every tile in the row has a header,
4845 // even for the last one, unless no tiling is used at all.
4846 total_size += data_offset;
4847 // Initialise tile context from the frame context
4848 this_tile->tctx = *cm->fc;
4849 cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004850#if CONFIG_ANS
4851 mode_bc.size = 1 << cpi->common.ans_window_size_log2;
4852#endif
4853 aom_start_encode(&mode_bc, buf->data + data_offset);
4854 write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end);
4855 assert(tok == tok_end);
4856 aom_stop_encode(&mode_bc);
4857 tile_size = mode_bc.pos;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004858 buf->size = tile_size;
4859
4860 // Record the maximum tile size we see, so we can compact headers later.
Thomas Davies4822e142017-10-10 11:30:36 +01004861 if (tile_size > *max_tile_size) {
4862 *max_tile_size = tile_size;
4863#if CONFIG_SIMPLE_BWD_ADAPT
4864 cm->largest_tile_id = tile_cols * tile_row + tile_col;
4865#endif
4866 }
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004867
4868 if (have_tiles) {
4869 // tile header: size of this tile, or copy offset
4870 uint32_t tile_header = tile_size;
4871 const int tile_copy_mode =
4872 ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256)
4873 ? 1
4874 : 0;
4875
4876 // If tile_copy_mode = 1, check if this tile is a copy tile.
4877 // Very low chances to have copy tiles on the key frames, so don't
4878 // search on key frames to reduce unnecessary search.
4879 if (cm->frame_type != KEY_FRAME && tile_copy_mode) {
4880 const int idendical_tile_offset =
4881 find_identical_tile(tile_row, tile_col, tile_buffers);
4882
4883 if (idendical_tile_offset > 0) {
4884 tile_size = 0;
4885 tile_header = idendical_tile_offset | 0x80;
4886 tile_header <<= 24;
4887 }
4888 }
4889
4890 mem_put_le32(buf->data, tile_header);
4891 }
4892
4893 total_size += tile_size;
4894 }
4895
4896 if (!is_last_col) {
4897 uint32_t col_size = total_size - col_offset - 4;
4898 mem_put_le32(dst + col_offset, col_size);
4899
4900 // If it is not final packing, record the maximum tile column size we
4901 // see, otherwise, check if the tile size is out of the range.
4902 *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size);
4903 }
4904 }
4905 } else {
4906#endif // CONFIG_EXT_TILE
4907
4908 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
4909 TileInfo tile_info;
4910 const int is_last_row = (tile_row == tile_rows - 1);
4911 av1_tile_set_row(&tile_info, cm, tile_row);
4912
4913 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
4914 const int tile_idx = tile_row * tile_cols + tile_col;
4915 TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col];
4916 TileDataEnc *this_tile = &cpi->tile_data[tile_idx];
4917 const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col];
4918 const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col];
4919 const int is_last_col = (tile_col == tile_cols - 1);
4920 const int is_last_tile = is_last_col && is_last_row;
4921 int is_last_tile_in_tg = 0;
4922
4923 if (new_tg) {
4924 if (insert_frame_header_obu_flag && tile_idx) {
Soo-Chul Han38427e82017-09-27 15:06:13 -04004925 // insert a copy of frame header OBU (including
4926 // PRE_OBU_SIZE_BYTES-byte size),
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004927 // except before the first tile group
4928 data = dst + total_size;
4929 memmove(data, frame_header_obu_location, frame_header_obu_size);
4930 total_size += frame_header_obu_size;
4931 }
4932 data = dst + total_size;
4933 // A new tile group begins at this tile. Write the obu header and
4934 // tile group header
Soo-Chul Han38427e82017-09-27 15:06:13 -04004935 curr_tg_data_size =
4936 write_obu_header(OBU_TILE_GROUP, 0, data + PRE_OBU_SIZE_BYTES);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004937 if (n_log2_tiles)
4938 curr_tg_data_size += write_tile_group_header(
Soo-Chul Han38427e82017-09-27 15:06:13 -04004939 data + curr_tg_data_size + PRE_OBU_SIZE_BYTES, tile_idx,
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004940 AOMMIN(tile_idx + tg_size - 1, tile_cols * tile_rows - 1),
4941 n_log2_tiles);
Soo-Chul Han38427e82017-09-27 15:06:13 -04004942 total_size += curr_tg_data_size + PRE_OBU_SIZE_BYTES;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004943 new_tg = 0;
4944 tile_count = 0;
4945 }
4946 tile_count++;
4947 av1_tile_set_col(&tile_info, cm, tile_col);
4948
4949 if (tile_count == tg_size || tile_idx == (tile_cols * tile_rows - 1)) {
4950 is_last_tile_in_tg = 1;
4951 new_tg = 1;
4952 } else {
4953 is_last_tile_in_tg = 0;
4954 }
4955
4956#if CONFIG_DEPENDENT_HORZTILES
4957 av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col);
4958#endif
4959 buf->data = dst + total_size;
4960
Soo-Chul Han38427e82017-09-27 15:06:13 -04004961// The last tile of the tile group does not have a header.
4962#if CONFIG_ADD_4BYTES_OBUSIZE
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004963 if (!is_last_tile_in_tg) total_size += 4;
Soo-Chul Han38427e82017-09-27 15:06:13 -04004964#else
4965 total_size += 4;
4966#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004967
4968 // Initialise tile context from the frame context
4969 this_tile->tctx = *cm->fc;
4970 cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004971#if CONFIG_ANS
4972 mode_bc.size = 1 << cpi->common.ans_window_size_log2;
4973#endif // CONFIG_ANS
Soo-Chul Han13f0d9c2017-10-22 21:55:52 -04004974#if CONFIG_LOOP_RESTORATION
4975 for (int p = 0; p < MAX_MB_PLANE; ++p) {
4976 set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p);
4977 set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p);
4978 }
4979#endif // CONFIG_LOOP_RESTORATION
4980
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004981 aom_start_encode(&mode_bc, dst + total_size);
4982 write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end);
4983#if !CONFIG_LV_MAP
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004984 assert(tok == tok_end);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004985#endif // !CONFIG_LV_MAP
4986 aom_stop_encode(&mode_bc);
4987 tile_size = mode_bc.pos;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004988 assert(tile_size > 0);
4989
4990 curr_tg_data_size += (tile_size + (is_last_tile_in_tg ? 0 : 4));
4991 buf->size = tile_size;
Thomas Davies4822e142017-10-10 11:30:36 +01004992#if CONFIG_SIMPLE_BWD_ADAPT
4993 if (tile_size > *max_tile_size) {
4994 cm->largest_tile_id = tile_cols * tile_row + tile_col;
4995 }
4996#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04004997 if (!is_last_tile) {
4998 *max_tile_size = AOMMAX(*max_tile_size, tile_size);
4999 }
Thomas Davies4822e142017-10-10 11:30:36 +01005000
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005001 if (!is_last_tile_in_tg) {
5002 // size of this tile
5003 mem_put_le32(buf->data, tile_size);
5004 } else {
Soo-Chul Han38427e82017-09-27 15:06:13 -04005005#if CONFIG_ADD_4BYTES_OBUSIZE
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005006 // write current tile group size
5007 mem_put_le32(data, curr_tg_data_size);
Soo-Chul Han38427e82017-09-27 15:06:13 -04005008#else
5009 mem_put_le32(buf->data, tile_size);
5010#endif
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005011 }
5012
5013 total_size += tile_size;
5014 }
5015 }
5016#if CONFIG_EXT_TILE
5017 }
5018#endif // CONFIG_EXT_TILE
5019 return (uint32_t)total_size;
5020}
5021
5022#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07005023
Yaowu Xuf883b422016-08-30 14:01:10 -07005024void av1_pack_bitstream(AV1_COMP *const cpi, uint8_t *dst, size_t *size) {
Yaowu Xuc27fc142016-08-22 16:08:15 -07005025 uint8_t *data = dst;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005026 uint32_t data_size;
Thomas Daviesb25ba502017-07-18 10:18:24 +01005027#if CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005028 AV1_COMMON *const cm = &cpi->common;
Debargha Mukherjee2eada612017-09-22 15:37:39 -07005029 uint32_t compressed_hdr_size = 0;
5030 uint32_t uncompressed_hdr_size;
Thomas Davies80188d12016-10-26 16:08:35 -07005031 struct aom_write_bit_buffer saved_wb;
Yaowu Xuf883b422016-08-30 14:01:10 -07005032 struct aom_write_bit_buffer wb = { data, 0 };
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005033 const int have_tiles = cm->tile_cols * cm->tile_rows > 1;
5034 int tile_size_bytes;
5035 int tile_col_size_bytes;
Thomas Daviesb25ba502017-07-18 10:18:24 +01005036#endif // CONFIG_EXT_TILE
Yaowu Xuc27fc142016-08-22 16:08:15 -07005037 unsigned int max_tile_size;
5038 unsigned int max_tile_col_size;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005039#if CONFIG_OBU
5040#if !CONFIG_EXT_TILE
5041 AV1_COMMON *const cm = &cpi->common;
5042#endif
5043 uint32_t obu_size;
5044 uint8_t *frame_header_location;
5045 uint32_t frame_header_size;
5046#endif
Thomas Davies80188d12016-10-26 16:08:35 -07005047
Angie Chiangb11aedf2017-03-10 17:31:46 -08005048#if CONFIG_BITSTREAM_DEBUG
5049 bitstream_queue_reset_write();
5050#endif
5051
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005052#if CONFIG_OBU
Soo-Chul Han38427e82017-09-27 15:06:13 -04005053 // The TD is now written outside the frame encode loop
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005054
5055 // write sequence header obu if KEY_FRAME, preceded by 4-byte size
5056 if (cm->frame_type == KEY_FRAME) {
Soo-Chul Han38427e82017-09-27 15:06:13 -04005057 obu_size =
5058 write_obu_header(OBU_SEQUENCE_HEADER, 0, data + PRE_OBU_SIZE_BYTES);
5059 obu_size +=
5060 write_sequence_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size);
5061#if CONFIG_ADD_4BYTES_OBUSIZE
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005062 mem_put_le32(data, obu_size);
Soo-Chul Han38427e82017-09-27 15:06:13 -04005063#endif
5064 data += obu_size + PRE_OBU_SIZE_BYTES;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005065 }
5066
5067 // write frame header obu, preceded by 4-byte size
Soo-Chul Han38427e82017-09-27 15:06:13 -04005068 frame_header_location = data + PRE_OBU_SIZE_BYTES;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005069 obu_size = write_obu_header(OBU_FRAME_HEADER, 0, frame_header_location);
Soo-Chul Han38427e82017-09-27 15:06:13 -04005070 frame_header_size =
5071 write_frame_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005072 obu_size += frame_header_size;
Soo-Chul Han38427e82017-09-27 15:06:13 -04005073#if CONFIG_ADD_4BYTES_OBUSIZE
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005074 mem_put_le32(data, obu_size);
Soo-Chul Han38427e82017-09-27 15:06:13 -04005075#endif
5076 data += obu_size + PRE_OBU_SIZE_BYTES;
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005077
5078 if (cm->show_existing_frame) {
5079 data_size = 0;
5080 } else {
5081 // Each tile group obu will be preceded by 4-byte size of the tile group
5082 // obu
Soo-Chul Han38427e82017-09-27 15:06:13 -04005083 data_size = write_tiles_in_tg_obus(
5084 cpi, data, &max_tile_size, &max_tile_col_size,
5085 frame_header_location - PRE_OBU_SIZE_BYTES,
5086 obu_size + PRE_OBU_SIZE_BYTES, 1 /* cm->error_resilient_mode */);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005087 }
5088
5089#endif
5090
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005091#if CONFIG_EXT_TILE
5092 if (cm->large_scale_tile) {
Soo-Chul Han38427e82017-09-27 15:06:13 -04005093#if !CONFIG_OBU
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005094 write_uncompressed_header_frame(cpi, &wb);
Soo-Chul Han38427e82017-09-27 15:06:13 -04005095#else
5096 write_uncompressed_header_obu(cpi, &wb);
5097#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005098
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005099 if (cm->show_existing_frame) {
5100 *size = aom_wb_bytes_written(&wb);
5101 return;
5102 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005103
5104 // We do not know these in advance. Output placeholder bit.
5105 saved_wb = wb;
5106 // Write tile size magnitudes
5107 if (have_tiles) {
5108 // Note that the last item in the uncompressed header is the data
5109 // describing tile configuration.
5110 // Number of bytes in tile column size - 1
5111 aom_wb_write_literal(&wb, 0, 2);
5112
5113 // Number of bytes in tile size - 1
5114 aom_wb_write_literal(&wb, 0, 2);
5115 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005116
Debargha Mukherjee2eada612017-09-22 15:37:39 -07005117 if (!use_compressed_header(cm)) {
5118 uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb);
5119 aom_clear_system_state();
5120 compressed_hdr_size = 0;
5121 } else {
5122 // Size of compressed header
5123 aom_wb_write_literal(&wb, 0, 16);
5124 uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb);
5125 aom_clear_system_state();
5126 // Write the compressed header
5127 compressed_hdr_size =
5128 write_compressed_header(cpi, data + uncompressed_hdr_size);
5129 }
5130 data += uncompressed_hdr_size + compressed_hdr_size;
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005131
5132 // Write the encoded tile data
5133 data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size);
5134 } else {
5135#endif // CONFIG_EXT_TILE
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005136#if !CONFIG_OBU
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005137 data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size);
Soo-Chul Han65c00ae2017-09-07 13:12:35 -04005138#endif
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005139#if CONFIG_EXT_TILE
5140 }
5141#endif // CONFIG_EXT_TILE
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005142#if CONFIG_EXT_TILE
5143 if (cm->large_scale_tile) {
5144 if (have_tiles) {
5145 data_size =
5146 remux_tiles(cm, data, data_size, max_tile_size, max_tile_col_size,
5147 &tile_size_bytes, &tile_col_size_bytes);
5148 }
5149
5150 data += data_size;
5151
5152 // Now fill in the gaps in the uncompressed header.
5153 if (have_tiles) {
5154 assert(tile_col_size_bytes >= 1 && tile_col_size_bytes <= 4);
5155 aom_wb_write_literal(&saved_wb, tile_col_size_bytes - 1, 2);
5156
5157 assert(tile_size_bytes >= 1 && tile_size_bytes <= 4);
5158 aom_wb_write_literal(&saved_wb, tile_size_bytes - 1, 2);
5159 }
Debargha Mukherjee2eada612017-09-22 15:37:39 -07005160 // TODO(jbb): Figure out what to do if compressed_hdr_size > 16 bits.
5161 assert(compressed_hdr_size <= 0xffff);
Rupert Swarbrick53685902017-10-27 13:35:19 +01005162 // Fill in the compressed header size (but only if we're using one)
5163 if (use_compressed_header(cm)) {
5164 aom_wb_write_literal(&saved_wb, compressed_hdr_size, 16);
5165 }
Yunqing Wangeeb08a92017-07-07 21:25:18 -07005166 } else {
5167#endif // CONFIG_EXT_TILE
5168 data += data_size;
5169#if CONFIG_EXT_TILE
5170 }
5171#endif // CONFIG_EXT_TILE
Alex Converseb0bbd602016-10-21 14:15:06 -07005172#if CONFIG_ANS && ANS_REVERSE
5173 // Avoid aliasing the superframe index
5174 *data++ = 0;
5175#endif
Yaowu Xuc27fc142016-08-22 16:08:15 -07005176 *size = data - dst;
5177}