Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <assert.h> |
| 13 | #include <limits.h> |
| 14 | #include <stdio.h> |
| 15 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 16 | #include "aom/aom_encoder.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 17 | #include "aom_dsp/aom_dsp_common.h" |
Debargha Mukherjee | 47748b5 | 2017-03-24 12:20:49 -0700 | [diff] [blame] | 18 | #include "aom_dsp/binary_codes_writer.h" |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 19 | #include "aom_dsp/bitwriter_buffer.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 20 | #include "aom_mem/aom_mem.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 21 | #include "aom_ports/mem_ops.h" |
| 22 | #include "aom_ports/system_state.h" |
Angie Chiang | 6062a8b | 2016-09-21 16:01:04 -0700 | [diff] [blame] | 23 | #if CONFIG_BITSTREAM_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 24 | #include "aom_util/debug_util.h" |
Angie Chiang | 6062a8b | 2016-09-21 16:01:04 -0700 | [diff] [blame] | 25 | #endif // CONFIG_BITSTREAM_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 26 | |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 27 | #include "av1/common/cdef.h" |
Luc Trudeau | d183b64 | 2017-11-28 11:42:37 -0500 | [diff] [blame] | 28 | #if CONFIG_CFL |
| 29 | #include "av1/common/cfl.h" |
| 30 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 31 | #include "av1/common/entropy.h" |
| 32 | #include "av1/common/entropymode.h" |
| 33 | #include "av1/common/entropymv.h" |
| 34 | #include "av1/common/mvref_common.h" |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 35 | #include "av1/common/odintrin.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 36 | #include "av1/common/pred_common.h" |
| 37 | #include "av1/common/reconinter.h" |
hui su | 45dc597 | 2016-12-08 17:42:50 -0800 | [diff] [blame] | 38 | #include "av1/common/reconintra.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 39 | #include "av1/common/seg_common.h" |
| 40 | #include "av1/common/tile_common.h" |
| 41 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 42 | #include "av1/encoder/bitstream.h" |
| 43 | #include "av1/encoder/cost.h" |
| 44 | #include "av1/encoder/encodemv.h" |
Hui Su | ec73b44 | 2018-01-04 12:47:53 -0800 | [diff] [blame] | 45 | #include "av1/encoder/encodetxb.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 46 | #include "av1/encoder/mcomp.h" |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 47 | #include "av1/encoder/palette.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 48 | #include "av1/encoder/segmentation.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 49 | #include "av1/encoder/tokenize.h" |
| 50 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 51 | #define ENC_MISMATCH_DEBUG 0 |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 52 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 53 | static INLINE void write_uniform(aom_writer *w, int n, int v) { |
hui su | 3749929 | 2017-04-26 09:49:53 -0700 | [diff] [blame] | 54 | const int l = get_unsigned_bits(n); |
| 55 | const int m = (1 << l) - n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 56 | if (l == 0) return; |
| 57 | if (v < m) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 58 | aom_write_literal(w, v, l - 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 59 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 60 | aom_write_literal(w, m + ((v - m) >> 1), l - 1); |
| 61 | aom_write_literal(w, (v - m) & 1, 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 65 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 66 | static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm, |
| 67 | MACROBLOCKD *xd, |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 68 | const RestorationUnitInfo *rui, |
| 69 | aom_writer *const w, int plane); |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 70 | #endif // CONFIG_LOOP_RESTORATION |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 71 | #if CONFIG_OBU |
| 72 | static void write_uncompressed_header_obu(AV1_COMP *cpi, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 73 | #if CONFIG_EXT_TILE |
| 74 | struct aom_write_bit_buffer *saved_wb, |
| 75 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 76 | struct aom_write_bit_buffer *wb); |
| 77 | #else |
| 78 | static void write_uncompressed_header_frame(AV1_COMP *cpi, |
| 79 | struct aom_write_bit_buffer *wb); |
| 80 | #endif |
| 81 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 82 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 83 | static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst, |
| 84 | const uint32_t data_size, const uint32_t max_tile_size, |
| 85 | const uint32_t max_tile_col_size, |
| 86 | int *const tile_size_bytes, |
| 87 | int *const tile_col_size_bytes); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 88 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 89 | |
Jingning Han | 3e4c6a6 | 2017-12-14 14:50:57 -0800 | [diff] [blame] | 90 | static void write_intra_mode_kf(FRAME_CONTEXT *frame_ctx, const MODE_INFO *mi, |
| 91 | const MODE_INFO *above_mi, |
| 92 | const MODE_INFO *left_mi, PREDICTION_MODE mode, |
| 93 | aom_writer *w) { |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 94 | #if CONFIG_INTRABC |
| 95 | assert(!is_intrabc_block(&mi->mbmi)); |
| 96 | #endif // CONFIG_INTRABC |
Jingning Han | 9010e20 | 2017-12-14 14:48:09 -0800 | [diff] [blame] | 97 | (void)mi; |
Jingning Han | 9010e20 | 2017-12-14 14:48:09 -0800 | [diff] [blame] | 98 | aom_write_symbol(w, mode, get_y_mode_cdf(frame_ctx, above_mi, left_mi), |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 99 | INTRA_MODES); |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 100 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 101 | |
Thomas Davies | 1de6c88 | 2017-01-11 17:47:49 +0000 | [diff] [blame] | 102 | static void write_inter_mode(aom_writer *w, PREDICTION_MODE mode, |
Zoe Liu | 7f24e1b | 2017-03-17 17:42:05 -0700 | [diff] [blame] | 103 | FRAME_CONTEXT *ec_ctx, const int16_t mode_ctx) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 104 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 105 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 106 | aom_write_symbol(w, mode != NEWMV, ec_ctx->newmv_cdf[newmv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 107 | |
Jingning Han | f2b87bd | 2017-05-18 16:27:30 -0700 | [diff] [blame] | 108 | if (mode != NEWMV) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 109 | const int16_t zeromv_ctx = |
| 110 | (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 111 | aom_write_symbol(w, mode != GLOBALMV, ec_ctx->zeromv_cdf[zeromv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 112 | |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 113 | if (mode != GLOBALMV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 114 | int16_t refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 115 | aom_write_symbol(w, mode != NEARESTMV, ec_ctx->refmv_cdf[refmv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 120 | static void write_drl_idx(FRAME_CONTEXT *ec_ctx, const MB_MODE_INFO *mbmi, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 121 | const MB_MODE_INFO_EXT *mbmi_ext, aom_writer *w) { |
| 122 | uint8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 123 | |
| 124 | assert(mbmi->ref_mv_idx < 3); |
| 125 | |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 126 | const int new_mv = mbmi->mode == NEWMV || mbmi->mode == NEW_NEWMV; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 127 | if (new_mv) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 128 | int idx; |
| 129 | for (idx = 0; idx < 2; ++idx) { |
Jingning Han | b4fc74d | 2017-12-21 14:34:03 -0800 | [diff] [blame] | 130 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 131 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 132 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 133 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 134 | aom_write_symbol(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_cdf[drl_ctx], |
| 135 | 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 136 | if (mbmi->ref_mv_idx == idx) return; |
| 137 | } |
| 138 | } |
| 139 | return; |
| 140 | } |
| 141 | |
David Barker | 3dfba99 | 2017-04-03 16:10:09 +0100 | [diff] [blame] | 142 | if (have_nearmv_in_inter_mode(mbmi->mode)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 143 | int idx; |
| 144 | // TODO(jingning): Temporary solution to compensate the NEARESTMV offset. |
| 145 | for (idx = 1; idx < 3; ++idx) { |
Jingning Han | b4fc74d | 2017-12-21 14:34:03 -0800 | [diff] [blame] | 146 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 147 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 148 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 149 | aom_write_symbol(w, mbmi->ref_mv_idx != (idx - 1), |
| 150 | ec_ctx->drl_cdf[drl_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 151 | if (mbmi->ref_mv_idx == (idx - 1)) return; |
| 152 | } |
| 153 | } |
| 154 | return; |
| 155 | } |
| 156 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 157 | |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 158 | static void write_inter_compound_mode(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 159 | aom_writer *w, PREDICTION_MODE mode, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 160 | const int16_t mode_ctx) { |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 161 | assert(is_inter_compound_mode(mode)); |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 162 | (void)cm; |
| 163 | aom_write_symbol(w, INTER_COMPOUND_OFFSET(mode), |
| 164 | xd->tile_ctx->inter_compound_mode_cdf[mode_ctx], |
| 165 | INTER_COMPOUND_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 166 | } |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 167 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 168 | static void write_tx_size_vartx(const AV1_COMMON *cm, MACROBLOCKD *xd, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 169 | const MB_MODE_INFO *mbmi, TX_SIZE tx_size, |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 170 | int depth, int blk_row, int blk_col, |
| 171 | aom_writer *w) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 172 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 173 | (void)cm; |
Jingning Han | f65b870 | 2016-10-31 12:13:20 -0700 | [diff] [blame] | 174 | const int max_blocks_high = max_block_high(xd, mbmi->sb_type, 0); |
| 175 | const int max_blocks_wide = max_block_wide(xd, mbmi->sb_type, 0); |
| 176 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 177 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 178 | |
Jingning Han | 571189c | 2016-10-24 10:38:43 -0700 | [diff] [blame] | 179 | if (depth == MAX_VARTX_DEPTH) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 180 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 181 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 182 | return; |
| 183 | } |
| 184 | |
Hui Su | 7167d95 | 2018-02-01 16:33:12 -0800 | [diff] [blame] | 185 | const int ctx = txfm_partition_context(xd->above_txfm_context + blk_col, |
| 186 | xd->left_txfm_context + blk_row, |
| 187 | mbmi->sb_type, tx_size); |
| 188 | const int txb_size_index = |
| 189 | av1_get_txb_size_index(mbmi->sb_type, blk_row, blk_col); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 190 | const int write_txfm_partition = |
Hui Su | 7167d95 | 2018-02-01 16:33:12 -0800 | [diff] [blame] | 191 | tx_size == mbmi->inter_tx_size[txb_size_index]; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 192 | if (write_txfm_partition) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 193 | aom_write_symbol(w, 0, ec_ctx->txfm_partition_cdf[ctx], 2); |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 194 | |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 195 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 196 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 197 | // TODO(yuec): set correct txfm partition update for qttx |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 198 | } else { |
Debargha Mukherjee | e4e18fc | 2017-12-06 23:43:24 -0800 | [diff] [blame] | 199 | const TX_SIZE sub_txs = sub_tx_size_map[1][tx_size]; |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 200 | const int bsw = tx_size_wide_unit[sub_txs]; |
| 201 | const int bsh = tx_size_high_unit[sub_txs]; |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 202 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 203 | aom_write_symbol(w, 1, ec_ctx->txfm_partition_cdf[ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 204 | |
David Barker | 16c64e3 | 2017-08-23 16:54:59 +0100 | [diff] [blame] | 205 | if (sub_txs == TX_4X4) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 206 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 207 | xd->left_txfm_context + blk_row, sub_txs, tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 208 | return; |
| 209 | } |
| 210 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 211 | assert(bsw > 0 && bsh > 0); |
| 212 | for (int row = 0; row < tx_size_high_unit[tx_size]; row += bsh) |
| 213 | for (int col = 0; col < tx_size_wide_unit[tx_size]; col += bsw) { |
| 214 | int offsetr = blk_row + row; |
| 215 | int offsetc = blk_col + col; |
| 216 | write_tx_size_vartx(cm, xd, mbmi, sub_txs, depth + 1, offsetr, offsetc, |
| 217 | w); |
| 218 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 222 | static void write_selected_tx_size(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 223 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 224 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 225 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 226 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 227 | (void)cm; |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 228 | if (block_signals_txsize(bsize)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 229 | const TX_SIZE tx_size = mbmi->tx_size; |
David Barker | 84dc6e9 | 2018-01-16 15:57:49 +0000 | [diff] [blame] | 230 | const int tx_size_ctx = get_tx_size_context(xd, 0); |
Debargha Mukherjee | 0fa057f | 2017-12-06 17:06:29 -0800 | [diff] [blame] | 231 | const int depth = tx_size_to_depth(tx_size, bsize, 0); |
| 232 | const int max_depths = bsize_to_max_depth(bsize, 0); |
Debargha Mukherjee | e4e18fc | 2017-12-06 23:43:24 -0800 | [diff] [blame] | 233 | const int32_t tx_size_cat = bsize_to_tx_size_cat(bsize, 0); |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 234 | |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 235 | assert(depth >= 0 && depth <= max_depths); |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 236 | assert(!is_inter_block(mbmi)); |
Yue Chen | 49587a7 | 2016-09-28 17:09:47 -0700 | [diff] [blame] | 237 | assert(IMPLIES(is_rect_tx(tx_size), is_rect_tx_allowed(xd, mbmi))); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 238 | |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 239 | aom_write_symbol(w, depth, ec_ctx->tx_size_cdf[tx_size_cat][tx_size_ctx], |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 240 | max_depths + 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 244 | static int write_skip(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 245 | int segment_id, const MODE_INFO *mi, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 246 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { |
| 247 | return 1; |
| 248 | } else { |
| 249 | const int skip = mi->mbmi.skip; |
Zoe Liu | e646daa | 2017-10-17 15:28:46 -0700 | [diff] [blame] | 250 | const int ctx = av1_get_skip_context(xd); |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 251 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 252 | aom_write_symbol(w, skip, ec_ctx->skip_cdfs[ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 253 | return skip; |
| 254 | } |
| 255 | } |
| 256 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 257 | #if CONFIG_EXT_SKIP |
| 258 | static int write_skip_mode(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 259 | int segment_id, const MODE_INFO *mi, aom_writer *w) { |
| 260 | if (!cm->skip_mode_flag) return 0; |
| 261 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { |
| 262 | return 0; |
| 263 | } |
| 264 | const int skip_mode = mi->mbmi.skip_mode; |
| 265 | if (!is_comp_ref_allowed(mi->mbmi.sb_type)) { |
| 266 | assert(!skip_mode); |
| 267 | return 0; |
| 268 | } |
| 269 | const int ctx = av1_get_skip_mode_context(xd); |
| 270 | aom_write_symbol(w, skip_mode, xd->tile_ctx->skip_mode_cdfs[ctx], 2); |
| 271 | return skip_mode; |
| 272 | } |
| 273 | #endif // CONFIG_EXT_SKIP |
| 274 | |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 275 | static void write_is_inter(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 276 | int segment_id, aom_writer *w, const int is_inter) { |
| 277 | if (!segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
Frederic Barbier | 5e91142 | 2017-12-12 17:17:07 +0100 | [diff] [blame] | 278 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP) |
| 279 | #if CONFIG_SEGMENT_GLOBALMV |
| 280 | || segfeature_active(&cm->seg, segment_id, SEG_LVL_GLOBALMV) |
| 281 | #endif |
Johann | b0ef6ff | 2018-02-08 14:32:21 -0800 | [diff] [blame] | 282 | ) |
Frederic Barbier | 5e91142 | 2017-12-12 17:17:07 +0100 | [diff] [blame] | 283 | if (!av1_is_valid_scale(&cm->frame_refs[0].sf)) |
| 284 | return; // LAST_FRAME not valid for reference |
| 285 | |
Yue Chen | 170678a | 2017-10-17 13:43:10 -0700 | [diff] [blame] | 286 | const int ctx = av1_get_intra_inter_context(xd); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 287 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 288 | aom_write_symbol(w, is_inter, ec_ctx->intra_inter_cdf[ctx], 2); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 292 | static void write_motion_mode(const AV1_COMMON *cm, MACROBLOCKD *xd, |
| 293 | const MODE_INFO *mi, aom_writer *w) { |
Sarah Parker | 19234cc | 2017-03-10 16:43:25 -0800 | [diff] [blame] | 294 | const MB_MODE_INFO *mbmi = &mi->mbmi; |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 295 | |
Sebastien Alaiwan | 4879580 | 2017-10-30 12:07:13 +0100 | [diff] [blame] | 296 | MOTION_MODE last_motion_mode_allowed = |
Luc Trudeau | 2eb9b84 | 2017-12-13 11:19:16 -0500 | [diff] [blame] | 297 | motion_mode_allowed(cm->global_motion, xd, mi); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 298 | switch (last_motion_mode_allowed) { |
| 299 | case SIMPLE_TRANSLATION: break; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 300 | case OBMC_CAUSAL: |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 301 | aom_write_symbol(w, mbmi->motion_mode == OBMC_CAUSAL, |
| 302 | xd->tile_ctx->obmc_cdf[mbmi->sb_type], 2); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 303 | break; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 304 | default: |
| 305 | aom_write_symbol(w, mbmi->motion_mode, |
| 306 | xd->tile_ctx->motion_mode_cdf[mbmi->sb_type], |
| 307 | MOTION_MODES); |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 308 | } |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 309 | } |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 310 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 311 | static void write_delta_qindex(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 312 | int delta_qindex, aom_writer *w) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 313 | int sign = delta_qindex < 0; |
| 314 | int abs = sign ? -delta_qindex : delta_qindex; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 315 | int rem_bits, thr; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 316 | int smallval = abs < DELTA_Q_SMALL ? 1 : 0; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 317 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 318 | (void)cm; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 319 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 320 | aom_write_symbol(w, AOMMIN(abs, DELTA_Q_SMALL), ec_ctx->delta_q_cdf, |
| 321 | DELTA_Q_PROBS + 1); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 322 | |
| 323 | if (!smallval) { |
| 324 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 325 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 326 | aom_write_literal(w, rem_bits - 1, 3); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 327 | aom_write_literal(w, abs - thr, rem_bits); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 328 | } |
| 329 | if (abs > 0) { |
| 330 | aom_write_bit(w, sign); |
| 331 | } |
| 332 | } |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 333 | |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 334 | #if CONFIG_EXT_DELTA_Q |
| 335 | static void write_delta_lflevel(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 336 | #if CONFIG_LOOPFILTER_LEVEL |
| 337 | int lf_id, |
| 338 | #endif |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 339 | int delta_lflevel, aom_writer *w) { |
| 340 | int sign = delta_lflevel < 0; |
| 341 | int abs = sign ? -delta_lflevel : delta_lflevel; |
| 342 | int rem_bits, thr; |
| 343 | int smallval = abs < DELTA_LF_SMALL ? 1 : 0; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 344 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 345 | (void)cm; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 346 | |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 347 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 348 | if (cm->delta_lf_multi) { |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 349 | assert(lf_id >= 0 && lf_id < (av1_num_planes(cm) > 1 ? FRAME_LF_COUNT |
| 350 | : FRAME_LF_COUNT - 2)); |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 351 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), |
| 352 | ec_ctx->delta_lf_multi_cdf[lf_id], DELTA_LF_PROBS + 1); |
| 353 | } else { |
| 354 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 355 | DELTA_LF_PROBS + 1); |
| 356 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 357 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 358 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 359 | DELTA_LF_PROBS + 1); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 360 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 361 | |
| 362 | if (!smallval) { |
| 363 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 364 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 365 | aom_write_literal(w, rem_bits - 1, 3); |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 366 | aom_write_literal(w, abs - thr, rem_bits); |
| 367 | } |
| 368 | if (abs > 0) { |
| 369 | aom_write_bit(w, sign); |
| 370 | } |
| 371 | } |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 372 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 373 | |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 374 | static void pack_map_tokens(aom_writer *w, const TOKENEXTRA **tp, int n, |
| 375 | int num) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 376 | const TOKENEXTRA *p = *tp; |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 377 | write_uniform(w, n, p->token); // The first color index. |
| 378 | ++p; |
| 379 | --num; |
| 380 | for (int i = 0; i < num; ++i) { |
Sarah Parker | 0cf4d9f | 2017-08-18 13:09:14 -0700 | [diff] [blame] | 381 | aom_write_symbol(w, p->token, p->color_map_cdf, n); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 382 | ++p; |
| 383 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 384 | *tp = p; |
| 385 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 386 | |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 387 | static void pack_txb_tokens(aom_writer *w, AV1_COMMON *cm, MACROBLOCK *const x, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 388 | const TOKENEXTRA **tp, |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 389 | const TOKENEXTRA *const tok_end, MACROBLOCKD *xd, |
| 390 | MB_MODE_INFO *mbmi, int plane, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 391 | BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth, |
| 392 | int block, int blk_row, int blk_col, |
| 393 | TX_SIZE tx_size, TOKEN_STATS *token_stats) { |
| 394 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 395 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
| 396 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
| 397 | |
| 398 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 399 | |
Debargha Mukherjee | 8aec7f3 | 2017-12-20 15:48:49 -0800 | [diff] [blame] | 400 | const TX_SIZE plane_tx_size = |
Debargha Mukherjee | 6396d3a | 2017-12-21 00:12:38 -0800 | [diff] [blame] | 401 | plane ? av1_get_uv_tx_size(mbmi, pd->subsampling_x, pd->subsampling_y) |
Hui Su | 7167d95 | 2018-02-01 16:33:12 -0800 | [diff] [blame] | 402 | : mbmi->inter_tx_size[av1_get_txb_size_index(plane_bsize, blk_row, |
| 403 | blk_col)]; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 404 | |
Debargha Mukherjee | 6396d3a | 2017-12-21 00:12:38 -0800 | [diff] [blame] | 405 | if (tx_size == plane_tx_size || plane) { |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 406 | TOKEN_STATS tmp_token_stats; |
| 407 | init_token_stats(&tmp_token_stats); |
| 408 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 409 | tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block); |
| 410 | uint16_t eob = x->mbmi_ext->eobs[plane][block]; |
| 411 | TXB_CTX txb_ctx = { x->mbmi_ext->txb_skip_ctx[plane][block], |
| 412 | x->mbmi_ext->dc_sign_ctx[plane][block] }; |
Luc Trudeau | 2eb9b84 | 2017-12-13 11:19:16 -0500 | [diff] [blame] | 413 | av1_write_coeffs_txb(cm, xd, w, blk_row, blk_col, plane, tx_size, tcoeff, |
| 414 | eob, &txb_ctx); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 415 | #if CONFIG_RD_DEBUG |
| 416 | token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost; |
| 417 | token_stats->cost += tmp_token_stats.cost; |
| 418 | #endif |
| 419 | } else { |
Debargha Mukherjee | e4e18fc | 2017-12-06 23:43:24 -0800 | [diff] [blame] | 420 | const TX_SIZE sub_txs = sub_tx_size_map[1][tx_size]; |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 421 | const int bsw = tx_size_wide_unit[sub_txs]; |
| 422 | const int bsh = tx_size_high_unit[sub_txs]; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 423 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 424 | assert(bsw > 0 && bsh > 0); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 425 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 426 | for (int r = 0; r < tx_size_high_unit[tx_size]; r += bsh) { |
| 427 | for (int c = 0; c < tx_size_wide_unit[tx_size]; c += bsw) { |
| 428 | const int offsetr = blk_row + r; |
| 429 | const int offsetc = blk_col + c; |
| 430 | const int step = bsh * bsw; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 431 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 432 | if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 433 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 434 | pack_txb_tokens(w, cm, x, tp, tok_end, xd, mbmi, plane, plane_bsize, |
| 435 | bit_depth, block, offsetr, offsetc, sub_txs, |
| 436 | token_stats); |
| 437 | block += step; |
| 438 | } |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 439 | } |
| 440 | } |
| 441 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 442 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 443 | #if CONFIG_SPATIAL_SEGMENTATION |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 444 | static int neg_interleave(int x, int ref, int max) { |
| 445 | const int diff = x - ref; |
| 446 | if (!ref) return x; |
| 447 | if (ref >= (max - 1)) return -diff; |
| 448 | if (2 * ref < max) { |
| 449 | if (abs(diff) <= ref) { |
| 450 | if (diff > 0) |
| 451 | return (diff << 1) - 1; |
| 452 | else |
| 453 | return ((-diff) << 1); |
| 454 | } |
| 455 | return x; |
| 456 | } else { |
| 457 | if (abs(diff) < (max - ref)) { |
| 458 | if (diff > 0) |
| 459 | return (diff << 1) - 1; |
| 460 | else |
| 461 | return ((-diff) << 1); |
| 462 | } |
| 463 | return (max - x) - 1; |
| 464 | } |
| 465 | } |
| 466 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 467 | static void write_segment_id(AV1_COMP *cpi, const MB_MODE_INFO *const mbmi, |
| 468 | aom_writer *w, const struct segmentation *seg, |
| 469 | struct segmentation_probs *segp, int mi_row, |
| 470 | int mi_col, int skip) { |
| 471 | AV1_COMMON *const cm = &cpi->common; |
Rostislav Pehlivanov | 3874cb5 | 2018-01-11 17:29:00 +0000 | [diff] [blame] | 472 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Rostislav Pehlivanov | 6a0245c | 2018-01-17 18:30:00 +0000 | [diff] [blame] | 473 | int prev_ul = -1; /* Top left segment_id */ |
| 474 | int prev_l = -1; /* Current left segment_id */ |
| 475 | int prev_u = -1; /* Current top segment_id */ |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 476 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 477 | if (!seg->enabled || !seg->update_map) return; |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 478 | |
Rostislav Pehlivanov | 3874cb5 | 2018-01-11 17:29:00 +0000 | [diff] [blame] | 479 | if ((xd->up_available) && (xd->left_available)) |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 480 | prev_ul = get_segment_id(cm, cm->current_frame_seg_map, BLOCK_4X4, |
| 481 | mi_row - 1, mi_col - 1); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 482 | |
Rostislav Pehlivanov | 3874cb5 | 2018-01-11 17:29:00 +0000 | [diff] [blame] | 483 | if (xd->up_available) |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 484 | prev_u = get_segment_id(cm, cm->current_frame_seg_map, BLOCK_4X4, |
| 485 | mi_row - 1, mi_col - 0); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 486 | |
Rostislav Pehlivanov | 3874cb5 | 2018-01-11 17:29:00 +0000 | [diff] [blame] | 487 | if (xd->left_available) |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 488 | prev_l = get_segment_id(cm, cm->current_frame_seg_map, BLOCK_4X4, |
| 489 | mi_row - 0, mi_col - 1); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 490 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 491 | int cdf_num = pick_spatial_seg_cdf(prev_ul, prev_u, prev_l); |
| 492 | int pred = pick_spatial_seg_pred(prev_ul, prev_u, prev_l); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 493 | |
| 494 | if (skip) { |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 495 | set_spatial_segment_id(cm, cm->current_frame_seg_map, mbmi->sb_type, mi_row, |
| 496 | mi_col, pred); |
| 497 | set_spatial_segment_id(cm, cpi->segmentation_map, mbmi->sb_type, mi_row, |
| 498 | mi_col, pred); |
| 499 | /* mbmi is read only but we need to update segment_id */ |
| 500 | ((MB_MODE_INFO *)mbmi)->segment_id = pred; |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 501 | return; |
| 502 | } |
| 503 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 504 | int coded_id = |
| 505 | neg_interleave(mbmi->segment_id, pred, cm->last_active_segid + 1); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 506 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 507 | aom_cdf_prob *pred_cdf = segp->spatial_pred_seg_cdf[cdf_num]; |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 508 | aom_write_symbol(w, coded_id, pred_cdf, 8); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 509 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 510 | set_spatial_segment_id(cm, cm->current_frame_seg_map, mbmi->sb_type, mi_row, |
| 511 | mi_col, mbmi->segment_id); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 512 | } |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 513 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 514 | static void write_segment_id(aom_writer *w, const struct segmentation *seg, |
Thomas | 9ac5508 | 2016-09-23 18:04:17 +0100 | [diff] [blame] | 515 | struct segmentation_probs *segp, int segment_id) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 516 | if (seg->enabled && seg->update_map) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 517 | aom_write_symbol(w, segment_id, segp->tree_cdf, MAX_SEGMENTS); |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 518 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 519 | } |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 520 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 521 | |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 522 | #define WRITE_REF_BIT(bname, pname) \ |
Thomas Davies | 0fbd2b7 | 2017-09-12 10:49:45 +0100 | [diff] [blame] | 523 | aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(xd), 2) |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 524 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 525 | // This function encodes the reference frame |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 526 | static void write_ref_frames(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 527 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 528 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 529 | const int is_compound = has_second_ref(mbmi); |
| 530 | const int segment_id = mbmi->segment_id; |
| 531 | |
| 532 | // If segment level coding of this signal is disabled... |
| 533 | // or the segment allows multiple reference frame options |
| 534 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
| 535 | assert(!is_compound); |
| 536 | assert(mbmi->ref_frame[0] == |
| 537 | get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME)); |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 538 | } |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 539 | #if CONFIG_SEGMENT_GLOBALMV |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 540 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP) || |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 541 | segfeature_active(&cm->seg, segment_id, SEG_LVL_GLOBALMV)) |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 542 | #else |
| 543 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) |
| 544 | #endif |
| 545 | { |
| 546 | assert(!is_compound); |
| 547 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 548 | } else { |
| 549 | // does the feature use compound prediction or not |
| 550 | // (if not specified at the frame/segment level) |
| 551 | if (cm->reference_mode == REFERENCE_MODE_SELECT) { |
Debargha Mukherjee | 0f248c4 | 2017-09-07 12:40:18 -0700 | [diff] [blame] | 552 | if (is_comp_ref_allowed(mbmi->sb_type)) |
Thomas Davies | 860def6 | 2017-06-14 10:00:03 +0100 | [diff] [blame] | 553 | aom_write_symbol(w, is_compound, av1_get_reference_mode_cdf(cm, xd), 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 554 | } else { |
| 555 | assert((!is_compound) == (cm->reference_mode == SINGLE_REFERENCE)); |
| 556 | } |
| 557 | |
| 558 | if (is_compound) { |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 559 | #if CONFIG_EXT_COMP_REFS |
| 560 | const COMP_REFERENCE_TYPE comp_ref_type = has_uni_comp_refs(mbmi) |
| 561 | ? UNIDIR_COMP_REFERENCE |
| 562 | : BIDIR_COMP_REFERENCE; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 563 | aom_write_symbol(w, comp_ref_type, av1_get_comp_reference_type_cdf(xd), |
| 564 | 2); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 565 | |
| 566 | if (comp_ref_type == UNIDIR_COMP_REFERENCE) { |
| 567 | const int bit = mbmi->ref_frame[0] == BWDREF_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 568 | WRITE_REF_BIT(bit, uni_comp_ref_p); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 569 | |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 570 | if (!bit) { |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 571 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 572 | const int bit1 = mbmi->ref_frame[1] == LAST3_FRAME || |
| 573 | mbmi->ref_frame[1] == GOLDEN_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 574 | WRITE_REF_BIT(bit1, uni_comp_ref_p1); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 575 | if (bit1) { |
| 576 | const int bit2 = mbmi->ref_frame[1] == GOLDEN_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 577 | WRITE_REF_BIT(bit2, uni_comp_ref_p2); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 578 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 579 | } else { |
| 580 | assert(mbmi->ref_frame[1] == ALTREF_FRAME); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | return; |
| 584 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 585 | |
| 586 | assert(comp_ref_type == BIDIR_COMP_REFERENCE); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 587 | #endif // CONFIG_EXT_COMP_REFS |
| 588 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 589 | const int bit = (mbmi->ref_frame[0] == GOLDEN_FRAME || |
| 590 | mbmi->ref_frame[0] == LAST3_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 591 | WRITE_REF_BIT(bit, comp_ref_p); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 592 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 593 | if (!bit) { |
Zoe Liu | 8781828 | 2017-11-26 17:09:59 -0800 | [diff] [blame] | 594 | const int bit1 = mbmi->ref_frame[0] == LAST2_FRAME; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 595 | WRITE_REF_BIT(bit1, comp_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 596 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 597 | const int bit2 = mbmi->ref_frame[0] == GOLDEN_FRAME; |
| 598 | WRITE_REF_BIT(bit2, comp_ref_p2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 599 | } |
Zoe Liu | 7b1ec7a | 2017-05-24 22:28:24 -0700 | [diff] [blame] | 600 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 601 | const int bit_bwd = mbmi->ref_frame[1] == ALTREF_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 602 | WRITE_REF_BIT(bit_bwd, comp_bwdref_p); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 603 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 604 | if (!bit_bwd) { |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 605 | WRITE_REF_BIT(mbmi->ref_frame[1] == ALTREF2_FRAME, comp_bwdref_p1); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 606 | } |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 607 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 608 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 609 | const int bit0 = (mbmi->ref_frame[0] <= ALTREF_FRAME && |
| 610 | mbmi->ref_frame[0] >= BWDREF_FRAME); |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 611 | WRITE_REF_BIT(bit0, single_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 612 | |
| 613 | if (bit0) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 614 | const int bit1 = mbmi->ref_frame[0] == ALTREF_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 615 | WRITE_REF_BIT(bit1, single_ref_p2); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 616 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 617 | if (!bit1) { |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 618 | WRITE_REF_BIT(mbmi->ref_frame[0] == ALTREF2_FRAME, single_ref_p6); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 619 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 620 | } else { |
| 621 | const int bit2 = (mbmi->ref_frame[0] == LAST3_FRAME || |
| 622 | mbmi->ref_frame[0] == GOLDEN_FRAME); |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 623 | WRITE_REF_BIT(bit2, single_ref_p3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 624 | |
| 625 | if (!bit2) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 626 | const int bit3 = mbmi->ref_frame[0] != LAST_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 627 | WRITE_REF_BIT(bit3, single_ref_p4); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 628 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 629 | const int bit4 = mbmi->ref_frame[0] != LAST3_FRAME; |
Zoe Liu | 4917295 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 630 | WRITE_REF_BIT(bit4, single_ref_p5); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 631 | } |
| 632 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 633 | } |
| 634 | } |
| 635 | } |
| 636 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 637 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 638 | static void write_filter_intra_mode_info(const MACROBLOCKD *xd, |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 639 | const MB_MODE_INFO *const mbmi, |
| 640 | aom_writer *w) { |
Yue Chen | 95e13e2 | 2017-11-01 23:56:35 -0700 | [diff] [blame] | 641 | if (mbmi->mode == DC_PRED && mbmi->palette_mode_info.palette_size[0] == 0 && |
| 642 | av1_filter_intra_allowed_txsize(mbmi->tx_size)) { |
Yue Chen | b057187 | 2017-12-18 18:12:59 -0800 | [diff] [blame] | 643 | aom_write_symbol(w, mbmi->filter_intra_mode_info.use_filter_intra, |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 644 | xd->tile_ctx->filter_intra_cdfs[mbmi->tx_size], 2); |
Yue Chen | b057187 | 2017-12-18 18:12:59 -0800 | [diff] [blame] | 645 | if (mbmi->filter_intra_mode_info.use_filter_intra) { |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 646 | const FILTER_INTRA_MODE mode = |
Yue Chen | b057187 | 2017-12-18 18:12:59 -0800 | [diff] [blame] | 647 | mbmi->filter_intra_mode_info.filter_intra_mode; |
Yue Chen | 994dba2 | 2017-12-19 15:27:26 -0800 | [diff] [blame] | 648 | aom_write_symbol(w, mode, xd->tile_ctx->filter_intra_mode_cdf, |
Yue Chen | 63ce36f | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 649 | FILTER_INTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 650 | } |
| 651 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 652 | } |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 653 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 654 | |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 655 | static void write_angle_delta(aom_writer *w, int angle_delta, |
| 656 | aom_cdf_prob *cdf) { |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 657 | #if CONFIG_EXT_INTRA_MOD |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 658 | aom_write_symbol(w, angle_delta + MAX_ANGLE_DELTA, cdf, |
| 659 | 2 * MAX_ANGLE_DELTA + 1); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 660 | #else |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 661 | (void)cdf; |
| 662 | write_uniform(w, 2 * MAX_ANGLE_DELTA + 1, MAX_ANGLE_DELTA + angle_delta); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 663 | #endif // CONFIG_EXT_INTRA_MOD |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 664 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 665 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 666 | static void write_mb_interp_filter(AV1_COMP *cpi, const MACROBLOCKD *xd, |
| 667 | aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 668 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 669 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
Thomas Davies | 77c7c40 | 2017-01-11 17:58:54 +0000 | [diff] [blame] | 670 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 671 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 672 | if (!av1_is_interp_needed(xd)) { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 673 | assert(mbmi->interp_filters == |
| 674 | av1_broadcast_interp_filter( |
| 675 | av1_unswitchable_filter(cm->interp_filter))); |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 676 | return; |
| 677 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 678 | if (cm->interp_filter == SWITCHABLE) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 679 | #if CONFIG_DUAL_FILTER |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 680 | int dir; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 681 | for (dir = 0; dir < 2; ++dir) { |
| 682 | if (has_subpel_mv_component(xd->mi[0], xd, dir) || |
| 683 | (mbmi->ref_frame[1] > INTRA_FRAME && |
| 684 | has_subpel_mv_component(xd->mi[0], xd, dir + 2))) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 685 | const int ctx = av1_get_pred_context_switchable_interp(xd, dir); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 686 | InterpFilter filter = |
| 687 | av1_extract_interp_filter(mbmi->interp_filters, dir); |
| 688 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
Angie Chiang | b9b42a0 | 2017-01-20 12:47:36 -0800 | [diff] [blame] | 689 | SWITCHABLE_FILTERS); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 690 | ++cpi->interp_filter_selected[0][filter]; |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 691 | } else { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 692 | assert(av1_extract_interp_filter(mbmi->interp_filters, dir) == |
| 693 | EIGHTTAP_REGULAR); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 694 | } |
| 695 | } |
| 696 | #else |
| 697 | { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 698 | const int ctx = av1_get_pred_context_switchable_interp(xd); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 699 | InterpFilter filter = av1_extract_interp_filter(mbmi->interp_filters, 0); |
| 700 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
| 701 | SWITCHABLE_FILTERS); |
| 702 | ++cpi->interp_filter_selected[0][filter]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 703 | } |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 704 | #endif // CONFIG_DUAL_FILTER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 705 | } |
| 706 | } |
| 707 | |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 708 | // Transmit color values with delta encoding. Write the first value as |
| 709 | // literal, and the deltas between each value and the previous one. "min_val" is |
| 710 | // the smallest possible value of the deltas. |
| 711 | static void delta_encode_palette_colors(const int *colors, int num, |
| 712 | int bit_depth, int min_val, |
| 713 | aom_writer *w) { |
| 714 | if (num <= 0) return; |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 715 | assert(colors[0] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 716 | aom_write_literal(w, colors[0], bit_depth); |
| 717 | if (num == 1) return; |
| 718 | int max_delta = 0; |
| 719 | int deltas[PALETTE_MAX_SIZE]; |
| 720 | memset(deltas, 0, sizeof(deltas)); |
| 721 | for (int i = 1; i < num; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 722 | assert(colors[i] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 723 | const int delta = colors[i] - colors[i - 1]; |
| 724 | deltas[i - 1] = delta; |
| 725 | assert(delta >= min_val); |
| 726 | if (delta > max_delta) max_delta = delta; |
| 727 | } |
| 728 | const int min_bits = bit_depth - 3; |
| 729 | int bits = AOMMAX(av1_ceil_log2(max_delta + 1 - min_val), min_bits); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 730 | assert(bits <= bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 731 | int range = (1 << bit_depth) - colors[0] - min_val; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 732 | aom_write_literal(w, bits - min_bits, 2); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 733 | for (int i = 0; i < num - 1; ++i) { |
| 734 | aom_write_literal(w, deltas[i] - min_val, bits); |
| 735 | range -= deltas[i]; |
| 736 | bits = AOMMIN(bits, av1_ceil_log2(range)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 737 | } |
| 738 | } |
| 739 | |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 740 | // Transmit luma palette color values. First signal if each color in the color |
| 741 | // cache is used. Those colors that are not in the cache are transmitted with |
| 742 | // delta encoding. |
| 743 | static void write_palette_colors_y(const MACROBLOCKD *const xd, |
| 744 | const PALETTE_MODE_INFO *const pmi, |
| 745 | int bit_depth, aom_writer *w) { |
| 746 | const int n = pmi->palette_size[0]; |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 747 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 748 | const int n_cache = av1_get_palette_cache(xd, 0, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 749 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 750 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 751 | const int n_out_cache = |
| 752 | av1_index_color_cache(color_cache, n_cache, pmi->palette_colors, n, |
| 753 | cache_color_found, out_cache_colors); |
| 754 | int n_in_cache = 0; |
| 755 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 756 | const int found = cache_color_found[i]; |
| 757 | aom_write_bit(w, found); |
| 758 | n_in_cache += found; |
| 759 | } |
| 760 | assert(n_in_cache + n_out_cache == n); |
| 761 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 1, w); |
| 762 | } |
| 763 | |
| 764 | // Write chroma palette color values. U channel is handled similarly to the luma |
| 765 | // channel. For v channel, either use delta encoding or transmit raw values |
| 766 | // directly, whichever costs less. |
| 767 | static void write_palette_colors_uv(const MACROBLOCKD *const xd, |
| 768 | const PALETTE_MODE_INFO *const pmi, |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 769 | int bit_depth, aom_writer *w) { |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 770 | const int n = pmi->palette_size[1]; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 771 | const uint16_t *colors_u = pmi->palette_colors + PALETTE_MAX_SIZE; |
| 772 | const uint16_t *colors_v = pmi->palette_colors + 2 * PALETTE_MAX_SIZE; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 773 | // U channel colors. |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 774 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 775 | const int n_cache = av1_get_palette_cache(xd, 1, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 776 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 777 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 778 | const int n_out_cache = av1_index_color_cache( |
| 779 | color_cache, n_cache, colors_u, n, cache_color_found, out_cache_colors); |
| 780 | int n_in_cache = 0; |
| 781 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 782 | const int found = cache_color_found[i]; |
| 783 | aom_write_bit(w, found); |
| 784 | n_in_cache += found; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 785 | } |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 786 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 0, w); |
| 787 | |
| 788 | // V channel colors. Don't use color cache as the colors are not sorted. |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 789 | const int max_val = 1 << bit_depth; |
| 790 | int zero_count = 0, min_bits_v = 0; |
| 791 | int bits_v = |
| 792 | av1_get_palette_delta_bits_v(pmi, bit_depth, &zero_count, &min_bits_v); |
| 793 | const int rate_using_delta = |
| 794 | 2 + bit_depth + (bits_v + 1) * (n - 1) - zero_count; |
| 795 | const int rate_using_raw = bit_depth * n; |
| 796 | if (rate_using_delta < rate_using_raw) { // delta encoding |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 797 | assert(colors_v[0] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 798 | aom_write_bit(w, 1); |
| 799 | aom_write_literal(w, bits_v - min_bits_v, 2); |
| 800 | aom_write_literal(w, colors_v[0], bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 801 | for (int i = 1; i < n; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 802 | assert(colors_v[i] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 803 | if (colors_v[i] == colors_v[i - 1]) { // No need to signal sign bit. |
| 804 | aom_write_literal(w, 0, bits_v); |
| 805 | continue; |
| 806 | } |
| 807 | const int delta = abs((int)colors_v[i] - colors_v[i - 1]); |
| 808 | const int sign_bit = colors_v[i] < colors_v[i - 1]; |
| 809 | if (delta <= max_val - delta) { |
| 810 | aom_write_literal(w, delta, bits_v); |
| 811 | aom_write_bit(w, sign_bit); |
| 812 | } else { |
| 813 | aom_write_literal(w, max_val - delta, bits_v); |
| 814 | aom_write_bit(w, !sign_bit); |
| 815 | } |
| 816 | } |
| 817 | } else { // Transmit raw values. |
| 818 | aom_write_bit(w, 0); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 819 | for (int i = 0; i < n; ++i) { |
| 820 | assert(colors_v[i] < (1 << bit_depth)); |
| 821 | aom_write_literal(w, colors_v[i], bit_depth); |
| 822 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 823 | } |
| 824 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 825 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 826 | static void write_palette_mode_info(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
Hui Su | 8b618f6 | 2017-12-20 12:03:35 -0800 | [diff] [blame] | 827 | const MODE_INFO *const mi, int mi_row, |
| 828 | int mi_col, aom_writer *w) { |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 829 | const int num_planes = av1_num_planes(cm); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 830 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 831 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Hui Su | 473cf89 | 2017-11-08 18:14:31 -0800 | [diff] [blame] | 832 | assert(av1_allow_palette(cm->allow_screen_content_tools, bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 833 | const PALETTE_MODE_INFO *const pmi = &mbmi->palette_mode_info; |
Hui Su | c1f411b | 2017-12-19 15:58:28 -0800 | [diff] [blame] | 834 | const int bsize_ctx = av1_get_palette_bsize_ctx(bsize); |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 835 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 836 | if (mbmi->mode == DC_PRED) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 837 | const int n = pmi->palette_size[0]; |
Hui Su | db68555 | 2018-01-12 16:38:33 -0800 | [diff] [blame] | 838 | const int palette_y_mode_ctx = av1_get_palette_mode_ctx(xd); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 839 | aom_write_symbol( |
| 840 | w, n > 0, |
Hui Su | c1f411b | 2017-12-19 15:58:28 -0800 | [diff] [blame] | 841 | xd->tile_ctx->palette_y_mode_cdf[bsize_ctx][palette_y_mode_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 842 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 843 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Hui Su | c1f411b | 2017-12-19 15:58:28 -0800 | [diff] [blame] | 844 | xd->tile_ctx->palette_y_size_cdf[bsize_ctx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 845 | PALETTE_SIZES); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 846 | write_palette_colors_y(xd, pmi, cm->bit_depth, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 847 | } |
| 848 | } |
| 849 | |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 850 | const int uv_dc_pred = |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 851 | num_planes > 1 && mbmi->uv_mode == UV_DC_PRED && |
Hui Su | 8b618f6 | 2017-12-20 12:03:35 -0800 | [diff] [blame] | 852 | is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
| 853 | xd->plane[1].subsampling_y); |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 854 | if (uv_dc_pred) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 855 | const int n = pmi->palette_size[1]; |
| 856 | const int palette_uv_mode_ctx = (pmi->palette_size[0] > 0); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 857 | aom_write_symbol(w, n > 0, |
| 858 | xd->tile_ctx->palette_uv_mode_cdf[palette_uv_mode_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 859 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 860 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Hui Su | c1f411b | 2017-12-19 15:58:28 -0800 | [diff] [blame] | 861 | xd->tile_ctx->palette_uv_size_cdf[bsize_ctx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 862 | PALETTE_SIZES); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 863 | write_palette_colors_uv(xd, pmi, cm->bit_depth, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 864 | } |
| 865 | } |
| 866 | } |
| 867 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 868 | void av1_write_tx_type(const AV1_COMMON *const cm, const MACROBLOCKD *xd, |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 869 | #if CONFIG_TXK_SEL |
Luc Trudeau | 2eb9b84 | 2017-12-13 11:19:16 -0500 | [diff] [blame] | 870 | int blk_row, int blk_col, int plane, TX_SIZE tx_size, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 871 | #endif |
| 872 | aom_writer *w) { |
| 873 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 874 | const int is_inter = is_inter_block(mbmi); |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 875 | #if !CONFIG_TXK_SEL |
Debargha Mukherjee | 5577bd1 | 2017-11-20 16:04:26 -0800 | [diff] [blame] | 876 | const TX_SIZE mtx_size = |
| 877 | get_max_rect_tx_size(xd->mi[0]->mbmi.sb_type, is_inter); |
Sarah Parker | 90024e4 | 2017-10-06 16:50:47 -0700 | [diff] [blame] | 878 | const TX_SIZE tx_size = |
Debargha Mukherjee | 3ebb0d0 | 2017-12-14 05:05:18 -0800 | [diff] [blame] | 879 | is_inter ? TXSIZEMAX(sub_tx_size_map[1][mtx_size], mbmi->min_tx_size) |
Sarah Parker | 90024e4 | 2017-10-06 16:50:47 -0700 | [diff] [blame] | 880 | : mbmi->tx_size; |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 881 | #endif // !CONFIG_TXK_SEL |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 882 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 883 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 884 | #if !CONFIG_TXK_SEL |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 885 | TX_TYPE tx_type = mbmi->tx_type; |
| 886 | #else |
| 887 | // Only y plane's tx_type is transmitted |
Angie Chiang | 39b06eb | 2017-04-14 09:52:29 -0700 | [diff] [blame] | 888 | if (plane > 0) return; |
| 889 | PLANE_TYPE plane_type = get_plane_type(plane); |
Sarah Parker | 7c71cc0 | 2018-01-29 12:27:58 -0800 | [diff] [blame] | 890 | TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col, tx_size, |
| 891 | cm->reduced_tx_set_used); |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 892 | #endif |
| 893 | |
Hui Su | 99350a6 | 2018-01-11 16:41:09 -0800 | [diff] [blame] | 894 | const TX_SIZE square_tx_size = txsize_sqr_map[tx_size]; |
| 895 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 896 | if (get_ext_tx_types(tx_size, bsize, is_inter, cm->reduced_tx_set_used) > 1 && |
| 897 | ((!cm->seg.enabled && cm->base_qindex > 0) || |
| 898 | (cm->seg.enabled && xd->qindex[mbmi->segment_id] > 0)) && |
| 899 | !mbmi->skip && |
| 900 | !segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) { |
| 901 | const TxSetType tx_set_type = |
| 902 | get_ext_tx_set_type(tx_size, bsize, is_inter, cm->reduced_tx_set_used); |
| 903 | const int eset = |
| 904 | get_ext_tx_set(tx_size, bsize, is_inter, cm->reduced_tx_set_used); |
| 905 | // eset == 0 should correspond to a set with only DCT_DCT and there |
| 906 | // is no need to send the tx_type |
| 907 | assert(eset > 0); |
| 908 | assert(av1_ext_tx_used[tx_set_type][tx_type]); |
| 909 | if (is_inter) { |
| 910 | aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 911 | ec_ctx->inter_ext_tx_cdf[eset][square_tx_size], |
| 912 | av1_num_ext_tx_set[tx_set_type]); |
| 913 | } else { |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 914 | #if CONFIG_FILTER_INTRA |
Hui Su | 99350a6 | 2018-01-11 16:41:09 -0800 | [diff] [blame] | 915 | PREDICTION_MODE intra_dir; |
| 916 | if (mbmi->filter_intra_mode_info.use_filter_intra) |
| 917 | intra_dir = |
| 918 | fimode_to_intradir[mbmi->filter_intra_mode_info.filter_intra_mode]; |
| 919 | else |
| 920 | intra_dir = mbmi->mode; |
| 921 | aom_write_symbol( |
| 922 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 923 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][intra_dir], |
| 924 | av1_num_ext_tx_set[tx_set_type]); |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 925 | #else |
Hui Su | 99350a6 | 2018-01-11 16:41:09 -0800 | [diff] [blame] | 926 | aom_write_symbol( |
| 927 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 928 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode], |
| 929 | av1_num_ext_tx_set[tx_set_type]); |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 930 | #endif |
Lester Lu | 432012f | 2017-08-17 14:39:29 -0700 | [diff] [blame] | 931 | } |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 932 | } |
| 933 | } |
| 934 | |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 935 | static void write_intra_mode(FRAME_CONTEXT *frame_ctx, BLOCK_SIZE bsize, |
| 936 | PREDICTION_MODE mode, aom_writer *w) { |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 937 | aom_write_symbol(w, mode, frame_ctx->y_mode_cdf[size_group_lookup[bsize]], |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 938 | INTRA_MODES); |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | static void write_intra_uv_mode(FRAME_CONTEXT *frame_ctx, |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 942 | UV_PREDICTION_MODE uv_mode, |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 943 | PREDICTION_MODE y_mode, |
| 944 | #if CONFIG_CFL |
| 945 | CFL_ALLOWED_TYPE cfl_allowed, |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 946 | #endif |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 947 | aom_writer *w) { |
| 948 | #if CONFIG_CFL |
| 949 | aom_write_symbol(w, uv_mode, frame_ctx->uv_mode_cdf[cfl_allowed][y_mode], |
| 950 | UV_INTRA_MODES - !cfl_allowed); |
| 951 | #else |
| 952 | uv_mode = get_uv_mode(uv_mode); |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 953 | aom_write_symbol(w, uv_mode, frame_ctx->uv_mode_cdf[y_mode], UV_INTRA_MODES); |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 954 | #endif |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 955 | } |
| 956 | |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 957 | #if CONFIG_CFL |
David Michael Barr | f6eaa15 | 2017-07-19 19:42:28 +0900 | [diff] [blame] | 958 | static void write_cfl_alphas(FRAME_CONTEXT *const ec_ctx, int idx, |
| 959 | int joint_sign, aom_writer *w) { |
| 960 | aom_write_symbol(w, joint_sign, ec_ctx->cfl_sign_cdf, CFL_JOINT_SIGNS); |
| 961 | // Magnitudes are only signaled for nonzero codes. |
| 962 | if (CFL_SIGN_U(joint_sign) != CFL_SIGN_ZERO) { |
| 963 | aom_cdf_prob *cdf_u = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_U(joint_sign)]; |
| 964 | aom_write_symbol(w, CFL_IDX_U(idx), cdf_u, CFL_ALPHABET_SIZE); |
| 965 | } |
| 966 | if (CFL_SIGN_V(joint_sign) != CFL_SIGN_ZERO) { |
| 967 | aom_cdf_prob *cdf_v = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_V(joint_sign)]; |
| 968 | aom_write_symbol(w, CFL_IDX_V(idx), cdf_v, CFL_ALPHABET_SIZE); |
| 969 | } |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 970 | } |
| 971 | #endif |
| 972 | |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 973 | static void write_cdef(AV1_COMMON *cm, aom_writer *w, int skip, int mi_col, |
| 974 | int mi_row) { |
| 975 | if (cm->all_lossless) return; |
| 976 | |
| 977 | const int m = ~((1 << (6 - MI_SIZE_LOG2)) - 1); |
| 978 | const MB_MODE_INFO *mbmi = |
| 979 | &cm->mi_grid_visible[(mi_row & m) * cm->mi_stride + (mi_col & m)]->mbmi; |
| 980 | // Initialise when at top left part of the superblock |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 981 | if (!(mi_row & (cm->seq_params.mib_size - 1)) && |
| 982 | !(mi_col & (cm->seq_params.mib_size - 1))) { // Top left? |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 983 | #if CONFIG_EXT_PARTITION |
| 984 | cm->cdef_preset[0] = cm->cdef_preset[1] = cm->cdef_preset[2] = |
| 985 | cm->cdef_preset[3] = -1; |
| 986 | #else |
| 987 | cm->cdef_preset = -1; |
| 988 | #endif |
| 989 | } |
| 990 | |
| 991 | // Emit CDEF param at first non-skip coding block |
| 992 | #if CONFIG_EXT_PARTITION |
| 993 | const int mask = 1 << (6 - MI_SIZE_LOG2); |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 994 | const int index = cm->seq_params.sb_size == BLOCK_128X128 |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 995 | ? !!(mi_col & mask) + 2 * !!(mi_row & mask) |
| 996 | : 0; |
| 997 | if (cm->cdef_preset[index] == -1 && !skip) { |
| 998 | aom_write_literal(w, mbmi->cdef_strength, cm->cdef_bits); |
| 999 | cm->cdef_preset[index] = mbmi->cdef_strength; |
| 1000 | } |
| 1001 | #else |
| 1002 | if (cm->cdef_preset == -1 && !skip) { |
| 1003 | aom_write_literal(w, mbmi->cdef_strength, cm->cdef_bits); |
| 1004 | cm->cdef_preset = mbmi->cdef_strength; |
| 1005 | } |
| 1006 | #endif |
| 1007 | } |
| 1008 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1009 | static void write_inter_segment_id(AV1_COMP *cpi, aom_writer *w, |
| 1010 | const struct segmentation *const seg, |
| 1011 | struct segmentation_probs *const segp, |
| 1012 | int mi_row, int mi_col, int skip, |
| 1013 | int preskip) { |
| 1014 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1015 | const MODE_INFO *mi = xd->mi[0]; |
| 1016 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1017 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1018 | AV1_COMMON *const cm = &cpi->common; |
| 1019 | #else |
| 1020 | (void)mi_row; |
| 1021 | (void)mi_col; |
| 1022 | (void)skip; |
| 1023 | (void)preskip; |
| 1024 | #endif |
| 1025 | |
| 1026 | if (seg->update_map) { |
| 1027 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1028 | if (preskip) { |
| 1029 | if (!cm->preskip_segid) return; |
| 1030 | } else { |
| 1031 | if (cm->preskip_segid) return; |
| 1032 | if (skip) { |
Rostislav Pehlivanov | 2d4322b | 2018-01-11 17:19:58 +0000 | [diff] [blame] | 1033 | write_segment_id(cpi, mbmi, w, seg, segp, mi_row, mi_col, 1); |
Hui Su | 52b1ba2 | 2017-12-27 14:25:25 -0800 | [diff] [blame] | 1034 | if (seg->temporal_update) ((MB_MODE_INFO *)mbmi)->seg_id_predicted = 0; |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1035 | return; |
| 1036 | } |
| 1037 | } |
| 1038 | #endif |
| 1039 | if (seg->temporal_update) { |
| 1040 | const int pred_flag = mbmi->seg_id_predicted; |
| 1041 | aom_cdf_prob *pred_cdf = av1_get_pred_cdf_seg_id(segp, xd); |
| 1042 | aom_write_symbol(w, pred_flag, pred_cdf, 2); |
| 1043 | if (!pred_flag) { |
| 1044 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1045 | write_segment_id(cpi, mbmi, w, seg, segp, mi_row, mi_col, 0); |
| 1046 | #else |
| 1047 | write_segment_id(w, seg, segp, mbmi->segment_id); |
| 1048 | #endif |
| 1049 | } |
| 1050 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1051 | if (pred_flag) { |
| 1052 | set_spatial_segment_id(cm, cm->current_frame_seg_map, mbmi->sb_type, |
| 1053 | mi_row, mi_col, mbmi->segment_id); |
| 1054 | } |
| 1055 | #endif |
| 1056 | } else { |
| 1057 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1058 | write_segment_id(cpi, mbmi, w, seg, segp, mi_row, mi_col, 0); |
| 1059 | #else |
| 1060 | write_segment_id(w, seg, segp, mbmi->segment_id); |
| 1061 | #endif |
| 1062 | } |
| 1063 | } |
| 1064 | } |
| 1065 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1066 | static void pack_inter_mode_mvs(AV1_COMP *cpi, const int mi_row, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1067 | const int mi_col, aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1068 | AV1_COMMON *const cm = &cpi->common; |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1069 | MACROBLOCK *const x = &cpi->td.mb; |
| 1070 | MACROBLOCKD *const xd = &x->e_mbd; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1071 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1072 | const MODE_INFO *mi = xd->mi[0]; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1073 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1074 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1075 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1076 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1077 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
| 1078 | const PREDICTION_MODE mode = mbmi->mode; |
| 1079 | const int segment_id = mbmi->segment_id; |
| 1080 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1081 | const int allow_hp = cm->allow_high_precision_mv; |
| 1082 | const int is_inter = is_inter_block(mbmi); |
| 1083 | const int is_compound = has_second_ref(mbmi); |
| 1084 | int skip, ref; |
David Barker | 45390c1 | 2017-02-20 14:44:40 +0000 | [diff] [blame] | 1085 | (void)mi_row; |
| 1086 | (void)mi_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1087 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1088 | write_inter_segment_id(cpi, w, seg, segp, mi_row, mi_col, 0, 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1089 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1090 | #if CONFIG_EXT_SKIP |
| 1091 | write_skip_mode(cm, xd, segment_id, mi, w); |
| 1092 | |
| 1093 | if (mbmi->skip_mode) { |
| 1094 | skip = mbmi->skip; |
| 1095 | assert(skip); |
| 1096 | } else { |
| 1097 | #endif // CONFIG_EXT_SKIP |
| 1098 | skip = write_skip(cm, xd, segment_id, mi, w); |
| 1099 | #if CONFIG_EXT_SKIP |
| 1100 | } |
| 1101 | #endif // CONFIG_EXT_SKIP |
| 1102 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1103 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1104 | write_inter_segment_id(cpi, w, seg, segp, mi_row, mi_col, skip, 0); |
| 1105 | #endif |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1106 | |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1107 | write_cdef(cm, w, skip, mi_col, mi_row); |
| 1108 | |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1109 | if (cm->delta_q_present_flag) { |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 1110 | int super_block_upper_left = |
| 1111 | ((mi_row & (cm->seq_params.mib_size - 1)) == 0) && |
| 1112 | ((mi_col & (cm->seq_params.mib_size - 1)) == 0); |
| 1113 | if ((bsize != cm->seq_params.sb_size || skip == 0) && |
| 1114 | super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1115 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1116 | int reduced_delta_qindex = |
| 1117 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1118 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1119 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1120 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1121 | #if CONFIG_LOOPFILTER_LEVEL |
| 1122 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1123 | if (cm->delta_lf_multi) { |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 1124 | const int frame_lf_count = |
| 1125 | av1_num_planes(cm) > 1 ? FRAME_LF_COUNT : FRAME_LF_COUNT - 2; |
| 1126 | for (int lf_id = 0; lf_id < frame_lf_count; ++lf_id) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1127 | int reduced_delta_lflevel = |
| 1128 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1129 | cm->delta_lf_res; |
| 1130 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1131 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1132 | } |
| 1133 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1134 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1135 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1136 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1137 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1138 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1139 | } |
| 1140 | } |
| 1141 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1142 | if (cm->delta_lf_present_flag) { |
| 1143 | int reduced_delta_lflevel = |
| 1144 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1145 | cm->delta_lf_res; |
| 1146 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1147 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1148 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1149 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1150 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1151 | } |
| 1152 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1153 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1154 | #if CONFIG_EXT_SKIP |
| 1155 | if (!mbmi->skip_mode) |
| 1156 | #endif // CONFIG_EXT_SKIP |
| 1157 | write_is_inter(cm, xd, mbmi->segment_id, w, is_inter); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1158 | |
Debargha Mukherjee | 4def76a | 2017-10-19 13:38:35 -0700 | [diff] [blame] | 1159 | if (cm->tx_mode == TX_MODE_SELECT && block_signals_txsize(bsize) && |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1160 | !(is_inter && skip) && !xd->lossless[segment_id]) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1161 | if (is_inter) { // This implies skip flag is 0. |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1162 | const TX_SIZE max_tx_size = get_vartx_max_txsize(xd, bsize, 0); |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 1163 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1164 | const int bw = tx_size_wide_unit[max_tx_size]; |
Jingning Han | 9ca05b7 | 2017-01-03 14:41:36 -0800 | [diff] [blame] | 1165 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1166 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1167 | int idx, idy; |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 1168 | for (idy = 0; idy < height; idy += bh) |
| 1169 | for (idx = 0; idx < width; idx += bw) |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1170 | write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1171 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1172 | set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, skip, xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1173 | write_selected_tx_size(cm, xd, w); |
| 1174 | } |
| 1175 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1176 | set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, skip, xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1179 | #if CONFIG_EXT_SKIP |
Zoe Liu | 5664419 | 2017-12-19 13:16:18 -0800 | [diff] [blame] | 1180 | if (mbmi->skip_mode) return; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1181 | #endif // CONFIG_EXT_SKIP |
| 1182 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1183 | if (!is_inter) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1184 | write_intra_mode(ec_ctx, bsize, mode, w); |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1185 | const int use_angle_delta = av1_use_angle_delta(bsize); |
| 1186 | |
Hui Su | 7fb9397 | 2018-02-20 21:18:03 -0800 | [diff] [blame] | 1187 | if (use_angle_delta && av1_is_directional_mode(mode)) { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1188 | write_angle_delta(w, mbmi->angle_delta[PLANE_TYPE_Y], |
| 1189 | ec_ctx->angle_delta_cdf[mode - V_PRED]); |
| 1190 | } |
| 1191 | |
David Barker | c2a680e | 2018-02-07 15:53:53 +0000 | [diff] [blame] | 1192 | #if CONFIG_MONO_VIDEO |
| 1193 | if (!cm->seq_params.monochrome && |
| 1194 | is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
| 1195 | xd->plane[1].subsampling_y)) |
| 1196 | #else |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1197 | if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
David Barker | c2a680e | 2018-02-07 15:53:53 +0000 | [diff] [blame] | 1198 | xd->plane[1].subsampling_y)) |
| 1199 | #endif // CONFIG_MONO_VIDEO |
| 1200 | { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1201 | const UV_PREDICTION_MODE uv_mode = mbmi->uv_mode; |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 1202 | #if !CONFIG_CFL |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1203 | write_intra_uv_mode(ec_ctx, uv_mode, mode, w); |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 1204 | #else |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1205 | write_intra_uv_mode(ec_ctx, uv_mode, mode, is_cfl_allowed(mbmi), w); |
| 1206 | if (uv_mode == UV_CFL_PRED) |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1207 | write_cfl_alphas(ec_ctx, mbmi->cfl_alpha_idx, mbmi->cfl_alpha_signs, w); |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1208 | #endif |
Hui Su | 7fb9397 | 2018-02-20 21:18:03 -0800 | [diff] [blame] | 1209 | if (use_angle_delta && av1_is_directional_mode(get_uv_mode(uv_mode))) { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1210 | write_angle_delta(w, mbmi->angle_delta[PLANE_TYPE_UV], |
| 1211 | ec_ctx->angle_delta_cdf[uv_mode - V_PRED]); |
| 1212 | } |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1213 | } |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1214 | |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1215 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Hui Su | 8b618f6 | 2017-12-20 12:03:35 -0800 | [diff] [blame] | 1216 | write_palette_mode_info(cm, xd, mi, mi_row, mi_col, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1217 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 1218 | write_filter_intra_mode_info(xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1219 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1220 | } else { |
Yaowu Xu | b0d0d00 | 2016-11-22 09:26:43 -0800 | [diff] [blame] | 1221 | int16_t mode_ctx; |
Zoe Liu | fa8bad1 | 2018-01-23 14:32:31 -0800 | [diff] [blame] | 1222 | |
| 1223 | av1_collect_neighbors_ref_counts(xd); |
| 1224 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1225 | write_ref_frames(cm, xd, w); |
| 1226 | |
Jingning Han | 7ae50fd | 2018-02-05 16:33:40 -0800 | [diff] [blame] | 1227 | #if CONFIG_OPT_REF_MV |
| 1228 | mode_ctx = |
| 1229 | av1_mode_context_analyzer(mbmi_ext->mode_context, mbmi->ref_frame); |
| 1230 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1231 | if (is_compound) |
| 1232 | mode_ctx = mbmi_ext->compound_mode_context[mbmi->ref_frame[0]]; |
| 1233 | else |
Luc Trudeau | 15a18e3 | 2017-12-13 14:15:25 -0500 | [diff] [blame] | 1234 | mode_ctx = |
| 1235 | av1_mode_context_analyzer(mbmi_ext->mode_context, mbmi->ref_frame); |
Jingning Han | 7ae50fd | 2018-02-05 16:33:40 -0800 | [diff] [blame] | 1236 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1237 | |
| 1238 | // If segment skip is not enabled code the mode. |
| 1239 | if (!segfeature_active(seg, segment_id, SEG_LVL_SKIP)) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1240 | if (is_inter_compound_mode(mode)) |
| 1241 | write_inter_compound_mode(cm, xd, w, mode, mode_ctx); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1242 | else if (is_inter_singleref_mode(mode)) |
| 1243 | write_inter_mode(w, mode, ec_ctx, mode_ctx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1244 | |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1245 | if (mode == NEWMV || mode == NEW_NEWMV || have_nearmv_in_inter_mode(mode)) |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1246 | write_drl_idx(ec_ctx, mbmi, mbmi_ext, w); |
| 1247 | else |
| 1248 | assert(mbmi->ref_mv_idx == 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1251 | if (mode == NEWMV || mode == NEW_NEWMV) { |
| 1252 | int_mv ref_mv; |
| 1253 | for (ref = 0; ref < 1 + is_compound; ++ref) { |
| 1254 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1255 | int nmv_ctx = |
| 1256 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1257 | mbmi_ext->ref_mv_stack[rf_type], ref, mbmi->ref_mv_idx); |
| 1258 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1259 | ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[ref]][0]; |
| 1260 | av1_encode_mv(cpi, w, &mbmi->mv[ref].as_mv, &ref_mv.as_mv, nmvc, |
| 1261 | allow_hp); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1262 | } |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1263 | } else if (mode == NEAREST_NEWMV || mode == NEAR_NEWMV) { |
| 1264 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
Imdad Sardharwalla | c23ad63 | 2017-11-28 14:12:38 +0000 | [diff] [blame] | 1265 | int nmv_ctx = av1_nmv_ctx( |
| 1266 | mbmi_ext->ref_mv_count[rf_type], mbmi_ext->ref_mv_stack[rf_type], 1, |
| 1267 | mbmi->ref_mv_idx + (mode == NEAR_NEWMV ? 1 : 0)); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1268 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1269 | av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, |
| 1270 | &mbmi_ext->ref_mvs[mbmi->ref_frame[1]][0].as_mv, nmvc, |
| 1271 | allow_hp); |
| 1272 | } else if (mode == NEW_NEARESTMV || mode == NEW_NEARMV) { |
| 1273 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
Imdad Sardharwalla | c23ad63 | 2017-11-28 14:12:38 +0000 | [diff] [blame] | 1274 | int nmv_ctx = av1_nmv_ctx( |
| 1275 | mbmi_ext->ref_mv_count[rf_type], mbmi_ext->ref_mv_stack[rf_type], 0, |
| 1276 | mbmi->ref_mv_idx + (mode == NEW_NEARMV ? 1 : 0)); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1277 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1278 | av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, |
| 1279 | &mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0].as_mv, nmvc, |
| 1280 | allow_hp); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1281 | } |
| 1282 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1283 | if (cpi->common.reference_mode != COMPOUND_REFERENCE && |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1284 | cpi->common.allow_interintra_compound && is_interintra_allowed(mbmi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1285 | const int interintra = mbmi->ref_frame[1] == INTRA_FRAME; |
| 1286 | const int bsize_group = size_group_lookup[bsize]; |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1287 | aom_write_symbol(w, interintra, ec_ctx->interintra_cdf[bsize_group], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1288 | if (interintra) { |
Thomas Davies | 299ff04 | 2017-06-27 13:41:59 +0100 | [diff] [blame] | 1289 | aom_write_symbol(w, mbmi->interintra_mode, |
| 1290 | ec_ctx->interintra_mode_cdf[bsize_group], |
| 1291 | INTERINTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1292 | if (is_interintra_wedge_used(bsize)) { |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1293 | aom_write_symbol(w, mbmi->use_wedge_interintra, |
| 1294 | ec_ctx->wedge_interintra_cdf[bsize], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1295 | if (mbmi->use_wedge_interintra) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1296 | aom_write_literal(w, mbmi->interintra_wedge_index, |
| 1297 | get_wedge_bits_lookup(bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1298 | assert(mbmi->interintra_wedge_sign == 0); |
| 1299 | } |
| 1300 | } |
| 1301 | } |
| 1302 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1303 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1304 | if (mbmi->ref_frame[1] != INTRA_FRAME) write_motion_mode(cm, xd, mi, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1305 | |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1306 | #if CONFIG_JNT_COMP |
| 1307 | // First write idx to indicate current compound inter prediction mode group |
| 1308 | // Group A (0): jnt_comp, compound_average |
| 1309 | // Group B (1): interintra, compound_segment, wedge |
| 1310 | if (has_second_ref(mbmi)) { |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1311 | const int masked_compound_used = |
| 1312 | is_any_masked_compound_used(bsize) && cm->allow_masked_compound; |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1313 | |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1314 | if (masked_compound_used) { |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1315 | const int ctx_comp_group_idx = get_comp_group_idx_context(xd); |
| 1316 | aom_write_symbol(w, mbmi->comp_group_idx, |
| 1317 | ec_ctx->comp_group_idx_cdf[ctx_comp_group_idx], 2); |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1318 | } else { |
| 1319 | assert(mbmi->comp_group_idx == 0); |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1320 | } |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1321 | |
| 1322 | if (mbmi->comp_group_idx == 0) { |
| 1323 | if (mbmi->compound_idx) |
| 1324 | assert(mbmi->interinter_compound_type == COMPOUND_AVERAGE); |
| 1325 | |
| 1326 | const int comp_index_ctx = get_comp_index_context(cm, xd); |
| 1327 | aom_write_symbol(w, mbmi->compound_idx, |
| 1328 | ec_ctx->compound_index_cdf[comp_index_ctx], 2); |
| 1329 | } else { |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1330 | assert(cpi->common.reference_mode != SINGLE_REFERENCE && |
| 1331 | is_inter_compound_mode(mbmi->mode) && |
| 1332 | mbmi->motion_mode == SIMPLE_TRANSLATION); |
| 1333 | assert(masked_compound_used); |
| 1334 | // compound_segment, wedge |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1335 | assert(mbmi->interinter_compound_type == COMPOUND_WEDGE || |
| 1336 | mbmi->interinter_compound_type == COMPOUND_SEG); |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1337 | |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1338 | if (is_interinter_compound_used(COMPOUND_WEDGE, bsize)) |
| 1339 | aom_write_symbol(w, mbmi->interinter_compound_type - 1, |
| 1340 | ec_ctx->compound_type_cdf[bsize], |
| 1341 | COMPOUND_TYPES - 1); |
| 1342 | |
| 1343 | if (mbmi->interinter_compound_type == COMPOUND_WEDGE) { |
| 1344 | assert(is_interinter_compound_used(COMPOUND_WEDGE, bsize)); |
| 1345 | aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize)); |
| 1346 | aom_write_bit(w, mbmi->wedge_sign); |
| 1347 | } else { |
| 1348 | assert(mbmi->interinter_compound_type == COMPOUND_SEG); |
| 1349 | aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS); |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1350 | } |
| 1351 | } |
| 1352 | } |
| 1353 | #else // CONFIG_JNT_COMP |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1354 | if (cpi->common.reference_mode != SINGLE_REFERENCE && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1355 | is_inter_compound_mode(mbmi->mode) && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1356 | mbmi->motion_mode == SIMPLE_TRANSLATION && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1357 | is_any_masked_compound_used(bsize)) { |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1358 | if (cm->allow_masked_compound) { |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1359 | if (!is_interinter_compound_used(COMPOUND_WEDGE, bsize)) |
| 1360 | aom_write_bit(w, mbmi->interinter_compound_type == COMPOUND_AVERAGE); |
| 1361 | else |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1362 | aom_write_symbol(w, mbmi->interinter_compound_type, |
| 1363 | ec_ctx->compound_type_cdf[bsize], COMPOUND_TYPES); |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1364 | if (is_interinter_compound_used(COMPOUND_WEDGE, bsize) && |
| 1365 | mbmi->interinter_compound_type == COMPOUND_WEDGE) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1366 | aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize)); |
| 1367 | aom_write_bit(w, mbmi->wedge_sign); |
| 1368 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1369 | if (mbmi->interinter_compound_type == COMPOUND_SEG) { |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1370 | aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS); |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1371 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1372 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1373 | } |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1374 | #endif // CONFIG_JNT_COMP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1375 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 1376 | write_mb_interp_filter(cpi, xd, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1377 | } |
| 1378 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1379 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1380 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1381 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1384 | #if CONFIG_INTRABC |
| 1385 | static void write_intrabc_info(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 1386 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1387 | int enable_tx_size, aom_writer *w) { |
| 1388 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 1389 | int use_intrabc = is_intrabc_block(mbmi); |
| 1390 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 1391 | aom_write_symbol(w, use_intrabc, ec_ctx->intrabc_cdf, 2); |
| 1392 | if (use_intrabc) { |
| 1393 | assert(mbmi->mode == DC_PRED); |
| 1394 | assert(mbmi->uv_mode == UV_DC_PRED); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1395 | if ((enable_tx_size && !mbmi->skip)) { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1396 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1397 | const TX_SIZE max_tx_size = get_vartx_max_txsize(xd, bsize, 0); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1398 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1399 | const int bw = tx_size_wide_unit[max_tx_size]; |
| 1400 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1401 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1402 | int idx, idy; |
| 1403 | for (idy = 0; idy < height; idy += bh) { |
| 1404 | for (idx = 0; idx < width; idx += bw) { |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1405 | write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1406 | } |
| 1407 | } |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1408 | } else { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1409 | set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, mbmi->skip, xd); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1410 | } |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1411 | int_mv dv_ref = mbmi_ext->ref_mvs[INTRA_FRAME][0]; |
| 1412 | av1_encode_dv(w, &mbmi->mv[0].as_mv, &dv_ref.as_mv, &ec_ctx->ndvc); |
Sebastien Alaiwan | 3bac992 | 2017-11-02 12:34:41 +0100 | [diff] [blame] | 1413 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1414 | av1_write_tx_type(cm, xd, w); |
Sebastien Alaiwan | 3bac992 | 2017-11-02 12:34:41 +0100 | [diff] [blame] | 1415 | #endif // !CONFIG_TXK_SEL |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1416 | } |
| 1417 | } |
| 1418 | #endif // CONFIG_INTRABC |
| 1419 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1420 | static void write_mb_modes_kf(AV1_COMP *cpi, MACROBLOCKD *xd, |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1421 | #if CONFIG_INTRABC |
| 1422 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1423 | #endif // CONFIG_INTRABC |
Jingning Han | 36fe320 | 2017-02-20 22:31:49 -0800 | [diff] [blame] | 1424 | const int mi_row, const int mi_col, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1425 | aom_writer *w) { |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1426 | AV1_COMMON *const cm = &cpi->common; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1427 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1428 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1429 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1430 | const MODE_INFO *const mi = xd->mi[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1431 | const MODE_INFO *const above_mi = xd->above_mi; |
| 1432 | const MODE_INFO *const left_mi = xd->left_mi; |
| 1433 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1434 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1435 | const PREDICTION_MODE mode = mbmi->mode; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1436 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1437 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1438 | if (cm->preskip_segid && seg->update_map) |
| 1439 | write_segment_id(cpi, mbmi, w, seg, segp, mi_row, mi_col, 0); |
| 1440 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1441 | if (seg->update_map) write_segment_id(w, seg, segp, mbmi->segment_id); |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1442 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1443 | |
Alex Converse | 619576b | 2017-05-10 15:14:18 -0700 | [diff] [blame] | 1444 | const int skip = write_skip(cm, xd, mbmi->segment_id, mi, w); |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1445 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1446 | #if CONFIG_SPATIAL_SEGMENTATION |
| 1447 | if (!cm->preskip_segid && seg->update_map) |
| 1448 | write_segment_id(cpi, mbmi, w, seg, segp, mi_row, mi_col, skip); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 1449 | #endif |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1450 | |
| 1451 | write_cdef(cm, w, skip, mi_col, mi_row); |
| 1452 | |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1453 | if (cm->delta_q_present_flag) { |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 1454 | int super_block_upper_left = |
| 1455 | ((mi_row & (cm->seq_params.mib_size - 1)) == 0) && |
| 1456 | ((mi_col & (cm->seq_params.mib_size - 1)) == 0); |
| 1457 | if ((bsize != cm->seq_params.sb_size || skip == 0) && |
| 1458 | super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1459 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1460 | int reduced_delta_qindex = |
| 1461 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1462 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1463 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1464 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1465 | #if CONFIG_LOOPFILTER_LEVEL |
| 1466 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1467 | if (cm->delta_lf_multi) { |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 1468 | const int frame_lf_count = |
| 1469 | av1_num_planes(cm) > 1 ? FRAME_LF_COUNT : FRAME_LF_COUNT - 2; |
| 1470 | for (int lf_id = 0; lf_id < frame_lf_count; ++lf_id) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1471 | int reduced_delta_lflevel = |
| 1472 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1473 | cm->delta_lf_res; |
| 1474 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1475 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1476 | } |
| 1477 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1478 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1479 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1480 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1481 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1482 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1483 | } |
| 1484 | } |
| 1485 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1486 | if (cm->delta_lf_present_flag) { |
| 1487 | int reduced_delta_lflevel = |
| 1488 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1489 | cm->delta_lf_res; |
| 1490 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1491 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1492 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1493 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1494 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1495 | } |
| 1496 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1497 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1498 | int enable_tx_size = cm->tx_mode == TX_MODE_SELECT && |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 1499 | block_signals_txsize(bsize) && |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1500 | !xd->lossless[mbmi->segment_id]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1501 | |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1502 | #if CONFIG_INTRABC |
Hui Su | eb2fd5c | 2017-12-15 14:38:01 -0800 | [diff] [blame] | 1503 | if (av1_allow_intrabc(cm)) { |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1504 | write_intrabc_info(cm, xd, mbmi_ext, enable_tx_size, w); |
| 1505 | if (is_intrabc_block(mbmi)) return; |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1506 | } |
| 1507 | #endif // CONFIG_INTRABC |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1508 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1509 | if (enable_tx_size) write_selected_tx_size(cm, xd, w); |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1510 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1511 | if (cm->allow_screen_content_tools) |
| 1512 | set_txfm_ctxs(mbmi->tx_size, xd->n8_w, xd->n8_h, mbmi->skip, xd); |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1513 | #endif // CONFIG_INTRABC |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1514 | |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1515 | write_intra_mode_kf(ec_ctx, mi, above_mi, left_mi, mode, w); |
| 1516 | |
| 1517 | const int use_angle_delta = av1_use_angle_delta(bsize); |
Hui Su | 7fb9397 | 2018-02-20 21:18:03 -0800 | [diff] [blame] | 1518 | if (use_angle_delta && av1_is_directional_mode(mode)) { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1519 | write_angle_delta(w, mbmi->angle_delta[PLANE_TYPE_Y], |
| 1520 | ec_ctx->angle_delta_cdf[mode - V_PRED]); |
| 1521 | } |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1522 | |
David Barker | c2a680e | 2018-02-07 15:53:53 +0000 | [diff] [blame] | 1523 | #if CONFIG_MONO_VIDEO |
| 1524 | if (!cm->seq_params.monochrome && |
| 1525 | is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
| 1526 | xd->plane[1].subsampling_y)) |
| 1527 | #else |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1528 | if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
David Barker | c2a680e | 2018-02-07 15:53:53 +0000 | [diff] [blame] | 1529 | xd->plane[1].subsampling_y)) |
| 1530 | #endif // CONFIG_MONO_VIDEO |
| 1531 | { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1532 | const UV_PREDICTION_MODE uv_mode = mbmi->uv_mode; |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 1533 | #if !CONFIG_CFL |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1534 | write_intra_uv_mode(ec_ctx, uv_mode, mode, w); |
David Michael Barr | cb3a8ef | 2018-01-06 15:48:49 +0900 | [diff] [blame] | 1535 | #else |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1536 | write_intra_uv_mode(ec_ctx, uv_mode, mode, is_cfl_allowed(mbmi), w); |
| 1537 | if (uv_mode == UV_CFL_PRED) |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1538 | write_cfl_alphas(ec_ctx, mbmi->cfl_alpha_idx, mbmi->cfl_alpha_signs, w); |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1539 | #endif |
Hui Su | 7fb9397 | 2018-02-20 21:18:03 -0800 | [diff] [blame] | 1540 | if (use_angle_delta && av1_is_directional_mode(get_uv_mode(uv_mode))) { |
Luc Trudeau | 866da79 | 2018-02-12 11:13:34 -0500 | [diff] [blame] | 1541 | write_angle_delta(w, mbmi->angle_delta[PLANE_TYPE_UV], |
| 1542 | ec_ctx->angle_delta_cdf[uv_mode - V_PRED]); |
| 1543 | } |
Luc Trudeau | 2c31790 | 2017-04-28 11:06:50 -0400 | [diff] [blame] | 1544 | } |
Debargha Mukherjee | 6ea917e | 2017-10-19 09:31:29 -0700 | [diff] [blame] | 1545 | |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1546 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Hui Su | 8b618f6 | 2017-12-20 12:03:35 -0800 | [diff] [blame] | 1547 | write_palette_mode_info(cm, xd, mi, mi_row, mi_col, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1548 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 1549 | write_filter_intra_mode_info(xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1550 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1551 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1552 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1553 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1554 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1555 | } |
| 1556 | |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1557 | #if CONFIG_RD_DEBUG |
| 1558 | static void dump_mode_info(MODE_INFO *mi) { |
| 1559 | printf("\nmi->mbmi.mi_row == %d\n", mi->mbmi.mi_row); |
| 1560 | printf("&& mi->mbmi.mi_col == %d\n", mi->mbmi.mi_col); |
| 1561 | printf("&& mi->mbmi.sb_type == %d\n", mi->mbmi.sb_type); |
| 1562 | printf("&& mi->mbmi.tx_size == %d\n", mi->mbmi.tx_size); |
Jingning Han | 2fac8a4 | 2017-12-14 16:26:00 -0800 | [diff] [blame] | 1563 | printf("&& mi->mbmi.mode == %d\n", mi->mbmi.mode); |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1564 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1565 | static int rd_token_stats_mismatch(RD_STATS *rd_stats, TOKEN_STATS *token_stats, |
| 1566 | int plane) { |
| 1567 | if (rd_stats->txb_coeff_cost[plane] != token_stats->cost) { |
| 1568 | int r, c; |
| 1569 | printf("\nplane %d rd_stats->txb_coeff_cost %d token_stats->cost %d\n", |
| 1570 | plane, rd_stats->txb_coeff_cost[plane], token_stats->cost); |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1571 | printf("rd txb_coeff_cost_map\n"); |
| 1572 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1573 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1574 | printf("%d ", rd_stats->txb_coeff_cost_map[plane][r][c]); |
| 1575 | } |
| 1576 | printf("\n"); |
| 1577 | } |
| 1578 | |
| 1579 | printf("pack txb_coeff_cost_map\n"); |
| 1580 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1581 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1582 | printf("%d ", token_stats->txb_coeff_cost_map[r][c]); |
| 1583 | } |
| 1584 | printf("\n"); |
| 1585 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1586 | return 1; |
| 1587 | } |
| 1588 | return 0; |
| 1589 | } |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1590 | #endif |
| 1591 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1592 | #if ENC_MISMATCH_DEBUG |
| 1593 | static void enc_dump_logs(AV1_COMP *cpi, int mi_row, int mi_col) { |
| 1594 | AV1_COMMON *const cm = &cpi->common; |
| 1595 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1596 | MODE_INFO *m; |
| 1597 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1598 | m = xd->mi[0]; |
| 1599 | if (is_inter_block(&m->mbmi)) { |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1600 | #define FRAME_TO_CHECK 11 |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 1601 | if (cm->current_video_frame == FRAME_TO_CHECK && cm->show_frame == 1) { |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1602 | const MB_MODE_INFO *const mbmi = &m->mbmi; |
| 1603 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1604 | |
| 1605 | int_mv mv[2]; |
| 1606 | int is_comp_ref = has_second_ref(&m->mbmi); |
| 1607 | int ref; |
| 1608 | |
| 1609 | for (ref = 0; ref < 1 + is_comp_ref; ++ref) |
| 1610 | mv[ref].as_mv = m->mbmi.mv[ref].as_mv; |
| 1611 | |
| 1612 | if (!is_comp_ref) { |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1613 | mv[1].as_int = 0; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1614 | } |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1615 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1616 | MACROBLOCK *const x = &cpi->td.mb; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1617 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1618 | const int16_t mode_ctx = |
| 1619 | is_comp_ref ? mbmi_ext->compound_mode_context[mbmi->ref_frame[0]] |
| 1620 | : av1_mode_context_analyzer(mbmi_ext->mode_context, |
Luc Trudeau | 15a18e3 | 2017-12-13 14:15:25 -0500 | [diff] [blame] | 1621 | mbmi->ref_frame); |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1622 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1623 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
| 1624 | int16_t zeromv_ctx = -1; |
| 1625 | int16_t refmv_ctx = -1; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1626 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1627 | if (mbmi->mode != NEWMV) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1628 | zeromv_ctx = (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Jingning Han | 59b1263 | 2018-02-12 10:44:52 -0800 | [diff] [blame] | 1629 | if (mbmi->mode != GLOBALMV) |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1630 | refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1631 | } |
| 1632 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1633 | #if CONFIG_EXT_SKIP |
| 1634 | printf( |
| 1635 | "=== ENCODER ===: " |
| 1636 | "Frame=%d, (mi_row,mi_col)=(%d,%d), skip_mode=%d, mode=%d, bsize=%d, " |
| 1637 | "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, " |
| 1638 | "ref[1]=%d, motion_mode=%d, mode_ctx=%d, " |
| 1639 | "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d, tx_size=%d\n", |
| 1640 | cm->current_video_frame, mi_row, mi_col, mbmi->skip_mode, mbmi->mode, |
| 1641 | bsize, cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, |
| 1642 | mv[1].as_mv.row, mv[1].as_mv.col, mbmi->ref_frame[0], |
| 1643 | mbmi->ref_frame[1], mbmi->motion_mode, mode_ctx, newmv_ctx, |
| 1644 | zeromv_ctx, refmv_ctx, mbmi->tx_size); |
| 1645 | #else |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1646 | printf( |
| 1647 | "=== ENCODER ===: " |
| 1648 | "Frame=%d, (mi_row,mi_col)=(%d,%d), mode=%d, bsize=%d, " |
| 1649 | "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, " |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1650 | "ref[1]=%d, motion_mode=%d, mode_ctx=%d, " |
| 1651 | "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d, tx_size=%d\n", |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1652 | cm->current_video_frame, mi_row, mi_col, mbmi->mode, bsize, |
| 1653 | cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, mv[1].as_mv.row, |
| 1654 | mv[1].as_mv.col, mbmi->ref_frame[0], mbmi->ref_frame[1], |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1655 | mbmi->motion_mode, mode_ctx, newmv_ctx, zeromv_ctx, refmv_ctx, |
| 1656 | mbmi->tx_size); |
| 1657 | #endif // CONFIG_EXT_SKIP |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1658 | } |
| 1659 | } |
| 1660 | } |
| 1661 | #endif // ENC_MISMATCH_DEBUG |
| 1662 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1663 | static void write_mbmi_b(AV1_COMP *cpi, const TileInfo *const tile, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1664 | aom_writer *w, int mi_row, int mi_col) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1665 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1666 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1667 | MODE_INFO *m; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1668 | int bh, bw; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1669 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1670 | m = xd->mi[0]; |
| 1671 | |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 1672 | assert(m->mbmi.sb_type <= cm->seq_params.sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1673 | (m->mbmi.sb_type >= BLOCK_SIZES && m->mbmi.sb_type < BLOCK_SIZES_ALL)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1674 | |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 1675 | bh = mi_size_high[m->mbmi.sb_type]; |
| 1676 | bw = mi_size_wide[m->mbmi.sb_type]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1677 | |
| 1678 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1679 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1680 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1681 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1682 | cm->dependent_horz_tiles, |
| 1683 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1684 | cm->mi_rows, cm->mi_cols); |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 1685 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1686 | if (frame_is_intra_only(cm)) { |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1687 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1688 | if (cm->allow_screen_content_tools) { |
| 1689 | xd->above_txfm_context = |
| 1690 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1691 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1692 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
| 1693 | } |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1694 | #endif // CONFIG_INTRABC |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 1695 | write_mb_modes_kf(cpi, xd, |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1696 | #if CONFIG_INTRABC |
| 1697 | cpi->td.mb.mbmi_ext, |
| 1698 | #endif // CONFIG_INTRABC |
| 1699 | mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1700 | } else { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 1701 | xd->above_txfm_context = |
| 1702 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1703 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1704 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 1705 | // has_subpel_mv_component needs the ref frame buffers set up to look |
| 1706 | // up if they are scaled. has_subpel_mv_component is in turn needed by |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1707 | // write_switchable_interp_filter, which is called by pack_inter_mode_mvs. |
| 1708 | set_ref_ptrs(cm, xd, m->mbmi.ref_frame[0], m->mbmi.ref_frame[1]); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1709 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1710 | #if ENC_MISMATCH_DEBUG |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1711 | enc_dump_logs(cpi, mi_row, mi_col); |
| 1712 | #endif // ENC_MISMATCH_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1713 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1714 | pack_inter_mode_mvs(cpi, mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1715 | } |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1716 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1717 | |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1718 | static void write_inter_txb_coeff(AV1_COMMON *const cm, MACROBLOCK *const x, |
| 1719 | MB_MODE_INFO *const mbmi, aom_writer *w, |
| 1720 | const TOKENEXTRA **tok, |
| 1721 | const TOKENEXTRA *const tok_end, |
| 1722 | TOKEN_STATS *token_stats, const int row, |
| 1723 | const int col, int *block, const int plane) { |
| 1724 | MACROBLOCKD *const xd = &x->e_mbd; |
| 1725 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1726 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1727 | const BLOCK_SIZE bsizec = |
| 1728 | scale_chroma_bsize(bsize, pd->subsampling_x, pd->subsampling_y); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1729 | |
Debargha Mukherjee | 5d149e1 | 2017-12-14 12:49:51 -0800 | [diff] [blame] | 1730 | const BLOCK_SIZE plane_bsize = get_plane_block_size(bsizec, pd); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1731 | |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1732 | TX_SIZE max_tx_size = get_vartx_max_txsize( |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1733 | xd, plane_bsize, pd->subsampling_x || pd->subsampling_y); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1734 | const int step = |
| 1735 | tx_size_wide_unit[max_tx_size] * tx_size_high_unit[max_tx_size]; |
| 1736 | const int bkw = tx_size_wide_unit[max_tx_size]; |
| 1737 | const int bkh = tx_size_high_unit[max_tx_size]; |
| 1738 | |
| 1739 | const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, pd); |
| 1740 | int mu_blocks_wide = block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0]; |
| 1741 | int mu_blocks_high = block_size_high[max_unit_bsize] >> tx_size_high_log2[0]; |
| 1742 | |
| 1743 | int blk_row, blk_col; |
| 1744 | |
| 1745 | const int num_4x4_w = block_size_wide[plane_bsize] >> tx_size_wide_log2[0]; |
| 1746 | const int num_4x4_h = block_size_high[plane_bsize] >> tx_size_wide_log2[0]; |
| 1747 | |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1748 | const int unit_height = |
| 1749 | AOMMIN(mu_blocks_high + (row >> pd->subsampling_y), num_4x4_h); |
| 1750 | const int unit_width = |
| 1751 | AOMMIN(mu_blocks_wide + (col >> pd->subsampling_x), num_4x4_w); |
| 1752 | for (blk_row = row >> pd->subsampling_y; blk_row < unit_height; |
| 1753 | blk_row += bkh) { |
| 1754 | for (blk_col = col >> pd->subsampling_x; blk_col < unit_width; |
| 1755 | blk_col += bkw) { |
Sebastien Alaiwan | cad5ebc | 2018-02-20 16:18:20 +0100 | [diff] [blame] | 1756 | pack_txb_tokens(w, cm, x, tok, tok_end, xd, mbmi, plane, plane_bsize, |
| 1757 | cm->bit_depth, *block, blk_row, blk_col, max_tx_size, |
| 1758 | token_stats); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1759 | *block += step; |
| 1760 | } |
| 1761 | } |
| 1762 | } |
| 1763 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1764 | static void write_tokens_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 1765 | aom_writer *w, const TOKENEXTRA **tok, |
| 1766 | const TOKENEXTRA *const tok_end, int mi_row, |
| 1767 | int mi_col) { |
| 1768 | AV1_COMMON *const cm = &cpi->common; |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 1769 | const int num_planes = av1_num_planes(cm); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1770 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1771 | const int mi_offset = mi_row * cm->mi_stride + mi_col; |
| 1772 | MODE_INFO *const m = *(cm->mi_grid_visible + mi_offset); |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1773 | MB_MODE_INFO *const mbmi = &m->mbmi; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1774 | int plane; |
| 1775 | int bh, bw; |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 1776 | MACROBLOCK *const x = &cpi->td.mb; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1777 | (void)tok; |
| 1778 | (void)tok_end; |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1779 | xd->mi = cm->mi_grid_visible + mi_offset; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1780 | |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 1781 | assert(mbmi->sb_type <= cm->seq_params.sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1782 | (mbmi->sb_type >= BLOCK_SIZES && mbmi->sb_type < BLOCK_SIZES_ALL)); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1783 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1784 | bh = mi_size_high[mbmi->sb_type]; |
| 1785 | bw = mi_size_wide[mbmi->sb_type]; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1786 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1787 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1788 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1789 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1790 | cm->dependent_horz_tiles, |
| 1791 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1792 | cm->mi_rows, cm->mi_cols); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1793 | |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1794 | for (plane = 0; plane < AOMMIN(2, num_planes); ++plane) { |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1795 | const uint8_t palette_size_plane = |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1796 | mbmi->palette_mode_info.palette_size[plane]; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1797 | #if CONFIG_EXT_SKIP |
| 1798 | assert(!mbmi->skip_mode || !palette_size_plane); |
| 1799 | #endif // CONFIG_EXT_SKIP |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1800 | if (palette_size_plane > 0) { |
Alex Converse | ed37d01 | 2017-04-24 11:15:24 -0700 | [diff] [blame] | 1801 | #if CONFIG_INTRABC |
| 1802 | assert(mbmi->use_intrabc == 0); |
| 1803 | #endif |
Hui Su | 8b618f6 | 2017-12-20 12:03:35 -0800 | [diff] [blame] | 1804 | assert(av1_allow_palette(cm->allow_screen_content_tools, mbmi->sb_type)); |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1805 | int rows, cols; |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1806 | av1_get_block_dimensions(mbmi->sb_type, plane, xd, NULL, NULL, &rows, |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1807 | &cols); |
| 1808 | assert(*tok < tok_end); |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 1809 | pack_map_tokens(w, tok, palette_size_plane, rows * cols); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1810 | } |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1811 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1812 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1813 | if (!mbmi->skip) { |
Jingning Han | ad54a98 | 2018-01-12 14:40:29 -0800 | [diff] [blame] | 1814 | if (!is_inter_block(mbmi)) |
| 1815 | av1_write_coeffs_mb(cm, x, mi_row, mi_col, w, mbmi->sb_type); |
| 1816 | |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1817 | if (is_inter_block(mbmi)) { |
| 1818 | int block[MAX_MB_PLANE] = { 0 }; |
| 1819 | const struct macroblockd_plane *const y_pd = &xd->plane[0]; |
| 1820 | const BLOCK_SIZE plane_bsize = get_plane_block_size(mbmi->sb_type, y_pd); |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 1821 | const int num_4x4_w = |
| 1822 | block_size_wide[plane_bsize] >> tx_size_wide_log2[0]; |
| 1823 | const int num_4x4_h = |
| 1824 | block_size_high[plane_bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1825 | int row, col; |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1826 | TOKEN_STATS token_stats; |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1827 | init_token_stats(&token_stats); |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1828 | |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1829 | const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, y_pd); |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 1830 | int mu_blocks_wide = |
| 1831 | block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0]; |
| 1832 | int mu_blocks_high = |
| 1833 | block_size_high[max_unit_bsize] >> tx_size_high_log2[0]; |
| 1834 | |
| 1835 | mu_blocks_wide = AOMMIN(num_4x4_w, mu_blocks_wide); |
| 1836 | mu_blocks_high = AOMMIN(num_4x4_h, mu_blocks_high); |
| 1837 | |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1838 | for (row = 0; row < num_4x4_h; row += mu_blocks_high) { |
| 1839 | for (col = 0; col < num_4x4_w; col += mu_blocks_wide) { |
| 1840 | for (plane = 0; plane < num_planes && is_inter_block(mbmi); ++plane) { |
| 1841 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 1842 | if (!is_chroma_reference(mi_row, mi_col, mbmi->sb_type, |
| 1843 | pd->subsampling_x, pd->subsampling_y)) { |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1844 | continue; |
| 1845 | } |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1846 | write_inter_txb_coeff(cm, x, mbmi, w, tok, tok_end, &token_stats, |
Jingning Han | cdbc47f | 2018-01-12 16:21:07 -0800 | [diff] [blame] | 1847 | row, col, &block[plane], plane); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1848 | } |
| 1849 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1850 | #if CONFIG_RD_DEBUG |
Angie Chiang | 3963d63 | 2016-11-10 18:41:40 -0800 | [diff] [blame] | 1851 | if (mbmi->sb_type >= BLOCK_8X8 && |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1852 | rd_token_stats_mismatch(&mbmi->rd_stats, &token_stats, plane)) { |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1853 | dump_mode_info(m); |
| 1854 | assert(0); |
| 1855 | } |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 1856 | #endif // CONFIG_RD_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1857 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1858 | } |
| 1859 | } |
| 1860 | } |
| 1861 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1862 | static void write_modes_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 1863 | aom_writer *w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1864 | const TOKENEXTRA *const tok_end, int mi_row, |
| 1865 | int mi_col) { |
| 1866 | write_mbmi_b(cpi, tile, w, mi_row, mi_col); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 1867 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1868 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1869 | } |
| 1870 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1871 | static void write_partition(const AV1_COMMON *const cm, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1872 | const MACROBLOCKD *const xd, int hbs, int mi_row, |
| 1873 | int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1874 | aom_writer *w) { |
Alex Converse | 55c6bde | 2017-01-12 15:55:31 -0800 | [diff] [blame] | 1875 | const int is_partition_point = bsize >= BLOCK_8X8; |
Thomas Davies | c2ec0e4 | 2017-01-11 16:27:27 +0000 | [diff] [blame] | 1876 | |
Jingning Han | bf9c6b7 | 2016-12-14 14:50:45 -0800 | [diff] [blame] | 1877 | if (!is_partition_point) return; |
| 1878 | |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 1879 | const int has_rows = (mi_row + hbs) < cm->mi_rows; |
| 1880 | const int has_cols = (mi_col + hbs) < cm->mi_cols; |
| 1881 | const int ctx = partition_plane_context(xd, mi_row, mi_col, bsize); |
| 1882 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 1883 | |
| 1884 | if (!has_rows && !has_cols) { |
| 1885 | assert(p == PARTITION_SPLIT); |
| 1886 | return; |
| 1887 | } |
| 1888 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1889 | if (has_rows && has_cols) { |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 1890 | aom_write_symbol(w, p, ec_ctx->partition_cdf[ctx], |
| 1891 | partition_cdf_length(bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1892 | } else if (!has_rows && has_cols) { |
| 1893 | assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 1894 | assert(bsize > BLOCK_8X8); |
| 1895 | aom_cdf_prob cdf[2]; |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 1896 | partition_gather_vert_alike(cdf, ec_ctx->partition_cdf[ctx], bsize); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 1897 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 1898 | } else { |
| 1899 | assert(has_rows && !has_cols); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1900 | assert(p == PARTITION_SPLIT || p == PARTITION_VERT); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 1901 | assert(bsize > BLOCK_8X8); |
| 1902 | aom_cdf_prob cdf[2]; |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 1903 | partition_gather_horz_alike(cdf, ec_ctx->partition_cdf[ctx], bsize); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 1904 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1905 | } |
| 1906 | } |
| 1907 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1908 | static void write_modes_sb(AV1_COMP *const cpi, const TileInfo *const tile, |
| 1909 | aom_writer *const w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1910 | const TOKENEXTRA *const tok_end, int mi_row, |
| 1911 | int mi_col, BLOCK_SIZE bsize) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1912 | const AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1913 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 1914 | const int hbs = mi_size_wide[bsize] / 2; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1915 | #if CONFIG_EXT_PARTITION_TYPES |
| 1916 | const int quarter_step = mi_size_wide[bsize] / 4; |
| 1917 | int i; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 1918 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1919 | const PARTITION_TYPE partition = get_partition(cm, mi_row, mi_col, bsize); |
| 1920 | const BLOCK_SIZE subsize = get_subsize(bsize, partition); |
Jingning Han | 5226184 | 2016-12-14 12:17:49 -0800 | [diff] [blame] | 1921 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1922 | if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return; |
| 1923 | |
Imdad Sardharwalla | 7d2e5c9 | 2018-01-05 18:41:00 +0000 | [diff] [blame] | 1924 | #if CONFIG_LOOP_RESTORATION |
Debargha Mukherjee | a78c8f5 | 2018-01-31 11:14:38 -0800 | [diff] [blame] | 1925 | const int num_planes = av1_num_planes(cm); |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 1926 | for (int plane = 0; plane < num_planes; ++plane) { |
Imdad Sardharwalla | 7d2e5c9 | 2018-01-05 18:41:00 +0000 | [diff] [blame] | 1927 | int rcol0, rcol1, rrow0, rrow1, tile_tl_idx; |
| 1928 | if (av1_loop_restoration_corners_in_sb(cm, plane, mi_row, mi_col, bsize, |
| 1929 | &rcol0, &rcol1, &rrow0, &rrow1, |
| 1930 | &tile_tl_idx)) { |
| 1931 | const int rstride = cm->rst_info[plane].horz_units_per_tile; |
| 1932 | for (int rrow = rrow0; rrow < rrow1; ++rrow) { |
| 1933 | for (int rcol = rcol0; rcol < rcol1; ++rcol) { |
| 1934 | const int rtile_idx = tile_tl_idx + rcol + rrow * rstride; |
| 1935 | const RestorationUnitInfo *rui = |
| 1936 | &cm->rst_info[plane].unit_info[rtile_idx]; |
| 1937 | loop_restoration_write_sb_coeffs(cm, xd, rui, w, plane); |
| 1938 | } |
| 1939 | } |
| 1940 | } |
| 1941 | } |
| 1942 | #endif |
| 1943 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1944 | write_partition(cm, xd, hbs, mi_row, mi_col, partition, bsize, w); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1945 | switch (partition) { |
| 1946 | case PARTITION_NONE: |
| 1947 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1948 | break; |
| 1949 | case PARTITION_HORZ: |
| 1950 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1951 | if (mi_row + hbs < cm->mi_rows) |
| 1952 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 1953 | break; |
| 1954 | case PARTITION_VERT: |
| 1955 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1956 | if (mi_col + hbs < cm->mi_cols) |
| 1957 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 1958 | break; |
| 1959 | case PARTITION_SPLIT: |
| 1960 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); |
| 1961 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, subsize); |
| 1962 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, subsize); |
| 1963 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs, |
| 1964 | subsize); |
| 1965 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1966 | #if CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1967 | case PARTITION_HORZ_A: |
| 1968 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1969 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 1970 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 1971 | break; |
| 1972 | case PARTITION_HORZ_B: |
| 1973 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1974 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 1975 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 1976 | break; |
| 1977 | case PARTITION_VERT_A: |
| 1978 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1979 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 1980 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 1981 | break; |
| 1982 | case PARTITION_VERT_B: |
| 1983 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 1984 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 1985 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 1986 | break; |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1987 | case PARTITION_HORZ_4: |
| 1988 | for (i = 0; i < 4; ++i) { |
| 1989 | int this_mi_row = mi_row + i * quarter_step; |
| 1990 | if (i > 0 && this_mi_row >= cm->mi_rows) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1991 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1992 | write_modes_b(cpi, tile, w, tok, tok_end, this_mi_row, mi_col); |
| 1993 | } |
| 1994 | break; |
| 1995 | case PARTITION_VERT_4: |
| 1996 | for (i = 0; i < 4; ++i) { |
| 1997 | int this_mi_col = mi_col + i * quarter_step; |
| 1998 | if (i > 0 && this_mi_col >= cm->mi_cols) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1999 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2000 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, this_mi_col); |
| 2001 | } |
| 2002 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2003 | #endif // CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2004 | default: assert(0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2005 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2006 | |
| 2007 | // update partition context |
| 2008 | #if CONFIG_EXT_PARTITION_TYPES |
| 2009 | update_ext_partition_context(xd, mi_row, mi_col, subsize, bsize, partition); |
| 2010 | #else |
| 2011 | if (bsize >= BLOCK_8X8 && |
| 2012 | (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) |
| 2013 | update_partition_context(xd, mi_row, mi_col, subsize, bsize); |
David Barker | f8935c9 | 2016-10-26 14:54:06 +0100 | [diff] [blame] | 2014 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2015 | } |
| 2016 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2017 | static void write_modes(AV1_COMP *const cpi, const TileInfo *const tile, |
| 2018 | aom_writer *const w, const TOKENEXTRA **tok, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2019 | const TOKENEXTRA *const tok_end) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2020 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2021 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 2022 | const int mi_row_start = tile->mi_row_start; |
| 2023 | const int mi_row_end = tile->mi_row_end; |
| 2024 | const int mi_col_start = tile->mi_col_start; |
| 2025 | const int mi_col_end = tile->mi_col_end; |
| 2026 | int mi_row, mi_col; |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2027 | |
| 2028 | #if CONFIG_DEPENDENT_HORZTILES |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 2029 | if (!cm->dependent_horz_tiles || mi_row_start == 0 || |
| 2030 | tile->tg_horz_boundary) { |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2031 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
| 2032 | } |
| 2033 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2034 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2035 | #endif |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2036 | if (cpi->common.delta_q_present_flag) { |
| 2037 | xd->prev_qindex = cpi->common.base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2038 | #if CONFIG_EXT_DELTA_Q |
| 2039 | if (cpi->common.delta_lf_present_flag) { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 2040 | #if CONFIG_LOOPFILTER_LEVEL |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 2041 | const int frame_lf_count = |
| 2042 | av1_num_planes(cm) > 1 ? FRAME_LF_COUNT : FRAME_LF_COUNT - 2; |
| 2043 | for (int lf_id = 0; lf_id < frame_lf_count; ++lf_id) |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 2044 | xd->prev_delta_lf[lf_id] = 0; |
| 2045 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2046 | xd->prev_delta_lf_from_base = 0; |
| 2047 | } |
| 2048 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2049 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2050 | |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2051 | for (mi_row = mi_row_start; mi_row < mi_row_end; |
| 2052 | mi_row += cm->seq_params.mib_size) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2053 | av1_zero_left_context(xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2054 | |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2055 | for (mi_col = mi_col_start; mi_col < mi_col_end; |
| 2056 | mi_col += cm->seq_params.mib_size) { |
| 2057 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, |
| 2058 | cm->seq_params.sb_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2059 | } |
| 2060 | } |
| 2061 | } |
| 2062 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2063 | #if CONFIG_LOOP_RESTORATION |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2064 | static void encode_restoration_mode(AV1_COMMON *cm, |
| 2065 | struct aom_write_bit_buffer *wb) { |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2066 | const int num_planes = av1_num_planes(cm); |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2067 | #if CONFIG_INTRABC |
Imdad Sardharwalla | b1dce0a | 2018-02-12 16:43:59 +0000 | [diff] [blame] | 2068 | |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2069 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
| 2070 | #endif // CONFIG_INTRABC |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2071 | int all_none = 1, chroma_none = 1; |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2072 | for (int p = 0; p < num_planes; ++p) { |
Rupert Swarbrick | 4596deb | 2017-11-07 18:06:38 +0000 | [diff] [blame] | 2073 | RestorationInfo *rsi = &cm->rst_info[p]; |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2074 | if (rsi->frame_restoration_type != RESTORE_NONE) { |
| 2075 | all_none = 0; |
| 2076 | chroma_none &= p == 0; |
| 2077 | } |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2078 | switch (rsi->frame_restoration_type) { |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2079 | case RESTORE_NONE: |
| 2080 | aom_wb_write_bit(wb, 0); |
| 2081 | aom_wb_write_bit(wb, 0); |
| 2082 | break; |
Debargha Mukherjee | d23ceea | 2017-05-18 20:33:52 -0700 | [diff] [blame] | 2083 | case RESTORE_WIENER: |
| 2084 | aom_wb_write_bit(wb, 1); |
| 2085 | aom_wb_write_bit(wb, 0); |
| 2086 | break; |
| 2087 | case RESTORE_SGRPROJ: |
| 2088 | aom_wb_write_bit(wb, 1); |
| 2089 | aom_wb_write_bit(wb, 1); |
| 2090 | break; |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2091 | case RESTORE_SWITCHABLE: |
| 2092 | aom_wb_write_bit(wb, 0); |
| 2093 | aom_wb_write_bit(wb, 1); |
| 2094 | break; |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2095 | default: assert(0); |
| 2096 | } |
| 2097 | } |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2098 | if (!all_none) { |
Yue Chen | 8628ae4 | 2018-02-13 11:05:20 -0800 | [diff] [blame] | 2099 | #if CONFIG_EXT_PARTITION |
Imdad Sardharwalla | b1dce0a | 2018-02-12 16:43:59 +0000 | [diff] [blame] | 2100 | assert(cm->seq_params.sb_size == BLOCK_64X64 || |
| 2101 | cm->seq_params.sb_size == BLOCK_128X128); |
| 2102 | const int sb_size = cm->seq_params.sb_size == BLOCK_128X128 ? 128 : 64; |
Yue Chen | 8628ae4 | 2018-02-13 11:05:20 -0800 | [diff] [blame] | 2103 | #else |
| 2104 | assert(cm->seq_params.sb_size == BLOCK_64X64); |
| 2105 | const int sb_size = 64; |
| 2106 | #endif |
Imdad Sardharwalla | b1dce0a | 2018-02-12 16:43:59 +0000 | [diff] [blame] | 2107 | |
Rupert Swarbrick | 4596deb | 2017-11-07 18:06:38 +0000 | [diff] [blame] | 2108 | RestorationInfo *rsi = &cm->rst_info[0]; |
Imdad Sardharwalla | b1dce0a | 2018-02-12 16:43:59 +0000 | [diff] [blame] | 2109 | |
| 2110 | assert(rsi->restoration_unit_size >= sb_size); |
| 2111 | assert(RESTORATION_TILESIZE_MAX == 256); |
| 2112 | |
| 2113 | if (sb_size == 64) { |
| 2114 | aom_wb_write_bit(wb, rsi->restoration_unit_size > 64); |
| 2115 | } |
| 2116 | if (rsi->restoration_unit_size > 64) { |
| 2117 | aom_wb_write_bit(wb, rsi->restoration_unit_size > 128); |
Debargha Mukherjee | 1008c1e | 2017-03-06 19:18:43 -0800 | [diff] [blame] | 2118 | } |
| 2119 | } |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2120 | |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2121 | if (num_planes > 1) { |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2122 | int s = AOMMIN(cm->subsampling_x, cm->subsampling_y); |
| 2123 | if (s && !chroma_none) { |
Johann | b0ef6ff | 2018-02-08 14:32:21 -0800 | [diff] [blame] | 2124 | aom_wb_write_bit(wb, cm->rst_info[1].restoration_unit_size != |
| 2125 | cm->rst_info[0].restoration_unit_size); |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2126 | assert(cm->rst_info[1].restoration_unit_size == |
| 2127 | cm->rst_info[0].restoration_unit_size || |
| 2128 | cm->rst_info[1].restoration_unit_size == |
| 2129 | (cm->rst_info[0].restoration_unit_size >> s)); |
| 2130 | assert(cm->rst_info[2].restoration_unit_size == |
| 2131 | cm->rst_info[1].restoration_unit_size); |
| 2132 | } else if (!s) { |
| 2133 | assert(cm->rst_info[1].restoration_unit_size == |
| 2134 | cm->rst_info[0].restoration_unit_size); |
| 2135 | assert(cm->rst_info[2].restoration_unit_size == |
| 2136 | cm->rst_info[1].restoration_unit_size); |
| 2137 | } |
Debargha Mukherjee | 84f567c | 2017-06-21 10:53:59 -0700 | [diff] [blame] | 2138 | } |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2139 | } |
| 2140 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2141 | static void write_wiener_filter(int wiener_win, const WienerInfo *wiener_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2142 | WienerInfo *ref_wiener_info, aom_writer *wb) { |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2143 | if (wiener_win == WIENER_WIN) |
| 2144 | aom_write_primitive_refsubexpfin( |
| 2145 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2146 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2147 | ref_wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2148 | wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2149 | else |
| 2150 | assert(wiener_info->vfilter[0] == 0 && |
| 2151 | wiener_info->vfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2152 | aom_write_primitive_refsubexpfin( |
| 2153 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2154 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2155 | ref_wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2156 | wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2157 | aom_write_primitive_refsubexpfin( |
| 2158 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2159 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2160 | ref_wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2161 | wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV); |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2162 | if (wiener_win == WIENER_WIN) |
| 2163 | aom_write_primitive_refsubexpfin( |
| 2164 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2165 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2166 | ref_wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2167 | wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2168 | else |
| 2169 | assert(wiener_info->hfilter[0] == 0 && |
| 2170 | wiener_info->hfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2171 | aom_write_primitive_refsubexpfin( |
| 2172 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2173 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2174 | ref_wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2175 | wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2176 | aom_write_primitive_refsubexpfin( |
| 2177 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2178 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2179 | ref_wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2180 | wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV); |
| 2181 | memcpy(ref_wiener_info, wiener_info, sizeof(*wiener_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2182 | } |
| 2183 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2184 | static void write_sgrproj_filter(const SgrprojInfo *sgrproj_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2185 | SgrprojInfo *ref_sgrproj_info, |
| 2186 | aom_writer *wb) { |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2187 | aom_write_literal(wb, sgrproj_info->ep, SGRPROJ_PARAMS_BITS); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2188 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX0 - SGRPROJ_PRJ_MIN0 + 1, |
| 2189 | SGRPROJ_PRJ_SUBEXP_K, |
| 2190 | ref_sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0, |
| 2191 | sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0); |
| 2192 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX1 - SGRPROJ_PRJ_MIN1 + 1, |
| 2193 | SGRPROJ_PRJ_SUBEXP_K, |
| 2194 | ref_sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1, |
| 2195 | sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1); |
| 2196 | memcpy(ref_sgrproj_info, sgrproj_info, sizeof(*sgrproj_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2197 | } |
| 2198 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2199 | static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm, |
| 2200 | MACROBLOCKD *xd, |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2201 | const RestorationUnitInfo *rui, |
| 2202 | aom_writer *const w, int plane) { |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2203 | const RestorationInfo *rsi = cm->rst_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2204 | RestorationType frame_rtype = rsi->frame_restoration_type; |
| 2205 | if (frame_rtype == RESTORE_NONE) return; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2206 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2207 | const int wiener_win = (plane > 0) ? WIENER_WIN_CHROMA : WIENER_WIN; |
| 2208 | WienerInfo *wiener_info = xd->wiener_info + plane; |
| 2209 | SgrprojInfo *sgrproj_info = xd->sgrproj_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2210 | RestorationType unit_rtype = rui->restoration_type; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2211 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2212 | if (frame_rtype == RESTORE_SWITCHABLE) { |
| 2213 | aom_write_symbol(w, unit_rtype, xd->tile_ctx->switchable_restore_cdf, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2214 | RESTORE_SWITCHABLE_TYPES); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2215 | switch (unit_rtype) { |
| 2216 | case RESTORE_WIENER: |
| 2217 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
| 2218 | break; |
| 2219 | case RESTORE_SGRPROJ: |
| 2220 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
| 2221 | break; |
| 2222 | default: assert(unit_rtype == RESTORE_NONE); break; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2223 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2224 | } else if (frame_rtype == RESTORE_WIENER) { |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2225 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2226 | xd->tile_ctx->wiener_restore_cdf, 2); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2227 | if (unit_rtype != RESTORE_NONE) { |
| 2228 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2229 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2230 | } else if (frame_rtype == RESTORE_SGRPROJ) { |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2231 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2232 | xd->tile_ctx->sgrproj_restore_cdf, 2); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2233 | if (unit_rtype != RESTORE_NONE) { |
| 2234 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2235 | } |
| 2236 | } |
| 2237 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2238 | #endif // CONFIG_LOOP_RESTORATION |
| 2239 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2240 | static void encode_loopfilter(AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2241 | const int num_planes = av1_num_planes(cm); |
Cheng Chen | 07365c9 | 2017-12-21 16:37:33 -0800 | [diff] [blame] | 2242 | #if CONFIG_INTRABC |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2243 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
Cheng Chen | 07365c9 | 2017-12-21 16:37:33 -0800 | [diff] [blame] | 2244 | #endif // CONFIG_INTRABC |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2245 | int i; |
| 2246 | struct loopfilter *lf = &cm->lf; |
| 2247 | |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2248 | // Encode the loop filter level and type |
Cheng Chen | 13fc819 | 2017-08-19 11:49:28 -0700 | [diff] [blame] | 2249 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 76224b0 | 2017-12-15 12:21:01 -0800 | [diff] [blame] | 2250 | aom_wb_write_literal(wb, lf->filter_level[0], 6); |
| 2251 | aom_wb_write_literal(wb, lf->filter_level[1], 6); |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2252 | if (num_planes > 1) { |
Cheng Chen | 76224b0 | 2017-12-15 12:21:01 -0800 | [diff] [blame] | 2253 | if (lf->filter_level[0] || lf->filter_level[1]) { |
| 2254 | aom_wb_write_literal(wb, lf->filter_level_u, 6); |
| 2255 | aom_wb_write_literal(wb, lf->filter_level_v, 6); |
Cheng Chen | 765e34e | 2017-12-11 11:43:35 -0800 | [diff] [blame] | 2256 | } |
Cheng Chen | e94df5c | 2017-07-19 17:25:33 -0700 | [diff] [blame] | 2257 | } |
Cheng Chen | a734551 | 2017-12-05 15:36:05 -0800 | [diff] [blame] | 2258 | #else |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2259 | aom_wb_write_literal(wb, lf->filter_level, 6); |
Cheng Chen | a734551 | 2017-12-05 15:36:05 -0800 | [diff] [blame] | 2260 | #endif // CONFIG_LOOPFILTER_LEVEL |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2261 | aom_wb_write_literal(wb, lf->sharpness_level, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2262 | |
| 2263 | // Write out loop filter deltas applied at the MB level based on mode or |
| 2264 | // ref frame (if they are enabled). |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2265 | aom_wb_write_bit(wb, lf->mode_ref_delta_enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2266 | |
| 2267 | if (lf->mode_ref_delta_enabled) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2268 | aom_wb_write_bit(wb, lf->mode_ref_delta_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2269 | if (lf->mode_ref_delta_update) { |
| 2270 | for (i = 0; i < TOTAL_REFS_PER_FRAME; i++) { |
| 2271 | const int delta = lf->ref_deltas[i]; |
| 2272 | const int changed = delta != lf->last_ref_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2273 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2274 | if (changed) { |
| 2275 | lf->last_ref_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2276 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2277 | } |
| 2278 | } |
| 2279 | |
| 2280 | for (i = 0; i < MAX_MODE_LF_DELTAS; i++) { |
| 2281 | const int delta = lf->mode_deltas[i]; |
| 2282 | const int changed = delta != lf->last_mode_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2283 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2284 | if (changed) { |
| 2285 | lf->last_mode_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2286 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2287 | } |
| 2288 | } |
| 2289 | } |
| 2290 | } |
| 2291 | } |
| 2292 | |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 2293 | static void encode_cdef(const AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2294 | const int num_planes = av1_num_planes(cm); |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2295 | #if CONFIG_INTRABC |
| 2296 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
| 2297 | #endif // CONFIG_INTRABC |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2298 | int i; |
Steinar Midtskogen | 5978212 | 2017-07-20 08:49:43 +0200 | [diff] [blame] | 2299 | aom_wb_write_literal(wb, cm->cdef_pri_damping - 3, 2); |
| 2300 | assert(cm->cdef_pri_damping == cm->cdef_sec_damping); |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2301 | aom_wb_write_literal(wb, cm->cdef_bits, 2); |
| 2302 | for (i = 0; i < cm->nb_cdef_strengths; i++) { |
| 2303 | aom_wb_write_literal(wb, cm->cdef_strengths[i], CDEF_STRENGTH_BITS); |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2304 | if (num_planes > 1) |
Steinar Midtskogen | 1c1161f | 2017-09-08 15:03:51 +0200 | [diff] [blame] | 2305 | aom_wb_write_literal(wb, cm->cdef_uv_strengths[i], CDEF_STRENGTH_BITS); |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2306 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2307 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2308 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2309 | static void write_delta_q(struct aom_write_bit_buffer *wb, int delta_q) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2310 | if (delta_q != 0) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2311 | aom_wb_write_bit(wb, 1); |
| 2312 | aom_wb_write_inv_signed_literal(wb, delta_q, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2313 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2314 | aom_wb_write_bit(wb, 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2315 | } |
| 2316 | } |
| 2317 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2318 | static void encode_quantization(const AV1_COMMON *const cm, |
| 2319 | struct aom_write_bit_buffer *wb) { |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2320 | const int num_planes = av1_num_planes(cm); |
| 2321 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2322 | aom_wb_write_literal(wb, cm->base_qindex, QINDEX_BITS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2323 | write_delta_q(wb, cm->y_dc_delta_q); |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 2324 | if (num_planes > 1) { |
Debargha Mukherjee | 18f4fb2 | 2017-12-14 14:26:27 -0800 | [diff] [blame] | 2325 | int diff_uv_delta = (cm->u_dc_delta_q != cm->v_dc_delta_q) || |
| 2326 | (cm->u_ac_delta_q != cm->v_ac_delta_q); |
Debargha Mukherjee | 18f4fb2 | 2017-12-14 14:26:27 -0800 | [diff] [blame] | 2327 | if (cm->separate_uv_delta_q) aom_wb_write_bit(wb, diff_uv_delta); |
Debargha Mukherjee | 18f4fb2 | 2017-12-14 14:26:27 -0800 | [diff] [blame] | 2328 | write_delta_q(wb, cm->u_dc_delta_q); |
| 2329 | write_delta_q(wb, cm->u_ac_delta_q); |
| 2330 | if (diff_uv_delta) { |
| 2331 | write_delta_q(wb, cm->v_dc_delta_q); |
| 2332 | write_delta_q(wb, cm->v_ac_delta_q); |
| 2333 | } |
Yaowu Xu | 6fc47e5 | 2017-12-04 15:07:48 -0800 | [diff] [blame] | 2334 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2335 | #if CONFIG_AOM_QM |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2336 | aom_wb_write_bit(wb, cm->using_qmatrix); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2337 | if (cm->using_qmatrix) { |
Yaowu Xu | f7a1242 | 2018-01-31 15:29:20 -0800 | [diff] [blame] | 2338 | #if CONFIG_AOM_QM_EXT |
| 2339 | aom_wb_write_literal(wb, cm->qm_y, QM_LEVEL_BITS); |
| 2340 | aom_wb_write_literal(wb, cm->qm_u, QM_LEVEL_BITS); |
Yaowu Xu | f7a1242 | 2018-01-31 15:29:20 -0800 | [diff] [blame] | 2341 | if (!cm->separate_uv_delta_q) |
| 2342 | assert(cm->qm_u == cm->qm_v); |
| 2343 | else |
Yaowu Xu | f7a1242 | 2018-01-31 15:29:20 -0800 | [diff] [blame] | 2344 | aom_wb_write_literal(wb, cm->qm_v, QM_LEVEL_BITS); |
| 2345 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2346 | aom_wb_write_literal(wb, cm->min_qmlevel, QM_LEVEL_BITS); |
| 2347 | aom_wb_write_literal(wb, cm->max_qmlevel, QM_LEVEL_BITS); |
Yaowu Xu | f7a1242 | 2018-01-31 15:29:20 -0800 | [diff] [blame] | 2348 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2349 | } |
| 2350 | #endif |
| 2351 | } |
| 2352 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2353 | static void encode_segmentation(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 2354 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2355 | int i, j; |
| 2356 | const struct segmentation *seg = &cm->seg; |
| 2357 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2358 | aom_wb_write_bit(wb, seg->enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2359 | if (!seg->enabled) return; |
| 2360 | |
| 2361 | // Segmentation map |
| 2362 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2363 | aom_wb_write_bit(wb, seg->update_map); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2364 | } else { |
| 2365 | assert(seg->update_map == 1); |
| 2366 | } |
| 2367 | if (seg->update_map) { |
| 2368 | // Select the coding strategy (temporal or spatial) |
Yushin Cho | e8d8879 | 2018-01-25 12:09:15 -0800 | [diff] [blame] | 2369 | if (!cm->error_resilient_mode) av1_choose_segmap_coding_method(cm, xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2370 | |
| 2371 | // Write out the chosen coding method. |
| 2372 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2373 | aom_wb_write_bit(wb, seg->temporal_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2374 | } else { |
| 2375 | assert(seg->temporal_update == 0); |
| 2376 | } |
| 2377 | } |
| 2378 | |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 2379 | #if CONFIG_SPATIAL_SEGMENTATION |
| 2380 | cm->preskip_segid = 0; |
| 2381 | #endif |
| 2382 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2383 | // Segmentation data |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2384 | aom_wb_write_bit(wb, seg->update_data); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2385 | if (seg->update_data) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2386 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 2387 | for (j = 0; j < SEG_LVL_MAX; j++) { |
| 2388 | const int active = segfeature_active(seg, i, j); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2389 | aom_wb_write_bit(wb, active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2390 | if (active) { |
Rostislav Pehlivanov | 938710c | 2017-11-28 02:26:21 +0000 | [diff] [blame] | 2391 | #if CONFIG_SPATIAL_SEGMENTATION |
| 2392 | cm->preskip_segid |= j >= SEG_LVL_REF_FRAME; |
| 2393 | cm->last_active_segid = i; |
| 2394 | #endif |
Sebastien Alaiwan | ca14b47 | 2017-12-11 11:46:00 +0100 | [diff] [blame] | 2395 | const int data_max = av1_seg_feature_data_max(j); |
| 2396 | const int data_min = -data_max; |
| 2397 | const int ubits = get_unsigned_bits(data_max); |
| 2398 | const int data = clamp(get_segdata(seg, i, j), data_min, data_max); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2399 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2400 | if (av1_is_segfeature_signed(j)) { |
Sebastien Alaiwan | ca14b47 | 2017-12-11 11:46:00 +0100 | [diff] [blame] | 2401 | aom_wb_write_inv_signed_literal(wb, data, ubits); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2402 | } else { |
Sebastien Alaiwan | ca14b47 | 2017-12-11 11:46:00 +0100 | [diff] [blame] | 2403 | aom_wb_write_literal(wb, data, ubits); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2404 | } |
| 2405 | } |
| 2406 | } |
| 2407 | } |
| 2408 | } |
| 2409 | } |
| 2410 | |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2411 | static void write_tx_mode(AV1_COMMON *cm, TX_MODE *mode, |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2412 | struct aom_write_bit_buffer *wb) { |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2413 | if (cm->all_lossless) { |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2414 | *mode = ONLY_4X4; |
| 2415 | return; |
| 2416 | } |
Debargha Mukherjee | 923b73d | 2017-10-31 18:11:34 -0700 | [diff] [blame] | 2417 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2418 | } |
| 2419 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 2420 | static void write_frame_interp_filter(InterpFilter filter, |
| 2421 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2422 | aom_wb_write_bit(wb, filter == SWITCHABLE); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2423 | if (filter != SWITCHABLE) |
Angie Chiang | 6305abe | 2016-10-24 12:24:44 -0700 | [diff] [blame] | 2424 | aom_wb_write_literal(wb, filter, LOG_SWITCHABLE_FILTERS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2427 | static void fix_interp_filter(AV1_COMMON *cm, FRAME_COUNTS *counts) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2428 | if (cm->interp_filter == SWITCHABLE) { |
| 2429 | // Check to see if only one of the filters is actually used |
| 2430 | int count[SWITCHABLE_FILTERS]; |
| 2431 | int i, j, c = 0; |
| 2432 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2433 | count[i] = 0; |
| 2434 | for (j = 0; j < SWITCHABLE_FILTER_CONTEXTS; ++j) |
| 2435 | count[i] += counts->switchable_interp[j][i]; |
| 2436 | c += (count[i] > 0); |
| 2437 | } |
| 2438 | if (c == 1) { |
| 2439 | // Only one filter is used. So set the filter at frame level |
| 2440 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2441 | if (count[i]) { |
Sarah Parker | 4c10a3c | 2017-04-10 19:37:59 -0700 | [diff] [blame] | 2442 | if (i == EIGHTTAP_REGULAR || WARP_WM_NEIGHBORS_WITH_OBMC) |
Debargha Mukherjee | 604d846 | 2017-04-06 15:27:00 -0700 | [diff] [blame] | 2443 | cm->interp_filter = i; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2444 | break; |
| 2445 | } |
| 2446 | } |
| 2447 | } |
| 2448 | } |
| 2449 | } |
| 2450 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2451 | #if CONFIG_MAX_TILE |
| 2452 | |
| 2453 | // Same function as write_uniform but writing to uncompresses header wb |
| 2454 | static void wb_write_uniform(struct aom_write_bit_buffer *wb, int n, int v) { |
| 2455 | const int l = get_unsigned_bits(n); |
| 2456 | const int m = (1 << l) - n; |
| 2457 | if (l == 0) return; |
| 2458 | if (v < m) { |
| 2459 | aom_wb_write_literal(wb, v, l - 1); |
| 2460 | } else { |
| 2461 | aom_wb_write_literal(wb, m + ((v - m) >> 1), l - 1); |
| 2462 | aom_wb_write_literal(wb, (v - m) & 1, 1); |
| 2463 | } |
| 2464 | } |
| 2465 | |
| 2466 | static void write_tile_info_max_tile(const AV1_COMMON *const cm, |
| 2467 | struct aom_write_bit_buffer *wb) { |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2468 | int width_mi = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->seq_params.mib_size_log2); |
| 2469 | int height_mi = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->seq_params.mib_size_log2); |
| 2470 | int width_sb = width_mi >> cm->seq_params.mib_size_log2; |
| 2471 | int height_sb = height_mi >> cm->seq_params.mib_size_log2; |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2472 | int size_sb, i; |
| 2473 | |
| 2474 | aom_wb_write_bit(wb, cm->uniform_tile_spacing_flag); |
| 2475 | |
| 2476 | if (cm->uniform_tile_spacing_flag) { |
| 2477 | // Uniform spaced tiles with power-of-two number of rows and columns |
| 2478 | // tile columns |
| 2479 | int ones = cm->log2_tile_cols - cm->min_log2_tile_cols; |
| 2480 | while (ones--) { |
| 2481 | aom_wb_write_bit(wb, 1); |
| 2482 | } |
| 2483 | if (cm->log2_tile_cols < cm->max_log2_tile_cols) { |
| 2484 | aom_wb_write_bit(wb, 0); |
| 2485 | } |
| 2486 | |
| 2487 | // rows |
| 2488 | ones = cm->log2_tile_rows - cm->min_log2_tile_rows; |
| 2489 | while (ones--) { |
| 2490 | aom_wb_write_bit(wb, 1); |
| 2491 | } |
| 2492 | if (cm->log2_tile_rows < cm->max_log2_tile_rows) { |
| 2493 | aom_wb_write_bit(wb, 0); |
| 2494 | } |
| 2495 | } else { |
| 2496 | // Explicit tiles with configurable tile widths and heights |
| 2497 | // columns |
| 2498 | for (i = 0; i < cm->tile_cols; i++) { |
| 2499 | size_sb = cm->tile_col_start_sb[i + 1] - cm->tile_col_start_sb[i]; |
| 2500 | wb_write_uniform(wb, AOMMIN(width_sb, MAX_TILE_WIDTH_SB), size_sb - 1); |
| 2501 | width_sb -= size_sb; |
| 2502 | } |
| 2503 | assert(width_sb == 0); |
| 2504 | |
| 2505 | // rows |
| 2506 | for (i = 0; i < cm->tile_rows; i++) { |
| 2507 | size_sb = cm->tile_row_start_sb[i + 1] - cm->tile_row_start_sb[i]; |
| 2508 | wb_write_uniform(wb, AOMMIN(height_sb, cm->max_tile_height_sb), |
| 2509 | size_sb - 1); |
| 2510 | height_sb -= size_sb; |
| 2511 | } |
| 2512 | assert(height_sb == 0); |
| 2513 | } |
| 2514 | } |
| 2515 | #endif |
| 2516 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2517 | static void write_tile_info(const AV1_COMMON *const cm, |
| 2518 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2519 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2520 | if (cm->large_scale_tile) { |
| 2521 | const int tile_width = |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2522 | ALIGN_POWER_OF_TWO(cm->tile_width, cm->seq_params.mib_size_log2) >> |
| 2523 | cm->seq_params.mib_size_log2; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2524 | const int tile_height = |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2525 | ALIGN_POWER_OF_TWO(cm->tile_height, cm->seq_params.mib_size_log2) >> |
| 2526 | cm->seq_params.mib_size_log2; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2527 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2528 | assert(tile_width > 0); |
| 2529 | assert(tile_height > 0); |
Yunqing Wang | d8cd55f | 2017-02-27 12:16:00 -0800 | [diff] [blame] | 2530 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2531 | // Write the tile sizes |
| 2532 | #if CONFIG_EXT_PARTITION |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 2533 | if (cm->seq_params.sb_size == BLOCK_128X128) { |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2534 | assert(tile_width <= 32); |
| 2535 | assert(tile_height <= 32); |
| 2536 | aom_wb_write_literal(wb, tile_width - 1, 5); |
| 2537 | aom_wb_write_literal(wb, tile_height - 1, 5); |
| 2538 | } else { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2539 | #endif // CONFIG_EXT_PARTITION |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2540 | assert(tile_width <= 64); |
| 2541 | assert(tile_height <= 64); |
| 2542 | aom_wb_write_literal(wb, tile_width - 1, 6); |
| 2543 | aom_wb_write_literal(wb, tile_height - 1, 6); |
| 2544 | #if CONFIG_EXT_PARTITION |
| 2545 | } |
| 2546 | #endif // CONFIG_EXT_PARTITION |
| 2547 | } else { |
| 2548 | #endif // CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2549 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2550 | #if CONFIG_MAX_TILE |
| 2551 | write_tile_info_max_tile(cm, wb); |
| 2552 | #else |
| 2553 | int min_log2_tile_cols, max_log2_tile_cols, ones; |
| 2554 | av1_get_tile_n_bits(cm->mi_cols, &min_log2_tile_cols, &max_log2_tile_cols); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2555 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2556 | // columns |
| 2557 | ones = cm->log2_tile_cols - min_log2_tile_cols; |
| 2558 | while (ones--) aom_wb_write_bit(wb, 1); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2559 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2560 | if (cm->log2_tile_cols < max_log2_tile_cols) aom_wb_write_bit(wb, 0); |
| 2561 | |
| 2562 | // rows |
| 2563 | aom_wb_write_bit(wb, cm->log2_tile_rows != 0); |
| 2564 | if (cm->log2_tile_rows != 0) aom_wb_write_bit(wb, cm->log2_tile_rows != 1); |
| 2565 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2566 | #if CONFIG_DEPENDENT_HORZTILES |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2567 | if (cm->tile_rows > 1) aom_wb_write_bit(wb, cm->dependent_horz_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2568 | #endif |
| 2569 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2570 | } |
Fangwen Fu | 70bcb89 | 2017-05-06 17:05:19 -0700 | [diff] [blame] | 2571 | #endif // CONFIG_EXT_TILE |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2572 | |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2573 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Lei | 7bb501d | 2017-12-13 15:10:34 -0800 | [diff] [blame] | 2574 | #if CONFIG_LOOPFILTERING_ACROSS_TILES_EXT |
| 2575 | if (cm->tile_cols > 1) { |
| 2576 | aom_wb_write_bit(wb, cm->loop_filter_across_tiles_v_enabled); |
| 2577 | } |
| 2578 | if (cm->tile_rows > 1) { |
| 2579 | aom_wb_write_bit(wb, cm->loop_filter_across_tiles_h_enabled); |
| 2580 | } |
| 2581 | #else |
Yunqing Wang | 42015d1 | 2017-10-17 15:43:49 -0700 | [diff] [blame] | 2582 | if (cm->tile_cols * cm->tile_rows > 1) |
| 2583 | aom_wb_write_bit(wb, cm->loop_filter_across_tiles_enabled); |
Lei | 7bb501d | 2017-12-13 15:10:34 -0800 | [diff] [blame] | 2584 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES_EXT |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2585 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 2586 | |
| 2587 | #if CONFIG_TILE_INFO_FIRST |
| 2588 | // write the tile length code (Always 4 bytes for now) |
| 2589 | aom_wb_write_literal(wb, 3, 2); |
| 2590 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2591 | } |
| 2592 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2593 | #if USE_GF16_MULTI_LAYER |
| 2594 | static int get_refresh_mask_gf16(AV1_COMP *cpi) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2595 | int refresh_mask = 0; |
| 2596 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2597 | if (cpi->refresh_last_frame || cpi->refresh_golden_frame || |
| 2598 | cpi->refresh_bwd_ref_frame || cpi->refresh_alt2_ref_frame || |
| 2599 | cpi->refresh_alt_ref_frame) { |
| 2600 | assert(cpi->refresh_fb_idx >= 0 && cpi->refresh_fb_idx < REF_FRAMES); |
| 2601 | refresh_mask |= (1 << cpi->refresh_fb_idx); |
| 2602 | } |
| 2603 | |
| 2604 | return refresh_mask; |
| 2605 | } |
| 2606 | #endif // USE_GF16_MULTI_LAYER |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2607 | |
| 2608 | static int get_refresh_mask(AV1_COMP *cpi) { |
Yi Luo | 2e6a9ab | 2017-09-15 08:13:59 -0700 | [diff] [blame] | 2609 | int refresh_mask = 0; |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2610 | #if USE_GF16_MULTI_LAYER |
| 2611 | if (cpi->rc.baseline_gf_interval == 16) return get_refresh_mask_gf16(cpi); |
| 2612 | #endif // USE_GF16_MULTI_LAYER |
| 2613 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2614 | // NOTE(zoeliu): When LAST_FRAME is to get refreshed, the decoder will be |
| 2615 | // notified to get LAST3_FRAME refreshed and then the virtual indexes for all |
| 2616 | // the 3 LAST reference frames will be updated accordingly, i.e.: |
| 2617 | // (1) The original virtual index for LAST3_FRAME will become the new virtual |
| 2618 | // index for LAST_FRAME; and |
| 2619 | // (2) The original virtual indexes for LAST_FRAME and LAST2_FRAME will be |
| 2620 | // shifted and become the new virtual indexes for LAST2_FRAME and |
| 2621 | // LAST3_FRAME. |
| 2622 | refresh_mask |= |
| 2623 | (cpi->refresh_last_frame << cpi->lst_fb_idxes[LAST_REF_FRAMES - 1]); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2624 | |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2625 | refresh_mask |= (cpi->refresh_bwd_ref_frame << cpi->bwd_fb_idx); |
| 2626 | refresh_mask |= (cpi->refresh_alt2_ref_frame << cpi->alt2_fb_idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2627 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2628 | if (av1_preserve_existing_gf(cpi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2629 | // We have decided to preserve the previously existing golden frame as our |
| 2630 | // new ARF frame. However, in the short term we leave it in the GF slot and, |
| 2631 | // if we're updating the GF with the current decoded frame, we save it |
| 2632 | // instead to the ARF slot. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2633 | // Later, in the function av1_encoder.c:av1_update_reference_frames() we |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2634 | // will swap gld_fb_idx and alt_fb_idx to achieve our objective. We do it |
| 2635 | // there so that it can be done outside of the recode loop. |
| 2636 | // Note: This is highly specific to the use of ARF as a forward reference, |
| 2637 | // and this needs to be generalized as other uses are implemented |
| 2638 | // (like RTC/temporal scalability). |
| 2639 | return refresh_mask | (cpi->refresh_golden_frame << cpi->alt_fb_idx); |
| 2640 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2641 | const int arf_idx = cpi->alt_fb_idx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2642 | return refresh_mask | (cpi->refresh_golden_frame << cpi->gld_fb_idx) | |
| 2643 | (cpi->refresh_alt_ref_frame << arf_idx); |
| 2644 | } |
| 2645 | } |
| 2646 | |
| 2647 | #if CONFIG_EXT_TILE |
| 2648 | static INLINE int find_identical_tile( |
| 2649 | const int tile_row, const int tile_col, |
| 2650 | TileBufferEnc (*const tile_buffers)[1024]) { |
| 2651 | const MV32 candidate_offset[1] = { { 1, 0 } }; |
| 2652 | const uint8_t *const cur_tile_data = |
| 2653 | tile_buffers[tile_row][tile_col].data + 4; |
Jingning Han | 99ffce6 | 2017-04-25 15:48:41 -0700 | [diff] [blame] | 2654 | const size_t cur_tile_size = tile_buffers[tile_row][tile_col].size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2655 | |
| 2656 | int i; |
| 2657 | |
| 2658 | if (tile_row == 0) return 0; |
| 2659 | |
| 2660 | // (TODO: yunqingwang) For now, only above tile is checked and used. |
| 2661 | // More candidates such as left tile can be added later. |
| 2662 | for (i = 0; i < 1; i++) { |
| 2663 | int row_offset = candidate_offset[0].row; |
| 2664 | int col_offset = candidate_offset[0].col; |
| 2665 | int row = tile_row - row_offset; |
| 2666 | int col = tile_col - col_offset; |
| 2667 | uint8_t tile_hdr; |
| 2668 | const uint8_t *tile_data; |
| 2669 | TileBufferEnc *candidate; |
| 2670 | |
| 2671 | if (row < 0 || col < 0) continue; |
| 2672 | |
| 2673 | tile_hdr = *(tile_buffers[row][col].data); |
| 2674 | |
| 2675 | // Read out tcm bit |
| 2676 | if ((tile_hdr >> 7) == 1) { |
| 2677 | // The candidate is a copy tile itself |
| 2678 | row_offset += tile_hdr & 0x7f; |
| 2679 | row = tile_row - row_offset; |
| 2680 | } |
| 2681 | |
| 2682 | candidate = &tile_buffers[row][col]; |
| 2683 | |
| 2684 | if (row_offset >= 128 || candidate->size != cur_tile_size) continue; |
| 2685 | |
| 2686 | tile_data = candidate->data + 4; |
| 2687 | |
| 2688 | if (memcmp(tile_data, cur_tile_data, cur_tile_size) != 0) continue; |
| 2689 | |
| 2690 | // Identical tile found |
| 2691 | assert(row_offset > 0); |
| 2692 | return row_offset; |
| 2693 | } |
| 2694 | |
| 2695 | // No identical tile found |
| 2696 | return 0; |
| 2697 | } |
| 2698 | #endif // CONFIG_EXT_TILE |
| 2699 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 2700 | #if !CONFIG_OBU |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2701 | static uint32_t write_tiles(AV1_COMP *const cpi, uint8_t *const dst, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2702 | unsigned int *max_tile_size, |
| 2703 | unsigned int *max_tile_col_size) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 2704 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2705 | aom_writer mode_bc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2706 | int tile_row, tile_col; |
| 2707 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
clang-format | 67948d3 | 2016-09-07 22:40:40 -0700 | [diff] [blame] | 2708 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 2709 | uint32_t total_size = 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2710 | const int tile_cols = cm->tile_cols; |
| 2711 | const int tile_rows = cm->tile_rows; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 2712 | unsigned int tile_size = 0; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2713 | const int have_tiles = tile_cols * tile_rows > 1; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2714 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2715 | const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2716 | // Fixed size tile groups for the moment |
| 2717 | const int num_tg_hdrs = cm->num_tg; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2718 | const int tg_size = |
| 2719 | #if CONFIG_EXT_TILE |
| 2720 | (cm->large_scale_tile) |
| 2721 | ? 1 |
| 2722 | : |
| 2723 | #endif // CONFIG_EXT_TILE |
| 2724 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2725 | int tile_count = 0; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 2726 | int tg_count = 1; |
| 2727 | int tile_size_bytes = 4; |
| 2728 | int tile_col_size_bytes; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 2729 | uint32_t uncompressed_hdr_size = 0; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2730 | struct aom_write_bit_buffer tg_params_wb; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 2731 | struct aom_write_bit_buffer tile_size_bytes_wb; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 2732 | uint32_t saved_offset; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 2733 | int mtu_size = cpi->oxcf.mtu; |
| 2734 | int curr_tg_data_size = 0; |
| 2735 | int hdr_size; |
Yaowu Xu | a8975df | 2018-01-23 09:32:49 -0800 | [diff] [blame] | 2736 | const int num_planes = av1_num_planes(cm); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2737 | |
| 2738 | *max_tile_size = 0; |
| 2739 | *max_tile_col_size = 0; |
| 2740 | |
Frederic Barbier | f57a937 | 2018-01-05 09:35:03 +0100 | [diff] [blame] | 2741 | // All tile size fields are output on 4 bytes. A call to remux_tiles will |
| 2742 | // later compact the data if smaller headers are adequate. |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2743 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 2744 | cm->largest_tile_id = 0; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 2745 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2746 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2747 | if (cm->large_scale_tile) { |
| 2748 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 2749 | TileInfo tile_info; |
| 2750 | const int is_last_col = (tile_col == tile_cols - 1); |
| 2751 | const uint32_t col_offset = total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2752 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2753 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2754 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2755 | // The last column does not have a column header |
| 2756 | if (!is_last_col) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2757 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2758 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 2759 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 2760 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 2761 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 2762 | const int data_offset = have_tiles ? 4 : 0; |
| 2763 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 2764 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 2765 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2766 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2767 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2768 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2769 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 2770 | // even for the last one, unless no tiling is used at all. |
| 2771 | total_size += data_offset; |
| 2772 | // Initialise tile context from the frame context |
| 2773 | this_tile->tctx = *cm->fc; |
| 2774 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2775 | mode_bc.allow_update_cdf = !cm->large_scale_tile; |
Rupert Swarbrick | 7546b30 | 2017-10-26 10:45:26 +0100 | [diff] [blame] | 2776 | #if CONFIG_LOOP_RESTORATION |
Yaowu Xu | a8975df | 2018-01-23 09:32:49 -0800 | [diff] [blame] | 2777 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd, num_planes); |
Rupert Swarbrick | 7546b30 | 2017-10-26 10:45:26 +0100 | [diff] [blame] | 2778 | #endif // CONFIG_LOOP_RESTORATION |
| 2779 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2780 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 2781 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 2782 | assert(tok == tok_end); |
| 2783 | aom_stop_encode(&mode_bc); |
| 2784 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2785 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2786 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 2787 | if (tile_size > *max_tile_size) { |
| 2788 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 2789 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2790 | // Record the maximum tile size we see, so we can compact headers later. |
| 2791 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2792 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2793 | if (have_tiles) { |
| 2794 | // tile header: size of this tile, or copy offset |
| 2795 | uint32_t tile_header = tile_size; |
| 2796 | const int tile_copy_mode = |
| 2797 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 2798 | ? 1 |
| 2799 | : 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2800 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2801 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 2802 | // Very low chances to have copy tiles on the key frames, so don't |
| 2803 | // search on key frames to reduce unnecessary search. |
| 2804 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 2805 | const int idendical_tile_offset = |
| 2806 | find_identical_tile(tile_row, tile_col, tile_buffers); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2807 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2808 | if (idendical_tile_offset > 0) { |
| 2809 | tile_size = 0; |
| 2810 | tile_header = idendical_tile_offset | 0x80; |
| 2811 | tile_header <<= 24; |
| 2812 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2813 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2814 | |
| 2815 | mem_put_le32(buf->data, tile_header); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2816 | } |
| 2817 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2818 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2819 | } |
| 2820 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2821 | if (!is_last_col) { |
| 2822 | uint32_t col_size = total_size - col_offset - 4; |
| 2823 | mem_put_le32(dst + col_offset, col_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2824 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2825 | // If it is not final packing, record the maximum tile column size we |
| 2826 | // see, otherwise, check if the tile size is out of the range. |
| 2827 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 2828 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2829 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2830 | } else { |
| 2831 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 2832 | |
| 2833 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 2834 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 2835 | #else |
| 2836 | write_uncompressed_header_obu(cpi, &wb); |
| 2837 | #endif |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2838 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2839 | if (cm->show_existing_frame) { |
| 2840 | total_size = aom_wb_bytes_written(&wb); |
| 2841 | return (uint32_t)total_size; |
| 2842 | } |
Jingning Han | d3f441c | 2017-03-06 09:12:54 -0800 | [diff] [blame] | 2843 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2844 | // Write the tile length code |
| 2845 | tile_size_bytes_wb = wb; |
| 2846 | aom_wb_write_literal(&wb, 3, 2); |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2847 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2848 | /* Write a placeholder for the number of tiles in each tile group */ |
| 2849 | tg_params_wb = wb; |
| 2850 | saved_offset = wb.bit_offset; |
| 2851 | if (have_tiles) { |
Imdad Sardharwalla | 857c99b | 2017-11-21 15:53:31 +0000 | [diff] [blame] | 2852 | aom_wb_write_literal(&wb, 3, n_log2_tiles); |
| 2853 | aom_wb_write_literal(&wb, (1 << n_log2_tiles) - 1, n_log2_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2854 | } |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2855 | |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 2856 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 2857 | hdr_size = uncompressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2858 | total_size += hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 2859 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2860 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 2861 | TileInfo tile_info; |
| 2862 | const int is_last_row = (tile_row == tile_rows - 1); |
| 2863 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2864 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2865 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 2866 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 2867 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 2868 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 2869 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 2870 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 2871 | const int is_last_col = (tile_col == tile_cols - 1); |
| 2872 | const int is_last_tile = is_last_col && is_last_row; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 2873 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 2874 | if ((!mtu_size && tile_count > tg_size) || |
| 2875 | (mtu_size && tile_count && curr_tg_data_size >= mtu_size)) { |
| 2876 | // New tile group |
| 2877 | tg_count++; |
| 2878 | // We've exceeded the packet size |
| 2879 | if (tile_count > 1) { |
| 2880 | /* The last tile exceeded the packet size. The tile group size |
| 2881 | should therefore be tile_count-1. |
| 2882 | Move the last tile and insert headers before it |
| 2883 | */ |
| 2884 | uint32_t old_total_size = total_size - tile_size - 4; |
| 2885 | memmove(dst + old_total_size + hdr_size, dst + old_total_size, |
| 2886 | (tile_size + 4) * sizeof(uint8_t)); |
| 2887 | // Copy uncompressed header |
| 2888 | memmove(dst + old_total_size, dst, |
| 2889 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 2890 | // Write the number of tiles in the group into the last uncompressed |
| 2891 | // header before the one we've just inserted |
| 2892 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 2893 | n_log2_tiles); |
| 2894 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 2, |
| 2895 | n_log2_tiles); |
| 2896 | // Update the pointer to the last TG params |
| 2897 | tg_params_wb.bit_offset = saved_offset + 8 * old_total_size; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 2898 | total_size += hdr_size; |
| 2899 | tile_count = 1; |
| 2900 | curr_tg_data_size = hdr_size + tile_size + 4; |
| 2901 | } else { |
| 2902 | // We exceeded the packet size in just one tile |
| 2903 | // Copy uncompressed header |
| 2904 | memmove(dst + total_size, dst, |
| 2905 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 2906 | // Write the number of tiles in the group into the last uncompressed |
| 2907 | // header |
| 2908 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 2909 | n_log2_tiles); |
| 2910 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, |
| 2911 | n_log2_tiles); |
| 2912 | tg_params_wb.bit_offset = saved_offset + 8 * total_size; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 2913 | total_size += hdr_size; |
| 2914 | tile_count = 0; |
| 2915 | curr_tg_data_size = hdr_size; |
| 2916 | } |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 2917 | } |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 2918 | tile_count++; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2919 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2920 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 2921 | #if CONFIG_DEPENDENT_HORZTILES |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2922 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 2923 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2924 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2925 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2926 | // The last tile does not have a header. |
| 2927 | if (!is_last_tile) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2928 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2929 | // Initialise tile context from the frame context |
| 2930 | this_tile->tctx = *cm->fc; |
| 2931 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 2932 | mode_bc.allow_update_cdf = 1; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2933 | #if CONFIG_LOOP_RESTORATION |
Yaowu Xu | a8975df | 2018-01-23 09:32:49 -0800 | [diff] [blame] | 2934 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd, num_planes); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2935 | #endif // CONFIG_LOOP_RESTORATION |
| 2936 | |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 2937 | aom_start_encode(&mode_bc, dst + total_size); |
| 2938 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 2939 | aom_stop_encode(&mode_bc); |
| 2940 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2941 | assert(tile_size > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2942 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2943 | curr_tg_data_size += tile_size + 4; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2944 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2945 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 2946 | if (tile_size > *max_tile_size) { |
| 2947 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 2948 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2949 | if (!is_last_tile) { |
| 2950 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 2951 | // size of this tile |
| 2952 | mem_put_le32(buf->data, tile_size); |
| 2953 | } |
| 2954 | |
| 2955 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2956 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2957 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2958 | // Write the final tile group size |
| 2959 | if (n_log2_tiles) { |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 2960 | aom_wb_overwrite_literal( |
| 2961 | &tg_params_wb, (tile_cols * tile_rows) - tile_count, n_log2_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2962 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, n_log2_tiles); |
| 2963 | } |
| 2964 | // Remux if possible. TODO (Thomas Davies): do this for more than one tile |
| 2965 | // group |
| 2966 | if (have_tiles && tg_count == 1) { |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 2967 | int data_size = total_size - uncompressed_hdr_size; |
| 2968 | data_size = remux_tiles(cm, dst + uncompressed_hdr_size, data_size, |
| 2969 | *max_tile_size, *max_tile_col_size, |
| 2970 | &tile_size_bytes, &tile_col_size_bytes); |
| 2971 | total_size = data_size + uncompressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2972 | aom_wb_overwrite_literal(&tile_size_bytes_wb, tile_size_bytes - 1, 2); |
| 2973 | } |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 2974 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2975 | #if CONFIG_EXT_TILE |
| 2976 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2977 | #endif // CONFIG_EXT_TILE |
| 2978 | return (uint32_t)total_size; |
| 2979 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 2980 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2981 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2982 | static void write_render_size(const AV1_COMMON *cm, |
| 2983 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 2984 | const int scaling_active = !av1_resize_unscaled(cm); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2985 | aom_wb_write_bit(wb, scaling_active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2986 | if (scaling_active) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2987 | aom_wb_write_literal(wb, cm->render_width - 1, 16); |
| 2988 | aom_wb_write_literal(wb, cm->render_height - 1, 16); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2989 | } |
| 2990 | } |
| 2991 | |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 2992 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 2993 | static void write_superres_scale(const AV1_COMMON *const cm, |
| 2994 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 2995 | // First bit is whether to to scale or not |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 2996 | if (cm->superres_scale_denominator == SCALE_NUMERATOR) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 2997 | aom_wb_write_bit(wb, 0); // no scaling |
| 2998 | } else { |
| 2999 | aom_wb_write_bit(wb, 1); // scaling, write scale factor |
Urvang Joshi | 8301018 | 2017-10-27 12:36:02 -0700 | [diff] [blame] | 3000 | assert(cm->superres_scale_denominator >= SUPERRES_SCALE_DENOMINATOR_MIN); |
| 3001 | assert(cm->superres_scale_denominator < |
| 3002 | SUPERRES_SCALE_DENOMINATOR_MIN + (1 << SUPERRES_SCALE_BITS)); |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3003 | aom_wb_write_literal( |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 3004 | wb, cm->superres_scale_denominator - SUPERRES_SCALE_DENOMINATOR_MIN, |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3005 | SUPERRES_SCALE_BITS); |
| 3006 | } |
| 3007 | } |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3008 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3009 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3010 | #if CONFIG_FRAME_SIZE |
| 3011 | static void write_frame_size(const AV1_COMMON *cm, int frame_size_override, |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3012 | struct aom_write_bit_buffer *wb) |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3013 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3014 | static void write_frame_size(const AV1_COMMON *cm, |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3015 | struct aom_write_bit_buffer *wb) |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3016 | #endif |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3017 | { |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3018 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3019 | const int coded_width = cm->superres_upscaled_width - 1; |
| 3020 | const int coded_height = cm->superres_upscaled_height - 1; |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3021 | #else |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3022 | const int coded_width = cm->width - 1; |
| 3023 | const int coded_height = cm->height - 1; |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3024 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3025 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3026 | #if CONFIG_FRAME_SIZE |
| 3027 | if (frame_size_override) { |
| 3028 | const SequenceHeader *seq_params = &cm->seq_params; |
| 3029 | int num_bits_width = seq_params->num_bits_width; |
| 3030 | int num_bits_height = seq_params->num_bits_height; |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3031 | aom_wb_write_literal(wb, coded_width, num_bits_width); |
| 3032 | aom_wb_write_literal(wb, coded_height, num_bits_height); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3033 | } |
| 3034 | #else |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3035 | aom_wb_write_literal(wb, coded_width, 16); |
| 3036 | aom_wb_write_literal(wb, coded_height, 16); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3037 | #endif |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3038 | |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3039 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3040 | write_superres_scale(cm, wb); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3041 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3042 | write_render_size(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3043 | } |
| 3044 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3045 | static void write_frame_size_with_refs(AV1_COMP *cpi, |
| 3046 | struct aom_write_bit_buffer *wb) { |
| 3047 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3048 | int found = 0; |
| 3049 | |
| 3050 | MV_REFERENCE_FRAME ref_frame; |
| 3051 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 3052 | YV12_BUFFER_CONFIG *cfg = get_ref_frame_buffer(cpi, ref_frame); |
| 3053 | |
| 3054 | if (cfg != NULL) { |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3055 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3056 | found = cm->superres_upscaled_width == cfg->y_crop_width && |
| 3057 | cm->superres_upscaled_height == cfg->y_crop_height; |
| 3058 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3059 | found = |
| 3060 | cm->width == cfg->y_crop_width && cm->height == cfg->y_crop_height; |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3061 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3062 | found &= cm->render_width == cfg->render_width && |
| 3063 | cm->render_height == cfg->render_height; |
| 3064 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3065 | aom_wb_write_bit(wb, found); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3066 | if (found) { |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3067 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3068 | write_superres_scale(cm, wb); |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3069 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3070 | break; |
| 3071 | } |
| 3072 | } |
| 3073 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3074 | #if CONFIG_FRAME_SIZE |
| 3075 | if (!found) { |
| 3076 | int frame_size_override = 1; // Allways equal to 1 in this function |
| 3077 | write_frame_size(cm, frame_size_override, wb); |
| 3078 | } |
| 3079 | #else |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3080 | if (!found) write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3081 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3082 | } |
| 3083 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3084 | static void write_profile(BITSTREAM_PROFILE profile, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3085 | struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3086 | assert(profile >= PROFILE_0 && profile < MAX_PROFILES); |
| 3087 | aom_wb_write_literal(wb, profile, 2); |
| 3088 | } |
| 3089 | |
| 3090 | static void write_bitdepth(AV1_COMMON *const cm, |
| 3091 | struct aom_write_bit_buffer *wb) { |
| 3092 | // Profile 0/1: [0] for 8 bit, [1] 10-bit |
| 3093 | // Profile 2: [0] for 8 bit, [10] 10-bit, [11] - 12-bit |
| 3094 | aom_wb_write_bit(wb, cm->bit_depth == AOM_BITS_8 ? 0 : 1); |
| 3095 | if (cm->profile == PROFILE_2 && cm->bit_depth != AOM_BITS_8) { |
| 3096 | aom_wb_write_bit(wb, cm->bit_depth == AOM_BITS_10 ? 0 : 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3097 | } |
| 3098 | } |
| 3099 | |
| 3100 | static void write_bitdepth_colorspace_sampling( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3101 | AV1_COMMON *const cm, struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3102 | write_bitdepth(cm, wb); |
| 3103 | #if CONFIG_MONO_VIDEO |
Debargha Mukherjee | f340fec | 2018-01-10 18:12:22 -0800 | [diff] [blame] | 3104 | const int is_monochrome = cm->seq_params.monochrome; |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3105 | // monochrome bit |
| 3106 | if (cm->profile != PROFILE_1) |
| 3107 | aom_wb_write_bit(wb, is_monochrome); |
| 3108 | else |
| 3109 | assert(!is_monochrome); |
| 3110 | #elif !CONFIG_CICP |
| 3111 | const int is_monochrome = 0; |
| 3112 | #endif // CONFIG_MONO_VIDEO |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 3113 | #if CONFIG_CICP |
| 3114 | if (cm->color_primaries == AOM_CICP_CP_UNSPECIFIED && |
| 3115 | cm->transfer_characteristics == AOM_CICP_TC_UNSPECIFIED && |
| 3116 | cm->matrix_coefficients == AOM_CICP_MC_UNSPECIFIED) { |
| 3117 | aom_wb_write_bit(wb, 0); // No color description present |
| 3118 | } else { |
| 3119 | aom_wb_write_bit(wb, 1); // Color description present |
| 3120 | aom_wb_write_literal(wb, cm->color_primaries, 8); |
| 3121 | aom_wb_write_literal(wb, cm->transfer_characteristics, 8); |
| 3122 | aom_wb_write_literal(wb, cm->matrix_coefficients, 8); |
| 3123 | } |
| 3124 | #else |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3125 | #if CONFIG_COLORSPACE_HEADERS |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3126 | if (!is_monochrome) aom_wb_write_literal(wb, cm->color_space, 5); |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3127 | aom_wb_write_literal(wb, cm->transfer_function, 5); |
| 3128 | #else |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3129 | if (!is_monochrome) aom_wb_write_literal(wb, cm->color_space, 4); |
| 3130 | #endif // CONFIG_COLORSPACE_HEADERS |
| 3131 | #endif // CONFIG_CICP |
Debargha Mukherjee | e526769 | 2018-01-16 09:41:15 -0800 | [diff] [blame] | 3132 | #if CONFIG_MONO_VIDEO |
| 3133 | if (is_monochrome) return; |
| 3134 | #endif // CONFIG_MONO_VIDEO |
Andrey Norkin | 9e69463 | 2017-12-21 18:50:57 -0800 | [diff] [blame] | 3135 | #if CONFIG_CICP |
| 3136 | if (cm->color_primaries == AOM_CICP_CP_BT_709 && |
| 3137 | cm->transfer_characteristics == AOM_CICP_TC_SRGB && |
| 3138 | cm->matrix_coefficients == |
| 3139 | AOM_CICP_MC_IDENTITY) { // it would be better to remove this |
| 3140 | // dependency too |
| 3141 | #else |
Imdad Sardharwalla | 317002f | 2017-12-05 16:24:56 +0000 | [diff] [blame] | 3142 | if (cm->color_space == AOM_CS_SRGB) { |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3143 | #endif // CONFIG_CICP |
| 3144 | assert(cm->subsampling_x == 0 && cm->subsampling_y == 0); |
| 3145 | assert(cm->profile == PROFILE_1 || |
| 3146 | (cm->profile == PROFILE_2 && cm->bit_depth == AOM_BITS_12)); |
Imdad Sardharwalla | 317002f | 2017-12-05 16:24:56 +0000 | [diff] [blame] | 3147 | } else { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3148 | // 0: [16, 235] (i.e. xvYCC), 1: [0, 255] |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3149 | aom_wb_write_bit(wb, cm->color_range); |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3150 | if (cm->profile == PROFILE_0) { |
| 3151 | // 420 only |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3152 | assert(cm->subsampling_x == 1 && cm->subsampling_y == 1); |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3153 | } else if (cm->profile == PROFILE_1) { |
| 3154 | // 444 only |
| 3155 | assert(cm->subsampling_x == 0 && cm->subsampling_y == 0); |
| 3156 | } else if (cm->profile == PROFILE_2) { |
| 3157 | if (cm->bit_depth == AOM_BITS_12) { |
| 3158 | // 420, 444 or 422 |
| 3159 | aom_wb_write_bit(wb, cm->subsampling_x); |
David Barker | 0c3545b | 2018-01-16 17:32:23 +0000 | [diff] [blame] | 3160 | if (cm->subsampling_x == 0) { |
| 3161 | assert(cm->subsampling_y == 0 && |
| 3162 | "4:4:0 subsampling not allowed in AV1"); |
| 3163 | } else { |
| 3164 | aom_wb_write_bit(wb, cm->subsampling_y); |
| 3165 | } |
Debargha Mukherjee | f9a50ea | 2018-01-09 22:28:20 -0800 | [diff] [blame] | 3166 | } else { |
| 3167 | // 422 only |
| 3168 | assert(cm->subsampling_x == 1 && cm->subsampling_y == 0); |
| 3169 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3170 | } |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3171 | #if CONFIG_COLORSPACE_HEADERS |
| 3172 | if (cm->subsampling_x == 1 && cm->subsampling_y == 1) { |
| 3173 | aom_wb_write_literal(wb, cm->chroma_sample_position, 2); |
| 3174 | } |
| 3175 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3176 | } |
Yaowu Xu | 6fc47e5 | 2017-12-04 15:07:48 -0800 | [diff] [blame] | 3177 | aom_wb_write_bit(wb, cm->separate_uv_delta_q); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3178 | } |
| 3179 | |
Andrey Norkin | 28e9ce2 | 2018-01-08 10:11:21 -0800 | [diff] [blame] | 3180 | #if CONFIG_TIMING_INFO_IN_SEQ_HEADERS |
| 3181 | static void write_timing_info_header(AV1_COMMON *const cm, |
| 3182 | struct aom_write_bit_buffer *wb) { |
| 3183 | aom_wb_write_bit(wb, cm->timing_info_present); // timing info present flag |
| 3184 | |
| 3185 | if (cm->timing_info_present) { |
| 3186 | aom_wb_write_unsigned_literal(wb, cm->num_units_in_tick, |
| 3187 | 32); // Number of units in tick |
| 3188 | aom_wb_write_unsigned_literal(wb, cm->time_scale, 32); // Time scale |
| 3189 | aom_wb_write_bit(wb, |
| 3190 | cm->equal_picture_interval); // Equal picture interval bit |
| 3191 | if (cm->equal_picture_interval) { |
| 3192 | aom_wb_write_uvlc(wb, |
| 3193 | cm->num_ticks_per_picture - 1); // ticks per picture |
| 3194 | } |
| 3195 | } |
| 3196 | } |
| 3197 | #endif // CONFIG_TIMING_INFO_IN_SEQ_HEADERS |
| 3198 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3199 | #if CONFIG_FILM_GRAIN |
| 3200 | static void write_film_grain_params(AV1_COMMON *const cm, |
| 3201 | struct aom_write_bit_buffer *wb) { |
| 3202 | aom_film_grain_t *pars = &cm->film_grain_params; |
| 3203 | |
| 3204 | aom_wb_write_bit(wb, pars->apply_grain); |
| 3205 | if (!pars->apply_grain) return; |
| 3206 | |
| 3207 | aom_wb_write_literal(wb, pars->random_seed, 16); |
| 3208 | |
| 3209 | pars->random_seed += 3245; // For film grain test vectors purposes |
| 3210 | if (!pars->random_seed) // Random seed should not be zero |
| 3211 | pars->random_seed += 1735; |
| 3212 | |
| 3213 | aom_wb_write_bit(wb, pars->update_parameters); |
| 3214 | if (!pars->update_parameters) return; |
| 3215 | |
| 3216 | // Scaling functions parameters |
| 3217 | |
| 3218 | aom_wb_write_literal(wb, pars->num_y_points, 4); // max 14 |
| 3219 | for (int i = 0; i < pars->num_y_points; i++) { |
| 3220 | aom_wb_write_literal(wb, pars->scaling_points_y[i][0], 8); |
| 3221 | aom_wb_write_literal(wb, pars->scaling_points_y[i][1], 8); |
| 3222 | } |
| 3223 | |
Andrey Norkin | 20be545 | 2018-02-20 17:46:13 -0800 | [diff] [blame] | 3224 | if (!cm->seq_params.monochrome) |
| 3225 | aom_wb_write_bit(wb, pars->chroma_scaling_from_luma); |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3226 | |
Andrey Norkin | 20be545 | 2018-02-20 17:46:13 -0800 | [diff] [blame] | 3227 | if (cm->seq_params.monochrome || pars->chroma_scaling_from_luma) { |
| 3228 | pars->num_cb_points = 0; |
| 3229 | pars->num_cr_points = 0; |
Andrey Norkin | 0c294fa | 2018-02-16 18:32:12 -0800 | [diff] [blame] | 3230 | } else { |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3231 | aom_wb_write_literal(wb, pars->num_cb_points, 4); // max 10 |
| 3232 | for (int i = 0; i < pars->num_cb_points; i++) { |
| 3233 | aom_wb_write_literal(wb, pars->scaling_points_cb[i][0], 8); |
| 3234 | aom_wb_write_literal(wb, pars->scaling_points_cb[i][1], 8); |
| 3235 | } |
| 3236 | |
| 3237 | aom_wb_write_literal(wb, pars->num_cr_points, 4); // max 10 |
| 3238 | for (int i = 0; i < pars->num_cr_points; i++) { |
| 3239 | aom_wb_write_literal(wb, pars->scaling_points_cr[i][0], 8); |
| 3240 | aom_wb_write_literal(wb, pars->scaling_points_cr[i][1], 8); |
| 3241 | } |
| 3242 | } |
| 3243 | |
| 3244 | aom_wb_write_literal(wb, pars->scaling_shift - 8, 2); // 8 + value |
| 3245 | |
| 3246 | // AR coefficients |
| 3247 | // Only sent if the corresponsing scaling function has |
| 3248 | // more than 0 points |
| 3249 | |
| 3250 | aom_wb_write_literal(wb, pars->ar_coeff_lag, 2); |
| 3251 | |
| 3252 | int num_pos_luma = 2 * pars->ar_coeff_lag * (pars->ar_coeff_lag + 1); |
Andrey Norkin | 20be545 | 2018-02-20 17:46:13 -0800 | [diff] [blame] | 3253 | int num_pos_chroma = num_pos_luma; |
| 3254 | if (pars->num_y_points > 0) ++num_pos_chroma; |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3255 | |
| 3256 | if (pars->num_y_points) |
| 3257 | for (int i = 0; i < num_pos_luma; i++) |
| 3258 | aom_wb_write_literal(wb, pars->ar_coeffs_y[i] + 128, 8); |
| 3259 | |
| 3260 | if (pars->num_cb_points || pars->chroma_scaling_from_luma) |
| 3261 | for (int i = 0; i < num_pos_chroma; i++) |
| 3262 | aom_wb_write_literal(wb, pars->ar_coeffs_cb[i] + 128, 8); |
| 3263 | |
| 3264 | if (pars->num_cr_points || pars->chroma_scaling_from_luma) |
| 3265 | for (int i = 0; i < num_pos_chroma; i++) |
| 3266 | aom_wb_write_literal(wb, pars->ar_coeffs_cr[i] + 128, 8); |
| 3267 | |
| 3268 | aom_wb_write_literal(wb, pars->ar_coeff_shift - 6, 2); // 8 + value |
| 3269 | |
Andrey Norkin | a840cde | 2018-02-16 15:39:50 -0800 | [diff] [blame] | 3270 | aom_wb_write_literal(wb, pars->grain_scale_shift, 2); |
| 3271 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3272 | if (pars->num_cb_points) { |
| 3273 | aom_wb_write_literal(wb, pars->cb_mult, 8); |
| 3274 | aom_wb_write_literal(wb, pars->cb_luma_mult, 8); |
| 3275 | aom_wb_write_literal(wb, pars->cb_offset, 9); |
| 3276 | } |
| 3277 | |
| 3278 | if (pars->num_cr_points) { |
| 3279 | aom_wb_write_literal(wb, pars->cr_mult, 8); |
| 3280 | aom_wb_write_literal(wb, pars->cr_luma_mult, 8); |
| 3281 | aom_wb_write_literal(wb, pars->cr_offset, 9); |
| 3282 | } |
| 3283 | |
| 3284 | aom_wb_write_bit(wb, pars->overlap_flag); |
| 3285 | |
| 3286 | aom_wb_write_bit(wb, pars->clip_to_restricted_range); |
| 3287 | } |
| 3288 | #endif // CONFIG_FILM_GRAIN |
| 3289 | |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 3290 | static void write_sb_size(SequenceHeader *seq_params, |
| 3291 | struct aom_write_bit_buffer *wb) { |
| 3292 | (void)seq_params; |
| 3293 | (void)wb; |
| 3294 | assert(seq_params->mib_size == mi_size_wide[seq_params->sb_size]); |
| 3295 | assert(seq_params->mib_size == 1 << seq_params->mib_size_log2); |
| 3296 | #if CONFIG_EXT_PARTITION |
| 3297 | assert(seq_params->sb_size == BLOCK_128X128 || |
| 3298 | seq_params->sb_size == BLOCK_64X64); |
| 3299 | aom_wb_write_bit(wb, seq_params->sb_size == BLOCK_128X128 ? 1 : 0); |
| 3300 | #else |
| 3301 | assert(seq_params->sb_size == BLOCK_64X64); |
| 3302 | #endif // CONFIG_EXT_PARTITION |
| 3303 | } |
| 3304 | |
Rupert Swarbrick | b394bfe | 2017-11-07 17:52:13 +0000 | [diff] [blame] | 3305 | #if CONFIG_REFERENCE_BUFFER || CONFIG_OBU |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3306 | void write_sequence_header(AV1_COMP *cpi, struct aom_write_bit_buffer *wb) { |
| 3307 | AV1_COMMON *const cm = &cpi->common; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3308 | SequenceHeader *seq_params = &cm->seq_params; |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3309 | |
| 3310 | #if CONFIG_FRAME_SIZE |
| 3311 | int num_bits_width = 16; |
| 3312 | int num_bits_height = 16; |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3313 | int max_frame_width = cpi->oxcf.width; |
| 3314 | int max_frame_height = cpi->oxcf.height; |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3315 | |
| 3316 | seq_params->num_bits_width = num_bits_width; |
| 3317 | seq_params->num_bits_height = num_bits_height; |
| 3318 | seq_params->max_frame_width = max_frame_width; |
| 3319 | seq_params->max_frame_height = max_frame_height; |
| 3320 | |
| 3321 | aom_wb_write_literal(wb, num_bits_width - 1, 4); |
| 3322 | aom_wb_write_literal(wb, num_bits_height - 1, 4); |
| 3323 | aom_wb_write_literal(wb, max_frame_width - 1, num_bits_width); |
| 3324 | aom_wb_write_literal(wb, max_frame_height - 1, num_bits_height); |
| 3325 | #endif |
| 3326 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3327 | /* Placeholder for actually writing to the bitstream */ |
Yunqing Wang | c2502b5 | 2017-07-19 17:44:18 -0700 | [diff] [blame] | 3328 | seq_params->frame_id_numbers_present_flag = |
| 3329 | #if CONFIG_EXT_TILE |
| 3330 | cm->large_scale_tile ? 0 : |
| 3331 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | 6eb9da2 | 2018-01-23 10:19:17 -0800 | [diff] [blame] | 3332 | cm->error_resilient_mode; |
Sebastien Alaiwan | d418f68 | 2017-10-19 15:06:52 +0200 | [diff] [blame] | 3333 | seq_params->frame_id_length = FRAME_ID_LENGTH; |
| 3334 | seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3335 | |
| 3336 | aom_wb_write_bit(wb, seq_params->frame_id_numbers_present_flag); |
| 3337 | if (seq_params->frame_id_numbers_present_flag) { |
Frederic Barbier | 4d5d90e | 2017-10-13 09:22:33 +0200 | [diff] [blame] | 3338 | // We must always have delta_frame_id_length < frame_id_length, |
| 3339 | // in order for a frame to be referenced with a unique delta. |
| 3340 | // Avoid wasting bits by using a coding that enforces this restriction. |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3341 | aom_wb_write_literal(wb, seq_params->delta_frame_id_length - 2, 4); |
Frederic Barbier | 4d5d90e | 2017-10-13 09:22:33 +0200 | [diff] [blame] | 3342 | aom_wb_write_literal( |
| 3343 | wb, seq_params->frame_id_length - seq_params->delta_frame_id_length - 1, |
| 3344 | 3); |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3345 | } |
Imdad Sardharwalla | 4ec84ab | 2018-02-06 12:20:18 +0000 | [diff] [blame] | 3346 | |
| 3347 | write_sb_size(seq_params, wb); |
Imdad Sardharwalla | bf2cc01 | 2018-02-09 17:32:10 +0000 | [diff] [blame] | 3348 | |
| 3349 | if (seq_params->force_screen_content_tools == 2) { |
| 3350 | aom_wb_write_bit(wb, 1); |
| 3351 | } else { |
| 3352 | aom_wb_write_bit(wb, 0); |
| 3353 | aom_wb_write_bit(wb, seq_params->force_screen_content_tools); |
| 3354 | } |
| 3355 | |
| 3356 | #if CONFIG_AMVR |
| 3357 | if (seq_params->force_screen_content_tools > 0) { |
| 3358 | if (seq_params->force_integer_mv == 2) { |
| 3359 | aom_wb_write_bit(wb, 1); |
| 3360 | } else { |
| 3361 | aom_wb_write_bit(wb, 0); |
| 3362 | aom_wb_write_bit(wb, seq_params->force_integer_mv); |
| 3363 | } |
| 3364 | } else { |
| 3365 | assert(seq_params->force_integer_mv == 2); |
| 3366 | } |
| 3367 | #endif |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3368 | } |
Rupert Swarbrick | b394bfe | 2017-11-07 17:52:13 +0000 | [diff] [blame] | 3369 | #endif // CONFIG_REFERENCE_BUFFER || CONFIG_OBU |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3370 | |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3371 | static void write_compound_tools(const AV1_COMMON *cm, |
| 3372 | struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3373 | if (!frame_is_intra_only(cm) && cm->reference_mode != COMPOUND_REFERENCE) { |
| 3374 | aom_wb_write_bit(wb, cm->allow_interintra_compound); |
| 3375 | } else { |
| 3376 | assert(cm->allow_interintra_compound == 0); |
| 3377 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3378 | if (!frame_is_intra_only(cm) && cm->reference_mode != SINGLE_REFERENCE) { |
| 3379 | aom_wb_write_bit(wb, cm->allow_masked_compound); |
| 3380 | } else { |
| 3381 | assert(cm->allow_masked_compound == 0); |
| 3382 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3383 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3384 | |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3385 | static void write_global_motion_params(const WarpedMotionParams *params, |
| 3386 | const WarpedMotionParams *ref_params, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3387 | struct aom_write_bit_buffer *wb, |
| 3388 | int allow_hp) { |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3389 | const TransformationType type = params->wmtype; |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3390 | |
| 3391 | aom_wb_write_bit(wb, type != IDENTITY); |
| 3392 | if (type != IDENTITY) { |
| 3393 | #if GLOBAL_TRANS_TYPES > 4 |
| 3394 | aom_wb_write_literal(wb, type - 1, GLOBAL_TYPE_BITS); |
| 3395 | #else |
| 3396 | aom_wb_write_bit(wb, type == ROTZOOM); |
| 3397 | if (type != ROTZOOM) aom_wb_write_bit(wb, type == TRANSLATION); |
| 3398 | #endif // GLOBAL_TRANS_TYPES > 4 |
| 3399 | } |
| 3400 | |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3401 | if (type >= ROTZOOM) { |
| 3402 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3403 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3404 | (ref_params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - |
| 3405 | (1 << GM_ALPHA_PREC_BITS), |
| 3406 | (params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3407 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3408 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3409 | (ref_params->wmmat[3] >> GM_ALPHA_PREC_DIFF), |
| 3410 | (params->wmmat[3] >> GM_ALPHA_PREC_DIFF)); |
| 3411 | } |
| 3412 | |
| 3413 | if (type >= AFFINE) { |
| 3414 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3415 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3416 | (ref_params->wmmat[4] >> GM_ALPHA_PREC_DIFF), |
| 3417 | (params->wmmat[4] >> GM_ALPHA_PREC_DIFF)); |
| 3418 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3419 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3420 | (ref_params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - |
| 3421 | (1 << GM_ALPHA_PREC_BITS), |
| 3422 | (params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3423 | } |
| 3424 | |
| 3425 | if (type >= TRANSLATION) { |
| 3426 | const int trans_bits = (type == TRANSLATION) |
| 3427 | ? GM_ABS_TRANS_ONLY_BITS - !allow_hp |
| 3428 | : GM_ABS_TRANS_BITS; |
| 3429 | const int trans_prec_diff = (type == TRANSLATION) |
| 3430 | ? GM_TRANS_ONLY_PREC_DIFF + !allow_hp |
| 3431 | : GM_TRANS_PREC_DIFF; |
| 3432 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3433 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3434 | (ref_params->wmmat[0] >> trans_prec_diff), |
| 3435 | (params->wmmat[0] >> trans_prec_diff)); |
| 3436 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3437 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3438 | (ref_params->wmmat[1] >> trans_prec_diff), |
| 3439 | (params->wmmat[1] >> trans_prec_diff)); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3440 | } |
| 3441 | } |
| 3442 | |
| 3443 | static void write_global_motion(AV1_COMP *cpi, |
| 3444 | struct aom_write_bit_buffer *wb) { |
| 3445 | AV1_COMMON *const cm = &cpi->common; |
| 3446 | int frame; |
| 3447 | for (frame = LAST_FRAME; frame <= ALTREF_FRAME; ++frame) { |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3448 | const WarpedMotionParams *ref_params = |
| 3449 | cm->error_resilient_mode ? &default_warp_params |
| 3450 | : &cm->prev_frame->global_motion[frame]; |
| 3451 | write_global_motion_params(&cm->global_motion[frame], ref_params, wb, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3452 | cm->allow_high_precision_mv); |
| 3453 | // TODO(sarahparker, debargha): The logic in the commented out code below |
| 3454 | // does not work currently and causes mismatches when resize is on. |
| 3455 | // Fix it before turning the optimization back on. |
| 3456 | /* |
| 3457 | YV12_BUFFER_CONFIG *ref_buf = get_ref_frame_buffer(cpi, frame); |
| 3458 | if (cpi->source->y_crop_width == ref_buf->y_crop_width && |
| 3459 | cpi->source->y_crop_height == ref_buf->y_crop_height) { |
| 3460 | write_global_motion_params(&cm->global_motion[frame], |
| 3461 | &cm->prev_frame->global_motion[frame], wb, |
| 3462 | cm->allow_high_precision_mv); |
| 3463 | } else { |
| 3464 | assert(cm->global_motion[frame].wmtype == IDENTITY && |
| 3465 | "Invalid warp type for frames of different resolutions"); |
| 3466 | } |
| 3467 | */ |
| 3468 | /* |
| 3469 | printf("Frame %d/%d: Enc Ref %d: %d %d %d %d\n", |
| 3470 | cm->current_video_frame, cm->show_frame, frame, |
| 3471 | cm->global_motion[frame].wmmat[0], |
| 3472 | cm->global_motion[frame].wmmat[1], cm->global_motion[frame].wmmat[2], |
| 3473 | cm->global_motion[frame].wmmat[3]); |
| 3474 | */ |
| 3475 | } |
| 3476 | } |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3477 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3478 | #if !CONFIG_OBU |
| 3479 | static void write_uncompressed_header_frame(AV1_COMP *cpi, |
| 3480 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3481 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3482 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 3483 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3484 | aom_wb_write_literal(wb, AOM_FRAME_MARKER, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3485 | |
| 3486 | write_profile(cm->profile, wb); |
| 3487 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3488 | // NOTE: By default all coded frames to be used as a reference |
| 3489 | cm->is_reference_frame = 1; |
| 3490 | |
| 3491 | if (cm->show_existing_frame) { |
| 3492 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 3493 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 3494 | |
| 3495 | if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3496 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3497 | "Buffer %d does not contain a reconstructed frame", |
| 3498 | frame_to_show); |
| 3499 | } |
| 3500 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 3501 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3502 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 3503 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3504 | |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3505 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3506 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3507 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3508 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 3509 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 3510 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 3511 | /* Same logic as when when terminating the entropy coder */ |
| 3512 | /* Consider to have this logic only one place */ |
| 3513 | aom_wb_write_literal(wb, 0, 8); |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3514 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3515 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3516 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3517 | #if CONFIG_FILM_GRAIN |
| 3518 | if (cm->film_grain_params_present) write_film_grain_params(cm, wb); |
| 3519 | #endif |
| 3520 | |
Zoe Liu | b499120 | 2017-12-21 15:31:06 -0800 | [diff] [blame] | 3521 | #if CONFIG_FWD_KF |
| 3522 | if (cm->reset_decoder_state && !frame_bufs[frame_to_show].intra_only) { |
| 3523 | aom_internal_error( |
| 3524 | &cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3525 | "show_existing_frame to reset state on non-intra_only"); |
| 3526 | } |
| 3527 | aom_wb_write_bit(wb, cm->reset_decoder_state); |
| 3528 | #endif // CONFIG_FWD_KF |
| 3529 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3530 | return; |
| 3531 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3532 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3533 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3534 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3535 | aom_wb_write_bit(wb, cm->frame_type); |
| 3536 | aom_wb_write_bit(wb, cm->show_frame); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3537 | if (cm->frame_type != KEY_FRAME) |
| 3538 | if (!cm->show_frame) aom_wb_write_bit(wb, cm->intra_only); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3539 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3540 | |
Pavel Frolov | 3b95c50 | 2017-10-01 21:35:24 +0300 | [diff] [blame] | 3541 | if (frame_is_intra_only(cm)) { |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3542 | #if CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3543 | write_sequence_header(cpi, wb); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3544 | #endif // CONFIG_REFERENCE_BUFFER |
Joe Young | db5eb4c | 2018-02-16 17:30:40 -0800 | [diff] [blame] | 3545 | #if CONFIG_INTRA_EDGE2 |
| 3546 | aom_wb_write_bit(wb, cm->disable_intra_edge_filter); |
| 3547 | #endif // CONFIG_INTRA_EDGE2 |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3548 | } |
Imdad Sardharwalla | bf2cc01 | 2018-02-09 17:32:10 +0000 | [diff] [blame] | 3549 | |
| 3550 | if (cm->seq_params.force_screen_content_tools == 2) { |
| 3551 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 3552 | } else { |
| 3553 | assert(cm->allow_screen_content_tools == |
| 3554 | cm->seq_params.force_screen_content_tools); |
| 3555 | } |
| 3556 | |
| 3557 | #if CONFIG_AMVR |
| 3558 | if (cm->allow_screen_content_tools) { |
| 3559 | if (cm->seq_params.force_integer_mv == 2) { |
| 3560 | aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv); |
| 3561 | } else { |
| 3562 | assert(cm->cur_frame_force_integer_mv == cm->seq_params.force_integer_mv); |
| 3563 | } |
| 3564 | } else { |
| 3565 | assert(cm->cur_frame_force_integer_mv == 0); |
| 3566 | } |
| 3567 | #endif // CONFIG_AMVR |
| 3568 | |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3569 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3570 | cm->invalid_delta_frame_id_minus1 = 0; |
| 3571 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3572 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3573 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3574 | } |
| 3575 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3576 | |
| 3577 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3578 | if (cm->width > cm->seq_params.max_frame_width || |
| 3579 | cm->height > cm->seq_params.max_frame_height) { |
| 3580 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3581 | "Frame dimensions are larger than the maximum values"); |
| 3582 | } |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3583 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3584 | const int coded_width = cm->superres_upscaled_width; |
| 3585 | const int coded_height = cm->superres_upscaled_height; |
| 3586 | #else |
| 3587 | const int coded_width = cm->width; |
| 3588 | const int coded_height = cm->height; |
Urvang Joshi | 94ad370 | 2017-12-06 11:38:08 -0800 | [diff] [blame] | 3589 | #endif // CONFIG_HORZONLY_FRAME_SUPERRES |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3590 | int frame_size_override_flag = |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3591 | (coded_width != cm->seq_params.max_frame_width || |
| 3592 | coded_height != cm->seq_params.max_frame_height); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3593 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 3594 | #endif |
| 3595 | |
Zoe Liu | 6b172bb | 2018-02-15 17:41:41 -0800 | [diff] [blame] | 3596 | #if CONFIG_FRAME_REFS_SIGNALING |
| 3597 | cm->frame_refs_short_signaling = 0; |
| 3598 | #endif // CONFIG_FRAME_REFS_SIGNALING |
| 3599 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3600 | if (cm->frame_type == KEY_FRAME) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3601 | write_bitdepth_colorspace_sampling(cm, wb); |
Andrey Norkin | 28e9ce2 | 2018-01-08 10:11:21 -0800 | [diff] [blame] | 3602 | #if CONFIG_TIMING_INFO_IN_SEQ_HEADERS |
| 3603 | // timing_info |
| 3604 | write_timing_info_header(cm, wb); |
| 3605 | #endif |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3606 | #if CONFIG_FILM_GRAIN |
| 3607 | aom_wb_write_bit(wb, cm->film_grain_params_present); |
| 3608 | #endif |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3609 | #if CONFIG_FRAME_SIZE |
| 3610 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3611 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3612 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3613 | #endif |
Hui Su | 8587878 | 2017-11-07 14:56:31 -0800 | [diff] [blame] | 3614 | #if CONFIG_INTRABC |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 3615 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
| 3616 | assert(av1_superres_unscaled(cm) || |
| 3617 | !(cm->allow_intrabc && NO_FILTER_FOR_IBC)); |
| 3618 | if (cm->allow_screen_content_tools && |
| 3619 | (av1_superres_unscaled(cm) || !NO_FILTER_FOR_IBC)) |
| 3620 | #else |
| 3621 | if (cm->allow_screen_content_tools) |
| 3622 | #endif |
| 3623 | aom_wb_write_bit(wb, cm->allow_intrabc); |
Hui Su | 8587878 | 2017-11-07 14:56:31 -0800 | [diff] [blame] | 3624 | #endif // CONFIG_INTRABC |
Hui Su | 1cb1c00 | 2018-02-05 18:21:20 -0800 | [diff] [blame] | 3625 | #if CONFIG_CDF_UPDATE_MODE |
| 3626 | aom_wb_write_literal(wb, cm->cdf_update_mode, 2); |
| 3627 | #endif // CONFIG_CDF_UPDATE_MODE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3628 | } else { |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3629 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3630 | if (!cm->error_resilient_mode) { |
| 3631 | if (cm->intra_only) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3632 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3633 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3634 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3635 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3636 | cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 3637 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3638 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3639 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3640 | } |
| 3641 | } |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3642 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3643 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3644 | |
| 3645 | if (cm->intra_only) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3646 | write_bitdepth_colorspace_sampling(cm, wb); |
Andrey Norkin | 28e9ce2 | 2018-01-08 10:11:21 -0800 | [diff] [blame] | 3647 | #if CONFIG_TIMING_INFO_IN_SEQ_HEADERS |
| 3648 | write_timing_info_header(cm, wb); |
| 3649 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3650 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3651 | #if CONFIG_FILM_GRAIN |
| 3652 | aom_wb_write_bit(wb, cm->film_grain_params_present); |
| 3653 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3654 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3655 | #if CONFIG_FRAME_SIZE |
| 3656 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3657 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3658 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3659 | #endif |
Hui Su | df89ee3 | 2017-11-21 11:47:58 -0800 | [diff] [blame] | 3660 | #if CONFIG_INTRABC |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 3661 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
| 3662 | assert(av1_superres_unscaled(cm) || |
| 3663 | !(cm->allow_intrabc && NO_FILTER_FOR_IBC)); |
| 3664 | if (cm->allow_screen_content_tools && |
| 3665 | (av1_superres_unscaled(cm) || !NO_FILTER_FOR_IBC)) |
| 3666 | #else |
Hui Su | df89ee3 | 2017-11-21 11:47:58 -0800 | [diff] [blame] | 3667 | if (cm->allow_screen_content_tools) |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 3668 | #endif |
Hui Su | df89ee3 | 2017-11-21 11:47:58 -0800 | [diff] [blame] | 3669 | aom_wb_write_bit(wb, cm->allow_intrabc); |
| 3670 | #endif // CONFIG_INTRABC |
Hui Su | 1cb1c00 | 2018-02-05 18:21:20 -0800 | [diff] [blame] | 3671 | #if CONFIG_CDF_UPDATE_MODE |
| 3672 | aom_wb_write_literal(wb, cm->cdf_update_mode, 2); |
| 3673 | #endif // CONFIG_CDF_UPDATE_MODE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3674 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3675 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3676 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3677 | if (!cpi->refresh_frame_mask) { |
| 3678 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 3679 | // will not be used as a reference |
| 3680 | cm->is_reference_frame = 0; |
| 3681 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3682 | |
Zoe Liu | 6b172bb | 2018-02-15 17:41:41 -0800 | [diff] [blame] | 3683 | #if CONFIG_FRAME_REFS_SIGNALING |
| 3684 | // TODO(zoeliu@google.com): To complete the encoder-side implementation |
| 3685 | // for the scenario cm->frame_refs_short_signaling == 1. |
| 3686 | assert(cm->frame_refs_short_signaling == 0); |
| 3687 | // NOTE: Error resilient mode turns off frame_refs_short_signaling |
| 3688 | // automatically. |
| 3689 | if (!cm->error_resilient_mode) |
| 3690 | aom_wb_write_bit(wb, cm->frame_refs_short_signaling); |
| 3691 | else |
| 3692 | assert(cm->frame_refs_short_signaling == 0); |
| 3693 | |
| 3694 | if (cm->frame_refs_short_signaling) { |
| 3695 | assert(get_ref_frame_map_idx(cpi, LAST_FRAME) != INVALID_IDX); |
| 3696 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, LAST_FRAME), |
| 3697 | REF_FRAMES_LOG2); |
| 3698 | assert(get_ref_frame_map_idx(cpi, GOLDEN_FRAME) != INVALID_IDX); |
| 3699 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, GOLDEN_FRAME), |
| 3700 | REF_FRAMES_LOG2); |
| 3701 | } |
| 3702 | #endif // CONFIG_FRAME_REFS_SIGNALING |
| 3703 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 3704 | for (MV_REFERENCE_FRAME ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; |
| 3705 | ++ref_frame) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3706 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
Zoe Liu | 6b172bb | 2018-02-15 17:41:41 -0800 | [diff] [blame] | 3707 | #if CONFIG_FRAME_REFS_SIGNALING |
| 3708 | if (!cm->frame_refs_short_signaling) |
| 3709 | #endif // CONFIG_FRAME_REFS_SIGNALING |
| 3710 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 3711 | REF_FRAMES_LOG2); |
| 3712 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3713 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3714 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 3715 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3716 | int frame_id_len = cm->seq_params.frame_id_length; |
| 3717 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3718 | int delta_frame_id_minus1 = |
| 3719 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 3720 | (1 << frame_id_len)) % |
| 3721 | (1 << frame_id_len)) - |
| 3722 | 1; |
| 3723 | if (delta_frame_id_minus1 < 0 || |
| 3724 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 3725 | cm->invalid_delta_frame_id_minus1 = 1; |
| 3726 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3727 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3728 | #endif // CONFIG_REFERENCE_BUFFER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3729 | } |
| 3730 | |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3731 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3732 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3733 | write_frame_size_with_refs(cpi, wb); |
| 3734 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3735 | write_frame_size(cm, frame_size_override_flag, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3736 | } |
| 3737 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3738 | write_frame_size_with_refs(cpi, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3739 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3740 | |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3741 | #if CONFIG_AMVR |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3742 | if (cm->cur_frame_force_integer_mv) { |
| 3743 | cm->allow_high_precision_mv = 0; |
| 3744 | } else { |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3745 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3746 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3747 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3748 | } |
| 3749 | #else |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3750 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3751 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3752 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3753 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3754 | fix_interp_filter(cm, cpi->td.counts); |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 3755 | write_frame_interp_filter(cm->interp_filter, wb); |
Jingning Han | e17ebe9 | 2017-11-03 15:25:42 -0700 | [diff] [blame] | 3756 | if (frame_might_use_prev_frame_mvs(cm)) |
| 3757 | aom_wb_write_bit(wb, cm->use_ref_frame_mvs); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3758 | } |
| 3759 | } |
| 3760 | |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3761 | if (cm->show_frame == 0) { |
| 3762 | int arf_offset = AOMMIN( |
| 3763 | (MAX_GF_INTERVAL - 1), |
| 3764 | cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3765 | int brf_offset = |
| 3766 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 3767 | |
| 3768 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Cheng Chen | d300f0e | 2017-12-01 10:46:23 -0800 | [diff] [blame] | 3769 | aom_wb_write_literal(wb, arf_offset, FRAME_OFFSET_BITS); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3770 | } |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3771 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3772 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3773 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3774 | cm->refresh_mask = |
| 3775 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 3776 | } |
| 3777 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3778 | |
Rupert Swarbrick | 84b05ac | 2017-10-27 18:10:53 +0100 | [diff] [blame] | 3779 | #if CONFIG_EXT_TILE |
| 3780 | const int might_bwd_adapt = |
| 3781 | !(cm->error_resilient_mode || cm->large_scale_tile); |
| 3782 | #else |
| 3783 | const int might_bwd_adapt = !cm->error_resilient_mode; |
| 3784 | #endif // CONFIG_EXT_TILE |
| 3785 | if (might_bwd_adapt) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3786 | aom_wb_write_bit( |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3787 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 3788 | } |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3789 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3790 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3791 | #endif |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 3792 | |
| 3793 | #if CONFIG_TILE_INFO_FIRST |
| 3794 | write_tile_info(cm, wb); |
| 3795 | #endif |
| 3796 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3797 | encode_loopfilter(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3798 | encode_quantization(cm, wb); |
| 3799 | encode_segmentation(cm, xd, wb); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3800 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3801 | int delta_q_allowed = 1; |
| 3802 | #if !CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3803 | int i; |
| 3804 | struct segmentation *const seg = &cm->seg; |
| 3805 | int segment_quantizer_active = 0; |
| 3806 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 3807 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 3808 | segment_quantizer_active = 1; |
| 3809 | } |
| 3810 | } |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3811 | delta_q_allowed = !segment_quantizer_active; |
| 3812 | #endif |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 3813 | |
Yaowu Xu | 288f816 | 2017-10-10 15:03:22 -0700 | [diff] [blame] | 3814 | if (cm->delta_q_present_flag) assert(cm->base_qindex > 0); |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3815 | // Segment quantizer and delta_q both allowed if CONFIG_EXT_DELTA_Q |
| 3816 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3817 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 3818 | if (cm->delta_q_present_flag) { |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 3819 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3820 | xd->prev_qindex = cm->base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3821 | #if CONFIG_EXT_DELTA_Q |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3822 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
| 3823 | if (cm->delta_lf_present_flag) { |
| 3824 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2); |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 3825 | xd->prev_delta_lf_from_base = 0; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 3826 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 3827 | aom_wb_write_bit(wb, cm->delta_lf_multi); |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 3828 | const int frame_lf_count = |
| 3829 | av1_num_planes(cm) > 1 ? FRAME_LF_COUNT : FRAME_LF_COUNT - 2; |
| 3830 | for (int lf_id = 0; lf_id < frame_lf_count; ++lf_id) |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 3831 | xd->prev_delta_lf[lf_id] = 0; |
| 3832 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3833 | } |
| 3834 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3835 | } |
| 3836 | } |
| 3837 | } |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 3838 | if (!cm->all_lossless) { |
| 3839 | encode_cdef(cm, wb); |
| 3840 | } |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 3841 | #if CONFIG_LOOP_RESTORATION |
| 3842 | encode_restoration_mode(cm, wb); |
| 3843 | #endif // CONFIG_LOOP_RESTORATION |
| 3844 | write_tx_mode(cm, &cm->tx_mode, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3845 | |
| 3846 | if (cpi->allow_comp_inter_inter) { |
| 3847 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3848 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3849 | aom_wb_write_bit(wb, use_hybrid_pred); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3850 | } |
Zoe Liu | 4b847e1 | 2017-12-07 12:44:45 -0800 | [diff] [blame] | 3851 | |
| 3852 | #if CONFIG_EXT_SKIP |
| 3853 | if (cm->is_skip_mode_allowed) aom_wb_write_bit(wb, cm->skip_mode_flag); |
| 3854 | #endif // CONFIG_EXT_SKIP |
| 3855 | |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3856 | write_compound_tools(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3857 | |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 3858 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 3859 | |
Sarah Parker | f289f9f | 2017-09-12 18:50:02 -0700 | [diff] [blame] | 3860 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3861 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3862 | #if CONFIG_FILM_GRAIN |
| 3863 | if (cm->film_grain_params_present && cm->show_frame) |
| 3864 | write_film_grain_params(cm, wb); |
| 3865 | #endif |
| 3866 | |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 3867 | #if !CONFIG_TILE_INFO_FIRST |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3868 | write_tile_info(cm, wb); |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 3869 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3870 | } |
| 3871 | |
Zoe Liu | 48acf88 | 2018-02-21 12:16:50 -0800 | [diff] [blame^] | 3872 | #else // CONFIG_OBU |
| 3873 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3874 | // New function based on HLS R18 |
| 3875 | static void write_uncompressed_header_obu(AV1_COMP *cpi, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 3876 | #if CONFIG_EXT_TILE |
| 3877 | struct aom_write_bit_buffer *saved_wb, |
| 3878 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3879 | struct aom_write_bit_buffer *wb) { |
| 3880 | AV1_COMMON *const cm = &cpi->common; |
| 3881 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 3882 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3883 | // NOTE: By default all coded frames to be used as a reference |
| 3884 | cm->is_reference_frame = 1; |
| 3885 | |
| 3886 | if (cm->show_existing_frame) { |
| 3887 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 3888 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 3889 | |
| 3890 | if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) { |
| 3891 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3892 | "Buffer %d does not contain a reconstructed frame", |
| 3893 | frame_to_show); |
| 3894 | } |
| 3895 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 3896 | |
| 3897 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 3898 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
| 3899 | |
| 3900 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3901 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3902 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3903 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 3904 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 3905 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 3906 | /* Same logic as when when terminating the entropy coder */ |
| 3907 | /* Consider to have this logic only one place */ |
| 3908 | aom_wb_write_literal(wb, 0, 8); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3909 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3910 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3911 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 3912 | #if CONFIG_FILM_GRAIN |
| 3913 | if (cm->film_grain_params_present && cm->show_frame) { |
| 3914 | int flip_back_update_parameters_flag = 0; |
| 3915 | if (cm->frame_type == KEY_FRAME && |
| 3916 | cm->film_grain_params.update_parameters == 0) { |
| 3917 | cm->film_grain_params.update_parameters = 1; |
| 3918 | flip_back_update_parameters_flag = 1; |
| 3919 | } |
| 3920 | write_film_grain_params(cm, wb); |
| 3921 | |
| 3922 | if (flip_back_update_parameters_flag) |
| 3923 | cm->film_grain_params.update_parameters = 0; |
| 3924 | } |
| 3925 | #endif |
| 3926 | |
Zoe Liu | b499120 | 2017-12-21 15:31:06 -0800 | [diff] [blame] | 3927 | #if CONFIG_FWD_KF |
| 3928 | if (cm->reset_decoder_state && !frame_bufs[frame_to_show].intra_only) { |
| 3929 | aom_internal_error( |
| 3930 | &cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3931 | "show_existing_frame to reset state on non-intra_only"); |
| 3932 | } |
| 3933 | aom_wb_write_bit(wb, cm->reset_decoder_state); |
| 3934 | #endif // CONFIG_FWD_KF |
| 3935 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3936 | return; |
| 3937 | } else { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3938 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3939 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3940 | |
| 3941 | cm->frame_type = cm->intra_only ? INTRA_ONLY_FRAME : cm->frame_type; |
| 3942 | aom_wb_write_literal(wb, cm->frame_type, 2); |
| 3943 | |
| 3944 | if (cm->intra_only) cm->frame_type = INTRA_ONLY_FRAME; |
| 3945 | |
| 3946 | aom_wb_write_bit(wb, cm->show_frame); |
| 3947 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
| 3948 | |
Joe Young | db5eb4c | 2018-02-16 17:30:40 -0800 | [diff] [blame] | 3949 | #if CONFIG_INTRA_EDGE2 |
| 3950 | if (frame_is_intra_only(cm)) { |
| 3951 | aom_wb_write_bit(wb, cm->disable_intra_edge_filter); |
| 3952 | } |
| 3953 | #endif // CONFIG_INTRA_EDGE2 |
| 3954 | |
Imdad Sardharwalla | bf2cc01 | 2018-02-09 17:32:10 +0000 | [diff] [blame] | 3955 | if (cm->seq_params.force_screen_content_tools == 2) { |
| 3956 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 3957 | } else { |
| 3958 | assert(cm->allow_screen_content_tools == |
| 3959 | cm->seq_params.force_screen_content_tools); |
| 3960 | } |
| 3961 | |
| 3962 | #if CONFIG_AMVR |
| 3963 | if (cm->allow_screen_content_tools) { |
| 3964 | if (cm->seq_params.force_integer_mv == 2) { |
| 3965 | aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv); |
| 3966 | } else { |
| 3967 | assert(cm->cur_frame_force_integer_mv == cm->seq_params.force_integer_mv); |
| 3968 | } |
| 3969 | } else { |
| 3970 | assert(cm->cur_frame_force_integer_mv == 0); |
| 3971 | } |
| 3972 | #endif // CONFIG_AMVR |
| 3973 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3974 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3975 | cm->invalid_delta_frame_id_minus1 = 0; |
| 3976 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3977 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3978 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3979 | } |
| 3980 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3981 | |
| 3982 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3983 | if (cm->width > cm->seq_params.max_frame_width || |
| 3984 | cm->height > cm->seq_params.max_frame_height) { |
| 3985 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3986 | "Frame dimensions are larger than the maximum values"); |
| 3987 | } |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3988 | int frame_size_override_flag = |
| 3989 | (cm->width != cm->seq_params.max_frame_width || |
| 3990 | cm->height != cm->seq_params.max_frame_height); |
| 3991 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 3992 | #endif |
| 3993 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3994 | if (cm->frame_type == KEY_FRAME) { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3995 | #if CONFIG_FRAME_SIZE |
| 3996 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3997 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3998 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3999 | #endif |
Hui Su | ad7536b | 2017-12-13 15:48:11 -0800 | [diff] [blame] | 4000 | #if CONFIG_INTRABC |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 4001 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
| 4002 | assert(av1_superres_unscaled(cm) || |
| 4003 | !(cm->allow_intrabc && NO_FILTER_FOR_IBC)); |
| 4004 | if (cm->allow_screen_content_tools && |
| 4005 | (av1_superres_unscaled(cm) || !NO_FILTER_FOR_IBC)) |
| 4006 | #else |
| 4007 | if (cm->allow_screen_content_tools) |
| 4008 | #endif |
| 4009 | aom_wb_write_bit(wb, cm->allow_intrabc); |
Hui Su | ad7536b | 2017-12-13 15:48:11 -0800 | [diff] [blame] | 4010 | #endif // CONFIG_INTRABC |
Hui Su | 1cb1c00 | 2018-02-05 18:21:20 -0800 | [diff] [blame] | 4011 | #if CONFIG_CDF_UPDATE_MODE |
| 4012 | aom_wb_write_literal(wb, cm->cdf_update_mode, 2); |
| 4013 | #endif // CONFIG_CDF_UPDATE_MODE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4014 | } else if (cm->frame_type == INTRA_ONLY_FRAME) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4015 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4016 | if (!cm->error_resilient_mode) { |
| 4017 | if (cm->intra_only) { |
| 4018 | aom_wb_write_bit(wb, |
| 4019 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4020 | } |
| 4021 | } |
| 4022 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4023 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4024 | |
| 4025 | if (cm->intra_only) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4026 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4027 | #if CONFIG_FRAME_SIZE |
| 4028 | write_frame_size(cm, frame_size_override_flag, wb); |
| 4029 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4030 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4031 | #endif |
Hui Su | ad7536b | 2017-12-13 15:48:11 -0800 | [diff] [blame] | 4032 | #if CONFIG_INTRABC |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 4033 | #if CONFIG_HORZONLY_FRAME_SUPERRES |
| 4034 | assert(av1_superres_unscaled(cm) || |
| 4035 | !(cm->allow_intrabc && NO_FILTER_FOR_IBC)); |
| 4036 | if (cm->allow_screen_content_tools && |
| 4037 | (av1_superres_unscaled(cm) || !NO_FILTER_FOR_IBC)) |
| 4038 | #else |
Hui Su | ad7536b | 2017-12-13 15:48:11 -0800 | [diff] [blame] | 4039 | if (cm->allow_screen_content_tools) |
David Barker | 218556e | 2018-02-14 14:23:12 +0000 | [diff] [blame] | 4040 | #endif |
Hui Su | ad7536b | 2017-12-13 15:48:11 -0800 | [diff] [blame] | 4041 | aom_wb_write_bit(wb, cm->allow_intrabc); |
| 4042 | #endif // CONFIG_INTRABC |
Hui Su | 1cb1c00 | 2018-02-05 18:21:20 -0800 | [diff] [blame] | 4043 | #if CONFIG_CDF_UPDATE_MODE |
| 4044 | aom_wb_write_literal(wb, cm->cdf_update_mode, 2); |
| 4045 | #endif // CONFIG_CDF_UPDATE_MODE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4046 | } |
Zoe Liu | 48acf88 | 2018-02-21 12:16:50 -0800 | [diff] [blame^] | 4047 | } else if (cm->frame_type == INTER_FRAME || cm->frame_type == S_FRAME) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4048 | MV_REFERENCE_FRAME ref_frame; |
Zoe Liu | 48acf88 | 2018-02-21 12:16:50 -0800 | [diff] [blame^] | 4049 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4050 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4051 | if (!cm->error_resilient_mode) { |
| 4052 | aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 4053 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
| 4054 | aom_wb_write_bit(wb, |
| 4055 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4056 | } |
| 4057 | #endif |
| 4058 | |
Zoe Liu | 48acf88 | 2018-02-21 12:16:50 -0800 | [diff] [blame^] | 4059 | if (cm->frame_type == INTER_FRAME) { |
| 4060 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
| 4061 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
| 4062 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4063 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4064 | if (!cpi->refresh_frame_mask) { |
| 4065 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 4066 | // will not be used as a reference |
| 4067 | cm->is_reference_frame = 0; |
| 4068 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4069 | |
| 4070 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 4071 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
| 4072 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 4073 | REF_FRAMES_LOG2); |
Zoe Liu | 48acf88 | 2018-02-21 12:16:50 -0800 | [diff] [blame^] | 4074 | if (cm->frame_type == S_FRAME) { |
| 4075 | assert(cm->ref_frame_sign_bias[ref_frame] == 0); |
| 4076 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4077 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4078 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 4079 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4080 | int frame_id_len = cm->seq_params.frame_id_length; |
| 4081 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4082 | int delta_frame_id_minus1 = |
| 4083 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 4084 | (1 << frame_id_len)) % |
| 4085 | (1 << frame_id_len)) - |
| 4086 | 1; |
| 4087 | if (delta_frame_id_minus1 < 0 || |
| 4088 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 4089 | cm->invalid_delta_frame_id_minus1 = 1; |
| 4090 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4091 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4092 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4093 | } |
| 4094 | |
| 4095 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4096 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4097 | write_frame_size_with_refs(cpi, wb); |
| 4098 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4099 | write_frame_size(cm, frame_size_override_flag, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4100 | } |
| 4101 | #else |
| 4102 | write_frame_size_with_refs(cpi, wb); |
| 4103 | #endif |
| 4104 | |
| 4105 | #if CONFIG_AMVR |
RogerZhou | 0bf3690 | 2017-12-19 13:51:10 -0800 | [diff] [blame] | 4106 | if (cm->cur_frame_force_integer_mv) { |
| 4107 | cm->allow_high_precision_mv = 0; |
| 4108 | } else { |
| 4109 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
| 4110 | } |
| 4111 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4112 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
RogerZhou | 0bf3690 | 2017-12-19 13:51:10 -0800 | [diff] [blame] | 4113 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4114 | fix_interp_filter(cm, cpi->td.counts); |
| 4115 | write_frame_interp_filter(cm->interp_filter, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4116 | if (frame_might_use_prev_frame_mvs(cm)) { |
Jingning Han | 923f827 | 2017-12-14 10:50:12 -0800 | [diff] [blame] | 4117 | aom_wb_write_bit(wb, cm->use_ref_frame_mvs); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4118 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4119 | } |
| 4120 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4121 | if (cm->show_frame == 0) { |
| 4122 | int arf_offset = AOMMIN( |
| 4123 | (MAX_GF_INTERVAL - 1), |
| 4124 | cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4125 | int brf_offset = |
| 4126 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 4127 | |
| 4128 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Cheng Chen | d300f0e | 2017-12-01 10:46:23 -0800 | [diff] [blame] | 4129 | aom_wb_write_literal(wb, arf_offset, FRAME_OFFSET_BITS); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4130 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4131 | |
| 4132 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4133 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4134 | cm->refresh_mask = |
| 4135 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 4136 | } |
| 4137 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4138 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4139 | #if CONFIG_EXT_TILE |
| 4140 | const int might_bwd_adapt = |
| 4141 | !(cm->error_resilient_mode || cm->large_scale_tile); |
| 4142 | #else |
| 4143 | const int might_bwd_adapt = !cm->error_resilient_mode; |
| 4144 | #endif // CONFIG_EXT_TILE |
| 4145 | |
| 4146 | if (might_bwd_adapt) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4147 | aom_wb_write_bit( |
| 4148 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 4149 | } |
| 4150 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4151 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
| 4152 | #endif |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 4153 | #if CONFIG_TILE_INFO_FIRST |
| 4154 | write_tile_info(cm, wb); |
| 4155 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4156 | encode_loopfilter(cm, wb); |
| 4157 | encode_quantization(cm, wb); |
| 4158 | encode_segmentation(cm, xd, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4159 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4160 | int delta_q_allowed = 1; |
| 4161 | #if !CONFIG_EXT_DELTA_Q |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4162 | int i; |
| 4163 | struct segmentation *const seg = &cm->seg; |
| 4164 | int segment_quantizer_active = 0; |
| 4165 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 4166 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 4167 | segment_quantizer_active = 1; |
| 4168 | } |
| 4169 | } |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4170 | delta_q_allowed = !segment_quantizer_active; |
| 4171 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4172 | |
| 4173 | if (cm->delta_q_present_flag) |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4174 | assert(delta_q_allowed == 1 && cm->base_qindex > 0); |
| 4175 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4176 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 4177 | if (cm->delta_q_present_flag) { |
| 4178 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2); |
| 4179 | xd->prev_qindex = cm->base_qindex; |
| 4180 | #if CONFIG_EXT_DELTA_Q |
Hui Su | 22a51d9 | 2018-01-16 13:02:18 -0800 | [diff] [blame] | 4181 | #if CONFIG_INTRABC |
| 4182 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) |
| 4183 | assert(cm->delta_lf_present_flag == 0); |
| 4184 | else |
| 4185 | #endif // CONFIG_INTRABC |
| 4186 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4187 | if (cm->delta_lf_present_flag) { |
| 4188 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2); |
Yaowu Xu | b02d0b1 | 2017-12-15 01:32:34 +0000 | [diff] [blame] | 4189 | xd->prev_delta_lf_from_base = 0; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 4190 | #if CONFIG_LOOPFILTER_LEVEL |
Yaowu Xu | b02d0b1 | 2017-12-15 01:32:34 +0000 | [diff] [blame] | 4191 | aom_wb_write_bit(wb, cm->delta_lf_multi); |
Imdad Sardharwalla | f74b4ab | 2018-02-20 17:22:42 +0000 | [diff] [blame] | 4192 | const int frame_lf_count = |
| 4193 | av1_num_planes(cm) > 1 ? FRAME_LF_COUNT : FRAME_LF_COUNT - 2; |
| 4194 | for (int lf_id = 0; lf_id < frame_lf_count; ++lf_id) |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 4195 | xd->prev_delta_lf[lf_id] = 0; |
| 4196 | #endif // CONFIG_LOOPFILTER_LEVEL |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4197 | } |
| 4198 | #endif // CONFIG_EXT_DELTA_Q |
| 4199 | } |
| 4200 | } |
| 4201 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4202 | if (!cm->all_lossless) { |
| 4203 | encode_cdef(cm, wb); |
| 4204 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4205 | #if CONFIG_LOOP_RESTORATION |
| 4206 | encode_restoration_mode(cm, wb); |
| 4207 | #endif // CONFIG_LOOP_RESTORATION |
| 4208 | write_tx_mode(cm, &cm->tx_mode, wb); |
| 4209 | |
| 4210 | if (cpi->allow_comp_inter_inter) { |
| 4211 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4212 | |
| 4213 | aom_wb_write_bit(wb, use_hybrid_pred); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4214 | } |
Zoe Liu | 4b847e1 | 2017-12-07 12:44:45 -0800 | [diff] [blame] | 4215 | |
| 4216 | #if CONFIG_EXT_SKIP |
| 4217 | #if 0 |
| 4218 | printf("\n[ENCODER] Frame=%d, is_skip_mode_allowed=%d, skip_mode_flag=%d\n\n", |
| 4219 | (int)cm->frame_offset, cm->is_skip_mode_allowed, cm->skip_mode_flag); |
| 4220 | #endif // 0 |
| 4221 | if (cm->is_skip_mode_allowed) aom_wb_write_bit(wb, cm->skip_mode_flag); |
| 4222 | #endif // CONFIG_EXT_SKIP |
| 4223 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4224 | write_compound_tools(cm, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4225 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4226 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4227 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4228 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4229 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 4230 | #if CONFIG_FILM_GRAIN |
| 4231 | if (cm->film_grain_params_present && cm->show_frame) { |
| 4232 | int flip_back_update_parameters_flag = 0; |
| 4233 | if (cm->frame_type == KEY_FRAME && |
| 4234 | cm->film_grain_params.update_parameters == 0) { |
| 4235 | cm->film_grain_params.update_parameters = 1; |
| 4236 | flip_back_update_parameters_flag = 1; |
| 4237 | } |
| 4238 | write_film_grain_params(cm, wb); |
| 4239 | |
| 4240 | if (flip_back_update_parameters_flag) |
| 4241 | cm->film_grain_params.update_parameters = 0; |
| 4242 | } |
| 4243 | #endif |
| 4244 | |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 4245 | #if !CONFIG_TILE_INFO_FIRST |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4246 | write_tile_info(cm, wb); |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4247 | |
| 4248 | #if CONFIG_EXT_TILE |
| 4249 | *saved_wb = *wb; |
| 4250 | // Write tile size magnitudes |
Jingning Han | 2e7d66d | 2018-01-02 11:27:48 -0800 | [diff] [blame] | 4251 | if (cm->tile_rows * cm->tile_cols > 1 && cm->large_scale_tile) { |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4252 | // Note that the last item in the uncompressed header is the data |
| 4253 | // describing tile configuration. |
| 4254 | // Number of bytes in tile column size - 1 |
| 4255 | aom_wb_write_literal(wb, 0, 2); |
| 4256 | |
| 4257 | // Number of bytes in tile size - 1 |
| 4258 | aom_wb_write_literal(wb, 0, 2); |
| 4259 | } |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 4260 | #endif |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4261 | #endif // !CONFIG_TILE_INFO_FIRST |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4262 | } |
| 4263 | #endif // CONFIG_OBU |
| 4264 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4265 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4266 | static int choose_size_bytes(uint32_t size, int spare_msbs) { |
| 4267 | // Choose the number of bytes required to represent size, without |
| 4268 | // using the 'spare_msbs' number of most significant bits. |
| 4269 | |
| 4270 | // Make sure we will fit in 4 bytes to start with.. |
| 4271 | if (spare_msbs > 0 && size >> (32 - spare_msbs) != 0) return -1; |
| 4272 | |
| 4273 | // Normalise to 32 bits |
| 4274 | size <<= spare_msbs; |
| 4275 | |
| 4276 | if (size >> 24 != 0) |
| 4277 | return 4; |
| 4278 | else if (size >> 16 != 0) |
| 4279 | return 3; |
| 4280 | else if (size >> 8 != 0) |
| 4281 | return 2; |
| 4282 | else |
| 4283 | return 1; |
| 4284 | } |
| 4285 | |
| 4286 | static void mem_put_varsize(uint8_t *const dst, const int sz, const int val) { |
| 4287 | switch (sz) { |
| 4288 | case 1: dst[0] = (uint8_t)(val & 0xff); break; |
| 4289 | case 2: mem_put_le16(dst, val); break; |
| 4290 | case 3: mem_put_le24(dst, val); break; |
| 4291 | case 4: mem_put_le32(dst, val); break; |
James Zern | 06c372d | 2017-04-20 16:08:29 -0700 | [diff] [blame] | 4292 | default: assert(0 && "Invalid size"); break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4293 | } |
| 4294 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4295 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4296 | static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4297 | const uint32_t data_size, const uint32_t max_tile_size, |
| 4298 | const uint32_t max_tile_col_size, |
| 4299 | int *const tile_size_bytes, |
| 4300 | int *const tile_col_size_bytes) { |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4301 | // Choose the tile size bytes (tsb) and tile column size bytes (tcsb) |
| 4302 | int tsb; |
| 4303 | int tcsb; |
| 4304 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4305 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4306 | if (cm->large_scale_tile) { |
| 4307 | // The top bit in the tile size field indicates tile copy mode, so we |
| 4308 | // have 1 less bit to code the tile size |
| 4309 | tsb = choose_size_bytes(max_tile_size, 1); |
| 4310 | tcsb = choose_size_bytes(max_tile_col_size, 0); |
| 4311 | } else { |
| 4312 | #endif // CONFIG_EXT_TILE |
| 4313 | tsb = choose_size_bytes(max_tile_size, 0); |
| 4314 | tcsb = 4; // This is ignored |
| 4315 | (void)max_tile_col_size; |
| 4316 | #if CONFIG_EXT_TILE |
| 4317 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4318 | #endif // CONFIG_EXT_TILE |
| 4319 | |
| 4320 | assert(tsb > 0); |
| 4321 | assert(tcsb > 0); |
| 4322 | |
| 4323 | *tile_size_bytes = tsb; |
| 4324 | *tile_col_size_bytes = tcsb; |
| 4325 | |
| 4326 | if (tsb == 4 && tcsb == 4) { |
| 4327 | return data_size; |
| 4328 | } else { |
| 4329 | uint32_t wpos = 0; |
| 4330 | uint32_t rpos = 0; |
| 4331 | |
| 4332 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4333 | if (cm->large_scale_tile) { |
| 4334 | int tile_row; |
| 4335 | int tile_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4336 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4337 | for (tile_col = 0; tile_col < cm->tile_cols; tile_col++) { |
| 4338 | // All but the last column has a column header |
| 4339 | if (tile_col < cm->tile_cols - 1) { |
| 4340 | uint32_t tile_col_size = mem_get_le32(dst + rpos); |
| 4341 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4342 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4343 | // Adjust the tile column size by the number of bytes removed |
| 4344 | // from the tile size fields. |
| 4345 | tile_col_size -= (4 - tsb) * cm->tile_rows; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4346 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4347 | mem_put_varsize(dst + wpos, tcsb, tile_col_size); |
| 4348 | wpos += tcsb; |
| 4349 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4350 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4351 | for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) { |
| 4352 | // All, including the last row has a header |
| 4353 | uint32_t tile_header = mem_get_le32(dst + rpos); |
| 4354 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4355 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4356 | // If this is a copy tile, we need to shift the MSB to the |
| 4357 | // top bit of the new width, and there is no data to copy. |
| 4358 | if (tile_header >> 31 != 0) { |
| 4359 | if (tsb < 4) tile_header >>= 32 - 8 * tsb; |
| 4360 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4361 | wpos += tsb; |
| 4362 | } else { |
| 4363 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4364 | wpos += tsb; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4365 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4366 | memmove(dst + wpos, dst + rpos, tile_header); |
| 4367 | rpos += tile_header; |
| 4368 | wpos += tile_header; |
| 4369 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4370 | } |
| 4371 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4372 | } else { |
| 4373 | #endif // CONFIG_EXT_TILE |
| 4374 | const int n_tiles = cm->tile_cols * cm->tile_rows; |
| 4375 | int n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4376 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4377 | for (n = 0; n < n_tiles; n++) { |
| 4378 | int tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4379 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4380 | if (n == n_tiles - 1) { |
| 4381 | tile_size = data_size - rpos; |
| 4382 | } else { |
| 4383 | tile_size = mem_get_le32(dst + rpos); |
| 4384 | rpos += 4; |
| 4385 | mem_put_varsize(dst + wpos, tsb, tile_size); |
| 4386 | wpos += tsb; |
| 4387 | } |
| 4388 | |
| 4389 | memmove(dst + wpos, dst + rpos, tile_size); |
| 4390 | |
| 4391 | rpos += tile_size; |
| 4392 | wpos += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4393 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4394 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4395 | } |
| 4396 | #endif // CONFIG_EXT_TILE |
| 4397 | |
| 4398 | assert(rpos > wpos); |
| 4399 | assert(rpos == data_size); |
| 4400 | |
| 4401 | return wpos; |
| 4402 | } |
| 4403 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4404 | #endif |
| 4405 | |
| 4406 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4407 | |
| 4408 | uint32_t write_obu_header(OBU_TYPE obu_type, int obu_extension, |
| 4409 | uint8_t *const dst) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4410 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4411 | uint32_t size = 0; |
| 4412 | |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4413 | // first bit is obu_forbidden_bit according to R19 |
| 4414 | aom_wb_write_literal(&wb, 0, 1); |
| 4415 | aom_wb_write_literal(&wb, (int)obu_type, 4); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4416 | aom_wb_write_literal(&wb, 0, 2); |
| 4417 | aom_wb_write_literal(&wb, obu_extension ? 1 : 0, 1); |
| 4418 | if (obu_extension) { |
| 4419 | aom_wb_write_literal(&wb, obu_extension & 0xFF, 8); |
| 4420 | } |
| 4421 | |
| 4422 | size = aom_wb_bytes_written(&wb); |
| 4423 | return size; |
| 4424 | } |
| 4425 | |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4426 | #if CONFIG_OBU_SIZING |
| 4427 | int write_uleb_obu_size(uint32_t obu_size, uint8_t *dest) { |
| 4428 | size_t coded_obu_size = 0; |
| 4429 | |
Tom Finegan | f412906 | 2018-02-08 08:32:42 -0800 | [diff] [blame] | 4430 | if (aom_uleb_encode(obu_size, sizeof(obu_size), dest, &coded_obu_size) != 0) |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4431 | return AOM_CODEC_ERROR; |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4432 | |
| 4433 | return AOM_CODEC_OK; |
| 4434 | } |
| 4435 | #endif // CONFIG_OBU_SIZING |
| 4436 | |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4437 | static uint32_t write_sequence_header_obu(AV1_COMP *cpi, uint8_t *const dst |
| 4438 | #if CONFIG_SCALABILITY |
| 4439 | , |
| 4440 | uint8_t enhancement_layers_cnt) { |
| 4441 | #else |
Johann | b0ef6ff | 2018-02-08 14:32:21 -0800 | [diff] [blame] | 4442 | ) { |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4443 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4444 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4445 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4446 | uint32_t size = 0; |
| 4447 | |
| 4448 | write_profile(cm->profile, &wb); |
| 4449 | |
| 4450 | aom_wb_write_literal(&wb, 0, 4); |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4451 | #if CONFIG_SCALABILITY |
| 4452 | aom_wb_write_literal(&wb, enhancement_layers_cnt, 2); |
| 4453 | int i; |
| 4454 | for (i = 1; i <= enhancement_layers_cnt; i++) { |
| 4455 | aom_wb_write_literal(&wb, 0, 4); |
| 4456 | } |
| 4457 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4458 | |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 4459 | write_sequence_header(cpi, &wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4460 | |
| 4461 | // color_config |
| 4462 | write_bitdepth_colorspace_sampling(cm, &wb); |
| 4463 | |
Andrey Norkin | 28e9ce2 | 2018-01-08 10:11:21 -0800 | [diff] [blame] | 4464 | #if CONFIG_TIMING_INFO_IN_SEQ_HEADERS |
| 4465 | // timing_info |
| 4466 | write_timing_info_header(cm, &wb); |
| 4467 | #endif |
| 4468 | |
Andrey Norkin | 6f1c2f7 | 2018-01-15 20:08:52 -0800 | [diff] [blame] | 4469 | #if CONFIG_FILM_GRAIN |
| 4470 | aom_wb_write_bit(&wb, cm->film_grain_params_present); |
| 4471 | #endif |
| 4472 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4473 | size = aom_wb_bytes_written(&wb); |
| 4474 | return size; |
| 4475 | } |
| 4476 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4477 | static uint32_t write_frame_header_obu(AV1_COMP *cpi, |
| 4478 | #if CONFIG_EXT_TILE |
| 4479 | struct aom_write_bit_buffer *saved_wb, |
| 4480 | #endif |
| 4481 | uint8_t *const dst) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4482 | AV1_COMMON *const cm = &cpi->common; |
| 4483 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4484 | uint32_t total_size = 0; |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 4485 | uint32_t uncompressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4486 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4487 | write_uncompressed_header_obu(cpi, |
| 4488 | #if CONFIG_EXT_TILE |
| 4489 | saved_wb, |
| 4490 | #endif |
| 4491 | &wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4492 | |
| 4493 | if (cm->show_existing_frame) { |
| 4494 | total_size = aom_wb_bytes_written(&wb); |
| 4495 | return total_size; |
| 4496 | } |
| 4497 | |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 4498 | #if !CONFIG_TILE_INFO_FIRST |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4499 | // write the tile length code (Always 4 bytes for now) |
| 4500 | #if CONFIG_EXT_TILE |
| 4501 | if (!cm->large_scale_tile) |
| 4502 | #endif |
| 4503 | aom_wb_write_literal(&wb, 3, 2); |
Cyril Concolato | 3b5afc1 | 2017-12-15 12:54:15 -0800 | [diff] [blame] | 4504 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4505 | |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 4506 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 4507 | total_size = uncompressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4508 | return total_size; |
| 4509 | } |
| 4510 | |
| 4511 | static uint32_t write_tile_group_header(uint8_t *const dst, int startTile, |
| 4512 | int endTile, int tiles_log2) { |
| 4513 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4514 | uint32_t size = 0; |
| 4515 | |
| 4516 | aom_wb_write_literal(&wb, startTile, tiles_log2); |
| 4517 | aom_wb_write_literal(&wb, endTile, tiles_log2); |
| 4518 | |
| 4519 | size = aom_wb_bytes_written(&wb); |
| 4520 | return size; |
| 4521 | } |
| 4522 | |
| 4523 | static uint32_t write_tiles_in_tg_obus(AV1_COMP *const cpi, uint8_t *const dst, |
| 4524 | unsigned int *max_tile_size, |
| 4525 | unsigned int *max_tile_col_size, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4526 | #if CONFIG_EXT_TILE |
| 4527 | struct aom_write_bit_buffer *saved_wb, |
| 4528 | #endif |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4529 | uint8_t obu_extension_header) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4530 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4531 | aom_writer mode_bc; |
| 4532 | int tile_row, tile_col; |
| 4533 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
| 4534 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
| 4535 | uint32_t total_size = 0; |
| 4536 | const int tile_cols = cm->tile_cols; |
| 4537 | const int tile_rows = cm->tile_rows; |
| 4538 | unsigned int tile_size = 0; |
| 4539 | const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; |
| 4540 | // Fixed size tile groups for the moment |
| 4541 | const int num_tg_hdrs = cm->num_tg; |
| 4542 | const int tg_size = |
| 4543 | #if CONFIG_EXT_TILE |
| 4544 | (cm->large_scale_tile) |
| 4545 | ? 1 |
| 4546 | : |
| 4547 | #endif // CONFIG_EXT_TILE |
| 4548 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
| 4549 | int tile_count = 0; |
| 4550 | int curr_tg_data_size = 0; |
| 4551 | uint8_t *data = dst; |
| 4552 | int new_tg = 1; |
| 4553 | #if CONFIG_EXT_TILE |
| 4554 | const int have_tiles = tile_cols * tile_rows > 1; |
| 4555 | #endif |
| 4556 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4557 | cm->largest_tile_id = 0; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4558 | *max_tile_size = 0; |
| 4559 | *max_tile_col_size = 0; |
| 4560 | |
| 4561 | #if CONFIG_EXT_TILE |
| 4562 | if (cm->large_scale_tile) { |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4563 | uint32_t tg_hdr_size = |
| 4564 | write_obu_header(OBU_TILE_GROUP, 0, data + PRE_OBU_SIZE_BYTES); |
Jingning Han | 5737b4c | 2018-01-02 10:27:58 -0800 | [diff] [blame] | 4565 | tg_hdr_size += PRE_OBU_SIZE_BYTES; |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4566 | data += tg_hdr_size; |
| 4567 | |
| 4568 | int tile_size_bytes; |
| 4569 | int tile_col_size_bytes; |
| 4570 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4571 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4572 | TileInfo tile_info; |
| 4573 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4574 | const uint32_t col_offset = total_size; |
| 4575 | |
| 4576 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4577 | |
| 4578 | // The last column does not have a column header |
| 4579 | if (!is_last_col) total_size += 4; |
| 4580 | |
| 4581 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4582 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4583 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4584 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4585 | const int data_offset = have_tiles ? 4 : 0; |
| 4586 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4587 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4588 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4589 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4590 | buf->data = dst + total_size + tg_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4591 | |
| 4592 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 4593 | // even for the last one, unless no tiling is used at all. |
| 4594 | total_size += data_offset; |
| 4595 | // Initialise tile context from the frame context |
| 4596 | this_tile->tctx = *cm->fc; |
| 4597 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 4598 | mode_bc.allow_update_cdf = !cm->large_scale_tile; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4599 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 4600 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 4601 | assert(tok == tok_end); |
| 4602 | aom_stop_encode(&mode_bc); |
| 4603 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4604 | buf->size = tile_size; |
| 4605 | |
| 4606 | // Record the maximum tile size we see, so we can compact headers later. |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4607 | if (tile_size > *max_tile_size) { |
| 4608 | *max_tile_size = tile_size; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4609 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4610 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4611 | |
| 4612 | if (have_tiles) { |
| 4613 | // tile header: size of this tile, or copy offset |
| 4614 | uint32_t tile_header = tile_size; |
| 4615 | const int tile_copy_mode = |
| 4616 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 4617 | ? 1 |
| 4618 | : 0; |
| 4619 | |
| 4620 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 4621 | // Very low chances to have copy tiles on the key frames, so don't |
| 4622 | // search on key frames to reduce unnecessary search. |
| 4623 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 4624 | const int idendical_tile_offset = |
| 4625 | find_identical_tile(tile_row, tile_col, tile_buffers); |
| 4626 | |
| 4627 | if (idendical_tile_offset > 0) { |
| 4628 | tile_size = 0; |
| 4629 | tile_header = idendical_tile_offset | 0x80; |
| 4630 | tile_header <<= 24; |
| 4631 | } |
| 4632 | } |
| 4633 | |
| 4634 | mem_put_le32(buf->data, tile_header); |
| 4635 | } |
| 4636 | |
| 4637 | total_size += tile_size; |
| 4638 | } |
| 4639 | |
| 4640 | if (!is_last_col) { |
| 4641 | uint32_t col_size = total_size - col_offset - 4; |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4642 | mem_put_le32(dst + col_offset + tg_hdr_size, col_size); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4643 | |
| 4644 | // If it is not final packing, record the maximum tile column size we |
| 4645 | // see, otherwise, check if the tile size is out of the range. |
| 4646 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 4647 | } |
| 4648 | } |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4649 | |
| 4650 | if (have_tiles) { |
| 4651 | total_size = |
| 4652 | remux_tiles(cm, data, total_size, *max_tile_size, *max_tile_col_size, |
| 4653 | &tile_size_bytes, &tile_col_size_bytes); |
| 4654 | } |
| 4655 | |
| 4656 | // Now fill in the gaps in the uncompressed header. |
| 4657 | if (have_tiles) { |
| 4658 | assert(tile_col_size_bytes >= 1 && tile_col_size_bytes <= 4); |
| 4659 | aom_wb_write_literal(saved_wb, tile_col_size_bytes - 1, 2); |
| 4660 | |
| 4661 | assert(tile_size_bytes >= 1 && tile_size_bytes <= 4); |
| 4662 | aom_wb_write_literal(saved_wb, tile_size_bytes - 1, 2); |
| 4663 | } |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4664 | total_size += tg_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4665 | } else { |
| 4666 | #endif // CONFIG_EXT_TILE |
| 4667 | |
| 4668 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4669 | TileInfo tile_info; |
| 4670 | const int is_last_row = (tile_row == tile_rows - 1); |
| 4671 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4672 | |
| 4673 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4674 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4675 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4676 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4677 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4678 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4679 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4680 | const int is_last_tile = is_last_col && is_last_row; |
| 4681 | int is_last_tile_in_tg = 0; |
| 4682 | |
| 4683 | if (new_tg) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4684 | data = dst + total_size; |
| 4685 | // A new tile group begins at this tile. Write the obu header and |
| 4686 | // tile group header |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4687 | curr_tg_data_size = write_obu_header( |
| 4688 | OBU_TILE_GROUP, obu_extension_header, data + PRE_OBU_SIZE_BYTES); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4689 | if (n_log2_tiles) |
| 4690 | curr_tg_data_size += write_tile_group_header( |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4691 | data + curr_tg_data_size + PRE_OBU_SIZE_BYTES, tile_idx, |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4692 | AOMMIN(tile_idx + tg_size - 1, tile_cols * tile_rows - 1), |
| 4693 | n_log2_tiles); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4694 | total_size += curr_tg_data_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4695 | new_tg = 0; |
| 4696 | tile_count = 0; |
| 4697 | } |
| 4698 | tile_count++; |
| 4699 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4700 | |
| 4701 | if (tile_count == tg_size || tile_idx == (tile_cols * tile_rows - 1)) { |
| 4702 | is_last_tile_in_tg = 1; |
| 4703 | new_tg = 1; |
| 4704 | } else { |
| 4705 | is_last_tile_in_tg = 0; |
| 4706 | } |
| 4707 | |
| 4708 | #if CONFIG_DEPENDENT_HORZTILES |
| 4709 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
| 4710 | #endif |
| 4711 | buf->data = dst + total_size; |
| 4712 | |
Tom Finegan | ff86395 | 2017-12-22 11:41:14 -0800 | [diff] [blame] | 4713 | // The last tile of the tile group does not have a header. |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4714 | if (!is_last_tile_in_tg) total_size += 4; |
| 4715 | |
| 4716 | // Initialise tile context from the frame context |
| 4717 | this_tile->tctx = *cm->fc; |
| 4718 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 4719 | mode_bc.allow_update_cdf = 1; |
Soo-Chul Han | 13f0d9c | 2017-10-22 21:55:52 -0400 | [diff] [blame] | 4720 | #if CONFIG_LOOP_RESTORATION |
Debargha Mukherjee | a78c8f5 | 2018-01-31 11:14:38 -0800 | [diff] [blame] | 4721 | const int num_planes = av1_num_planes(cm); |
Imdad Sardharwalla | af8e264 | 2018-01-19 11:46:34 +0000 | [diff] [blame] | 4722 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd, num_planes); |
Soo-Chul Han | 13f0d9c | 2017-10-22 21:55:52 -0400 | [diff] [blame] | 4723 | #endif // CONFIG_LOOP_RESTORATION |
| 4724 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4725 | aom_start_encode(&mode_bc, dst + total_size); |
| 4726 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4727 | aom_stop_encode(&mode_bc); |
| 4728 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4729 | assert(tile_size > 0); |
| 4730 | |
| 4731 | curr_tg_data_size += (tile_size + (is_last_tile_in_tg ? 0 : 4)); |
| 4732 | buf->size = tile_size; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4733 | if (tile_size > *max_tile_size) { |
| 4734 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 4735 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4736 | if (!is_last_tile) { |
| 4737 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 4738 | } |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4739 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4740 | if (!is_last_tile_in_tg) { |
| 4741 | // size of this tile |
| 4742 | mem_put_le32(buf->data, tile_size); |
| 4743 | } else { |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4744 | // write current tile group size |
| 4745 | #if CONFIG_OBU_SIZING |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4746 | const size_t length_field_size = |
| 4747 | aom_uleb_size_in_bytes(curr_tg_data_size); |
| 4748 | memmove(data + length_field_size, data, curr_tg_data_size); |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4749 | if (write_uleb_obu_size(curr_tg_data_size, data) != AOM_CODEC_OK) |
| 4750 | assert(0); |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4751 | curr_tg_data_size += length_field_size; |
| 4752 | total_size += length_field_size; |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4753 | #else |
| 4754 | mem_put_le32(data, curr_tg_data_size); |
| 4755 | #endif // CONFIG_OBU_SIZING |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4756 | } |
| 4757 | |
| 4758 | total_size += tile_size; |
| 4759 | } |
| 4760 | } |
| 4761 | #if CONFIG_EXT_TILE |
| 4762 | } |
| 4763 | #endif // CONFIG_EXT_TILE |
| 4764 | return (uint32_t)total_size; |
| 4765 | } |
| 4766 | |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4767 | #endif // CONFIG_OBU |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4768 | |
Tom Finegan | e4099e3 | 2018-01-23 12:01:51 -0800 | [diff] [blame] | 4769 | int av1_pack_bitstream(AV1_COMP *const cpi, uint8_t *dst, size_t *size) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4770 | uint8_t *data = dst; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4771 | uint32_t data_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4772 | unsigned int max_tile_size; |
| 4773 | unsigned int max_tile_col_size; |
Tom Finegan | 8695e98 | 2018-01-23 21:59:24 +0000 | [diff] [blame] | 4774 | #if CONFIG_OBU |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4775 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4776 | uint32_t obu_size; |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4777 | #if CONFIG_SCALABILITY |
| 4778 | const uint8_t enhancement_layers_cnt = cm->enhancement_layers_cnt; |
| 4779 | const uint8_t obu_extension_header = |
| 4780 | cm->temporal_layer_id << 5 | cm->enhancement_layer_id << 3 | 0; |
| 4781 | #else |
| 4782 | uint8_t obu_extension_header = 0; |
| 4783 | #endif // CONFIG_SCALABILITY |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4784 | #endif // CONFIG_OBU |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4785 | |
Angie Chiang | b11aedf | 2017-03-10 17:31:46 -0800 | [diff] [blame] | 4786 | #if CONFIG_BITSTREAM_DEBUG |
| 4787 | bitstream_queue_reset_write(); |
| 4788 | #endif |
| 4789 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4790 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4791 | // The TD is now written outside the frame encode loop |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4792 | |
| 4793 | // write sequence header obu if KEY_FRAME, preceded by 4-byte size |
| 4794 | if (cm->frame_type == KEY_FRAME) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4795 | obu_size = |
| 4796 | write_obu_header(OBU_SEQUENCE_HEADER, 0, data + PRE_OBU_SIZE_BYTES); |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4797 | |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4798 | #if CONFIG_SCALABILITY |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4799 | obu_size += write_sequence_header_obu( |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4800 | cpi, data + PRE_OBU_SIZE_BYTES + obu_size, enhancement_layers_cnt); |
| 4801 | #else |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4802 | obu_size += |
| 4803 | write_sequence_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size); |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4804 | #endif // CONFIG_SCALABILITY |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4805 | |
| 4806 | #if CONFIG_OBU_SIZING |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4807 | const size_t length_field_size = aom_uleb_size_in_bytes(obu_size); |
| 4808 | memmove(data + length_field_size, data, obu_size); |
| 4809 | |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4810 | if (write_uleb_obu_size(obu_size, data) != AOM_CODEC_OK) |
| 4811 | return AOM_CODEC_ERROR; |
| 4812 | #else |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4813 | const size_t length_field_size = PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4814 | mem_put_le32(data, obu_size); |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4815 | #endif // CONFIG_OBU_SIZING |
| 4816 | |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4817 | data += obu_size + length_field_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4818 | } |
| 4819 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4820 | #if CONFIG_EXT_TILE |
| 4821 | struct aom_write_bit_buffer saved_wb; |
| 4822 | #endif |
| 4823 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4824 | // write frame header obu, preceded by 4-byte size |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4825 | obu_size = write_obu_header(OBU_FRAME_HEADER, obu_extension_header, |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4826 | data + PRE_OBU_SIZE_BYTES); |
| 4827 | obu_size += write_frame_header_obu(cpi, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4828 | #if CONFIG_EXT_TILE |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4829 | &saved_wb, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4830 | #endif |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4831 | data + PRE_OBU_SIZE_BYTES + obu_size); |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4832 | |
| 4833 | #if CONFIG_OBU_SIZING |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4834 | const size_t length_field_size = aom_uleb_size_in_bytes(obu_size); |
| 4835 | memmove(data + length_field_size, data, obu_size); |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4836 | if (write_uleb_obu_size(obu_size, data) != AOM_CODEC_OK) |
| 4837 | return AOM_CODEC_ERROR; |
| 4838 | #else |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4839 | const size_t length_field_size = PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4840 | mem_put_le32(data, obu_size); |
Tom Finegan | 41150ad | 2018-01-23 11:42:55 -0800 | [diff] [blame] | 4841 | #endif // CONFIG_OBU_SIZING |
| 4842 | |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4843 | data += obu_size + length_field_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4844 | |
| 4845 | if (cm->show_existing_frame) { |
| 4846 | data_size = 0; |
| 4847 | } else { |
| 4848 | // Each tile group obu will be preceded by 4-byte size of the tile group |
| 4849 | // obu |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4850 | data_size = |
| 4851 | write_tiles_in_tg_obus(cpi, data, &max_tile_size, &max_tile_col_size, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4852 | #if CONFIG_EXT_TILE |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4853 | &saved_wb, |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4854 | #endif |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4855 | obu_extension_header); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4856 | } |
| 4857 | |
Soo-Chul Han | f858986 | 2018-01-24 03:13:14 +0000 | [diff] [blame] | 4858 | #endif // CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4859 | |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4860 | #if CONFIG_EXT_TILE && !CONFIG_OBU |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4861 | uint32_t uncompressed_hdr_size; |
| 4862 | struct aom_write_bit_buffer saved_wb; |
| 4863 | struct aom_write_bit_buffer wb = { data, 0 }; |
| 4864 | const int have_tiles = cm->tile_cols * cm->tile_rows > 1; |
| 4865 | int tile_size_bytes; |
| 4866 | int tile_col_size_bytes; |
| 4867 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4868 | if (cm->large_scale_tile) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4869 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4870 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4871 | #else |
| 4872 | write_uncompressed_header_obu(cpi, &wb); |
| 4873 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4874 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4875 | if (cm->show_existing_frame) { |
| 4876 | *size = aom_wb_bytes_written(&wb); |
Tom Finegan | f2d40f6 | 2018-02-01 11:52:49 -0800 | [diff] [blame] | 4877 | return AOM_CODEC_OK; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4878 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4879 | |
| 4880 | // We do not know these in advance. Output placeholder bit. |
| 4881 | saved_wb = wb; |
| 4882 | // Write tile size magnitudes |
| 4883 | if (have_tiles) { |
| 4884 | // Note that the last item in the uncompressed header is the data |
| 4885 | // describing tile configuration. |
| 4886 | // Number of bytes in tile column size - 1 |
| 4887 | aom_wb_write_literal(&wb, 0, 2); |
| 4888 | |
| 4889 | // Number of bytes in tile size - 1 |
| 4890 | aom_wb_write_literal(&wb, 0, 2); |
| 4891 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4892 | |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 4893 | uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb); |
| 4894 | aom_clear_system_state(); |
| 4895 | data += uncompressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4896 | |
Yunqing Wang | b041d8a | 2017-11-15 12:31:18 -0800 | [diff] [blame] | 4897 | #define EXT_TILE_DEBUG 0 |
| 4898 | #if EXT_TILE_DEBUG |
| 4899 | { |
| 4900 | char fn[20] = "./fh"; |
| 4901 | fn[4] = cm->current_video_frame / 100 + '0'; |
| 4902 | fn[5] = (cm->current_video_frame % 100) / 10 + '0'; |
| 4903 | fn[6] = (cm->current_video_frame % 10) + '0'; |
| 4904 | fn[7] = '\0'; |
Yunqing Wang | e7142e1 | 2018-01-17 11:20:12 -0800 | [diff] [blame] | 4905 | av1_print_uncompressed_frame_header(data - uncompressed_hdr_size, |
| 4906 | uncompressed_hdr_size, fn); |
Yunqing Wang | b041d8a | 2017-11-15 12:31:18 -0800 | [diff] [blame] | 4907 | } |
| 4908 | #endif // EXT_TILE_DEBUG |
| 4909 | #undef EXT_TILE_DEBUG |
| 4910 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4911 | // Write the encoded tile data |
| 4912 | data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size); |
| 4913 | } else { |
| 4914 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4915 | #if !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4916 | data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4917 | #endif |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4918 | #if CONFIG_EXT_TILE && !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4919 | } |
| 4920 | #endif // CONFIG_EXT_TILE |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4921 | #if CONFIG_EXT_TILE && !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4922 | if (cm->large_scale_tile) { |
| 4923 | if (have_tiles) { |
| 4924 | data_size = |
| 4925 | remux_tiles(cm, data, data_size, max_tile_size, max_tile_col_size, |
| 4926 | &tile_size_bytes, &tile_col_size_bytes); |
| 4927 | } |
| 4928 | |
| 4929 | data += data_size; |
| 4930 | |
| 4931 | // Now fill in the gaps in the uncompressed header. |
| 4932 | if (have_tiles) { |
| 4933 | assert(tile_col_size_bytes >= 1 && tile_col_size_bytes <= 4); |
| 4934 | aom_wb_write_literal(&saved_wb, tile_col_size_bytes - 1, 2); |
| 4935 | |
| 4936 | assert(tile_size_bytes >= 1 && tile_size_bytes <= 4); |
| 4937 | aom_wb_write_literal(&saved_wb, tile_size_bytes - 1, 2); |
| 4938 | } |
Tom Finegan | e4099e3 | 2018-01-23 12:01:51 -0800 | [diff] [blame] | 4939 | |
| 4940 | if (compressed_hdr_size > 0xffff) return AOM_CODEC_ERROR; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4941 | } else { |
| 4942 | #endif // CONFIG_EXT_TILE |
| 4943 | data += data_size; |
Jingning Han | da11e69 | 2017-12-19 08:45:08 -0800 | [diff] [blame] | 4944 | #if CONFIG_EXT_TILE && !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4945 | } |
| 4946 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4947 | *size = data - dst; |
Tom Finegan | e4099e3 | 2018-01-23 12:01:51 -0800 | [diff] [blame] | 4948 | return AOM_CODEC_OK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4949 | } |