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 | |
Jean-Marc Valin | 0143513 | 2017-02-18 14:12:53 -0500 | [diff] [blame] | 27 | #if CONFIG_CDEF |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 28 | #include "av1/common/cdef.h" |
Jean-Marc Valin | 0143513 | 2017-02-18 14:12:53 -0500 | [diff] [blame] | 29 | #endif // CONFIG_CDEF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 30 | #include "av1/common/entropy.h" |
| 31 | #include "av1/common/entropymode.h" |
| 32 | #include "av1/common/entropymv.h" |
| 33 | #include "av1/common/mvref_common.h" |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 34 | #include "av1/common/odintrin.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 35 | #include "av1/common/pred_common.h" |
| 36 | #include "av1/common/reconinter.h" |
hui su | 45dc597 | 2016-12-08 17:42:50 -0800 | [diff] [blame] | 37 | #if CONFIG_EXT_INTRA |
| 38 | #include "av1/common/reconintra.h" |
| 39 | #endif // CONFIG_EXT_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 40 | #include "av1/common/seg_common.h" |
| 41 | #include "av1/common/tile_common.h" |
| 42 | |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 43 | #if CONFIG_LV_MAP |
| 44 | #include "av1/encoder/encodetxb.h" |
| 45 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 46 | #include "av1/encoder/bitstream.h" |
| 47 | #include "av1/encoder/cost.h" |
| 48 | #include "av1/encoder/encodemv.h" |
| 49 | #include "av1/encoder/mcomp.h" |
Urvang Joshi | c6300aa | 2017-06-01 14:46:23 -0700 | [diff] [blame] | 50 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 51 | #include "av1/encoder/palette.h" |
Urvang Joshi | c6300aa | 2017-06-01 14:46:23 -0700 | [diff] [blame] | 52 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 53 | #include "av1/encoder/segmentation.h" |
| 54 | #include "av1/encoder/subexp.h" |
| 55 | #include "av1/encoder/tokenize.h" |
| 56 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 57 | #define ENC_MISMATCH_DEBUG 0 |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 58 | |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 59 | #if CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 60 | static struct av1_token |
| 61 | inter_singleref_comp_mode_encodings[INTER_SINGLEREF_COMP_MODES]; |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 62 | #endif // CONFIG_COMPOUND_SINGLEREF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 63 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 64 | static INLINE void write_uniform(aom_writer *w, int n, int v) { |
hui su | 3749929 | 2017-04-26 09:49:53 -0700 | [diff] [blame] | 65 | const int l = get_unsigned_bits(n); |
| 66 | const int m = (1 << l) - n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 67 | if (l == 0) return; |
| 68 | if (v < m) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 69 | aom_write_literal(w, v, l - 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 70 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 71 | aom_write_literal(w, m + ((v - m) >> 1), l - 1); |
| 72 | aom_write_literal(w, (v - m) & 1, 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 73 | } |
| 74 | } |
| 75 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 76 | static struct av1_token interintra_mode_encodings[INTERINTRA_MODES]; |
Sarah Parker | 6fddd18 | 2016-11-10 20:57:20 -0800 | [diff] [blame] | 77 | static struct av1_token compound_type_encodings[COMPOUND_TYPES]; |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 78 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 79 | static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm, |
| 80 | MACROBLOCKD *xd, |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 81 | const RestorationUnitInfo *rui, |
| 82 | aom_writer *const w, int plane); |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 83 | #endif // CONFIG_LOOP_RESTORATION |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 84 | #if CONFIG_OBU |
| 85 | static void write_uncompressed_header_obu(AV1_COMP *cpi, |
| 86 | struct aom_write_bit_buffer *wb); |
| 87 | #else |
| 88 | static void write_uncompressed_header_frame(AV1_COMP *cpi, |
| 89 | struct aom_write_bit_buffer *wb); |
| 90 | #endif |
| 91 | |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 92 | static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data); |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 93 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 94 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 95 | static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst, |
| 96 | const uint32_t data_size, const uint32_t max_tile_size, |
| 97 | const uint32_t max_tile_col_size, |
| 98 | int *const tile_size_bytes, |
| 99 | int *const tile_col_size_bytes); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 100 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 101 | void av1_encode_token_init(void) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 102 | av1_tokens_from_tree(interintra_mode_encodings, av1_interintra_mode_tree); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 103 | #if CONFIG_COMPOUND_SINGLEREF |
| 104 | av1_tokens_from_tree(inter_singleref_comp_mode_encodings, |
| 105 | av1_inter_singleref_comp_mode_tree); |
| 106 | #endif // CONFIG_COMPOUND_SINGLEREF |
Sarah Parker | 6fddd18 | 2016-11-10 20:57:20 -0800 | [diff] [blame] | 107 | av1_tokens_from_tree(compound_type_encodings, av1_compound_type_tree); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 108 | } |
| 109 | |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 110 | static void write_intra_mode_kf(const AV1_COMMON *cm, FRAME_CONTEXT *frame_ctx, |
| 111 | const MODE_INFO *mi, const MODE_INFO *above_mi, |
| 112 | const MODE_INFO *left_mi, int block, |
| 113 | PREDICTION_MODE mode, aom_writer *w) { |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 114 | #if CONFIG_INTRABC |
| 115 | assert(!is_intrabc_block(&mi->mbmi)); |
| 116 | #endif // CONFIG_INTRABC |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 117 | aom_write_symbol(w, mode, |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 118 | get_y_mode_cdf(frame_ctx, mi, above_mi, left_mi, block), |
| 119 | INTRA_MODES); |
| 120 | (void)cm; |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 121 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 122 | |
Thomas Davies | 1de6c88 | 2017-01-11 17:47:49 +0000 | [diff] [blame] | 123 | static void write_inter_mode(aom_writer *w, PREDICTION_MODE mode, |
Zoe Liu | 7f24e1b | 2017-03-17 17:42:05 -0700 | [diff] [blame] | 124 | FRAME_CONTEXT *ec_ctx, const int16_t mode_ctx) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 125 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 126 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 127 | #if CONFIG_NEW_MULTISYMBOL |
| 128 | aom_write_symbol(w, mode != NEWMV, ec_ctx->newmv_cdf[newmv_ctx], 2); |
| 129 | #else |
| 130 | aom_write(w, mode != NEWMV, ec_ctx->newmv_prob[newmv_ctx]); |
| 131 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 132 | |
Jingning Han | f2b87bd | 2017-05-18 16:27:30 -0700 | [diff] [blame] | 133 | if (mode != NEWMV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 134 | if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 135 | assert(mode == GLOBALMV); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 136 | return; |
| 137 | } |
| 138 | |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 139 | const int16_t zeromv_ctx = |
| 140 | (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 141 | #if CONFIG_NEW_MULTISYMBOL |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 142 | aom_write_symbol(w, mode != GLOBALMV, ec_ctx->zeromv_cdf[zeromv_ctx], 2); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 143 | #else |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 144 | aom_write(w, mode != GLOBALMV, ec_ctx->zeromv_prob[zeromv_ctx]); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 145 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 146 | |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 147 | if (mode != GLOBALMV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 148 | int16_t refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 149 | |
| 150 | if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6; |
| 151 | if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7; |
| 152 | if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8; |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 153 | #if CONFIG_NEW_MULTISYMBOL |
| 154 | aom_write_symbol(w, mode != NEARESTMV, ec_ctx->refmv_cdf[refmv_ctx], 2); |
| 155 | #else |
| 156 | aom_write(w, mode != NEARESTMV, ec_ctx->refmv_prob[refmv_ctx]); |
| 157 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 158 | } |
| 159 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 162 | 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] | 163 | const MB_MODE_INFO_EXT *mbmi_ext, aom_writer *w) { |
| 164 | uint8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 165 | |
| 166 | assert(mbmi->ref_mv_idx < 3); |
| 167 | |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 168 | const int new_mv = |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 169 | #if CONFIG_COMPOUND_SINGLEREF |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 170 | mbmi->mode == SR_NEW_NEWMV || |
| 171 | #endif |
| 172 | mbmi->mode == NEWMV || mbmi->mode == NEW_NEWMV; |
| 173 | if (new_mv) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 174 | int idx; |
| 175 | for (idx = 0; idx < 2; ++idx) { |
| 176 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) { |
| 177 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 178 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 179 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 180 | #if CONFIG_NEW_MULTISYMBOL |
| 181 | aom_write_symbol(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_cdf[drl_ctx], |
| 182 | 2); |
| 183 | #else |
| 184 | aom_write(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_prob[drl_ctx]); |
| 185 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 186 | if (mbmi->ref_mv_idx == idx) return; |
| 187 | } |
| 188 | } |
| 189 | return; |
| 190 | } |
| 191 | |
David Barker | 3dfba99 | 2017-04-03 16:10:09 +0100 | [diff] [blame] | 192 | if (have_nearmv_in_inter_mode(mbmi->mode)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 193 | int idx; |
| 194 | // TODO(jingning): Temporary solution to compensate the NEARESTMV offset. |
| 195 | for (idx = 1; idx < 3; ++idx) { |
| 196 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1) { |
| 197 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 198 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 199 | #if CONFIG_NEW_MULTISYMBOL |
| 200 | aom_write_symbol(w, mbmi->ref_mv_idx != (idx - 1), |
| 201 | ec_ctx->drl_cdf[drl_ctx], 2); |
| 202 | #else |
| 203 | aom_write(w, mbmi->ref_mv_idx != (idx - 1), ec_ctx->drl_prob[drl_ctx]); |
| 204 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 205 | if (mbmi->ref_mv_idx == (idx - 1)) return; |
| 206 | } |
| 207 | } |
| 208 | return; |
| 209 | } |
| 210 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 211 | |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 212 | static void write_inter_compound_mode(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 213 | aom_writer *w, PREDICTION_MODE mode, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 214 | const int16_t mode_ctx) { |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 215 | assert(is_inter_compound_mode(mode)); |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 216 | (void)cm; |
| 217 | aom_write_symbol(w, INTER_COMPOUND_OFFSET(mode), |
| 218 | xd->tile_ctx->inter_compound_mode_cdf[mode_ctx], |
| 219 | INTER_COMPOUND_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 220 | } |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 221 | |
| 222 | #if CONFIG_COMPOUND_SINGLEREF |
Thomas Davies | b8b14a9 | 2017-07-12 15:11:49 +0100 | [diff] [blame] | 223 | static void write_inter_singleref_comp_mode(MACROBLOCKD *xd, aom_writer *w, |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 224 | PREDICTION_MODE mode, |
| 225 | const int16_t mode_ctx) { |
| 226 | assert(is_inter_singleref_comp_mode(mode)); |
Thomas Davies | b8b14a9 | 2017-07-12 15:11:49 +0100 | [diff] [blame] | 227 | aom_cdf_prob *const inter_singleref_comp_cdf = |
| 228 | xd->tile_ctx->inter_singleref_comp_mode_cdf[mode_ctx]; |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 229 | |
Thomas Davies | b8b14a9 | 2017-07-12 15:11:49 +0100 | [diff] [blame] | 230 | aom_write_symbol(w, INTER_SINGLEREF_COMP_OFFSET(mode), |
| 231 | inter_singleref_comp_cdf, INTER_SINGLEREF_COMP_MODES); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 232 | } |
| 233 | #endif // CONFIG_COMPOUND_SINGLEREF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 234 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 235 | static void encode_unsigned_max(struct aom_write_bit_buffer *wb, int data, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 236 | int max) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 237 | aom_wb_write_literal(wb, data, get_unsigned_bits(max)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 240 | static void write_tx_size_vartx(const AV1_COMMON *cm, MACROBLOCKD *xd, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 241 | const MB_MODE_INFO *mbmi, TX_SIZE tx_size, |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 242 | int depth, int blk_row, int blk_col, |
| 243 | aom_writer *w) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 244 | #if CONFIG_NEW_MULTISYMBOL |
| 245 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 246 | (void)cm; |
| 247 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 248 | const int tx_row = blk_row >> 1; |
| 249 | const int tx_col = blk_col >> 1; |
Jingning Han | f65b870 | 2016-10-31 12:13:20 -0700 | [diff] [blame] | 250 | const int max_blocks_high = max_block_high(xd, mbmi->sb_type, 0); |
| 251 | const int max_blocks_wide = max_block_wide(xd, mbmi->sb_type, 0); |
| 252 | |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 253 | int ctx = txfm_partition_context(xd->above_txfm_context + blk_col, |
| 254 | xd->left_txfm_context + blk_row, |
Jingning Han | c8b8936 | 2016-11-01 10:28:53 -0700 | [diff] [blame] | 255 | mbmi->sb_type, tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 256 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 257 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 258 | |
Jingning Han | 571189c | 2016-10-24 10:38:43 -0700 | [diff] [blame] | 259 | if (depth == MAX_VARTX_DEPTH) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 260 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 261 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 262 | return; |
| 263 | } |
| 264 | |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 265 | const int write_txfm_partition = |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 266 | #if CONFIG_RECT_TX_EXT |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 267 | tx_size == mbmi->inter_tx_size[tx_row][tx_col] || |
| 268 | mbmi->tx_size == quarter_txsize_lookup[mbmi->sb_type]; |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 269 | #else |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 270 | tx_size == mbmi->inter_tx_size[tx_row][tx_col]; |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 271 | #endif |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 272 | if (write_txfm_partition) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 273 | #if CONFIG_NEW_MULTISYMBOL |
| 274 | aom_write_symbol(w, 0, ec_ctx->txfm_partition_cdf[ctx], 2); |
| 275 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 276 | aom_write(w, 0, cm->fc->txfm_partition_prob[ctx]); |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 277 | #endif |
| 278 | |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 279 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 280 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 281 | // TODO(yuec): set correct txfm partition update for qttx |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 282 | } else { |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 283 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
| 284 | const int bsl = tx_size_wide_unit[sub_txs]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 285 | int i; |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 286 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 287 | #if CONFIG_NEW_MULTISYMBOL |
| 288 | aom_write_symbol(w, 1, ec_ctx->txfm_partition_cdf[ctx], 2); |
| 289 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 290 | aom_write(w, 1, cm->fc->txfm_partition_prob[ctx]); |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 291 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 292 | |
David Barker | 16c64e3 | 2017-08-23 16:54:59 +0100 | [diff] [blame] | 293 | if (sub_txs == TX_4X4) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 294 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 295 | xd->left_txfm_context + blk_row, sub_txs, tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 296 | return; |
| 297 | } |
| 298 | |
| 299 | assert(bsl > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 300 | for (i = 0; i < 4; ++i) { |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 301 | int offsetr = blk_row + (i >> 1) * bsl; |
| 302 | int offsetc = blk_col + (i & 0x01) * bsl; |
| 303 | write_tx_size_vartx(cm, xd, mbmi, sub_txs, depth + 1, offsetr, offsetc, |
| 304 | w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | } |
| 308 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 309 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 310 | static void update_txfm_partition_probs(AV1_COMMON *cm, aom_writer *w, |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 311 | FRAME_COUNTS *counts, int probwt) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 312 | int k; |
| 313 | for (k = 0; k < TXFM_PARTITION_CONTEXTS; ++k) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 314 | av1_cond_prob_diff_update(w, &cm->fc->txfm_partition_prob[k], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 315 | counts->txfm_partition[k], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 316 | } |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 317 | #endif // CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 318 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 319 | static void write_selected_tx_size(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 320 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 321 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 322 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 323 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 324 | (void)cm; |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 325 | if (block_signals_txsize(bsize)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 326 | const TX_SIZE tx_size = mbmi->tx_size; |
| 327 | const int is_inter = is_inter_block(mbmi); |
Urvang Joshi | ab8840e | 2017-10-06 16:38:24 -0700 | [diff] [blame] | 328 | const int tx_size_ctx = get_tx_size_context(xd); |
| 329 | const int32_t tx_size_cat = is_inter ? inter_tx_size_cat_lookup[bsize] |
Urvang Joshi | 9752a2e | 2017-10-02 17:32:27 -0700 | [diff] [blame] | 330 | : intra_tx_size_cat_lookup[bsize]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 331 | const TX_SIZE coded_tx_size = txsize_sqr_up_map[tx_size]; |
Jingning Han | 4e1737a | 2016-10-25 16:05:02 -0700 | [diff] [blame] | 332 | const int depth = tx_size_to_depth(coded_tx_size); |
Yue Chen | 49587a7 | 2016-09-28 17:09:47 -0700 | [diff] [blame] | 333 | 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] | 334 | |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 335 | aom_write_symbol(w, depth, ec_ctx->tx_size_cdf[tx_size_cat][tx_size_ctx], |
Nathan E. Egge | 2ea519e | 2017-02-16 18:18:15 -0500 | [diff] [blame] | 336 | tx_size_cat + 2); |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 337 | #if CONFIG_RECT_TX_EXT |
Yue Chen | 56e226e | 2017-05-02 16:21:40 -0700 | [diff] [blame] | 338 | if (is_quarter_tx_allowed(xd, mbmi, is_inter) && tx_size != coded_tx_size) |
Thomas Davies | e3f6978 | 2017-10-03 10:43:17 +0100 | [diff] [blame] | 339 | #if CONFIG_NEW_MULTISYMBOL |
| 340 | aom_write_symbol(w, tx_size == quarter_txsize_lookup[bsize], |
| 341 | cm->fc->quarter_tx_size_cdf, 2); |
| 342 | #else |
Yue Chen | 56e226e | 2017-05-02 16:21:40 -0700 | [diff] [blame] | 343 | aom_write(w, tx_size == quarter_txsize_lookup[bsize], |
| 344 | cm->fc->quarter_tx_size_prob); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 345 | #endif |
Thomas Davies | e3f6978 | 2017-10-03 10:43:17 +0100 | [diff] [blame] | 346 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 347 | } |
| 348 | } |
| 349 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 350 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 351 | static void update_inter_mode_probs(AV1_COMMON *cm, aom_writer *w, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 352 | FRAME_COUNTS *counts) { |
| 353 | int i; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 354 | const int probwt = cm->num_tg; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 355 | for (i = 0; i < NEWMV_MODE_CONTEXTS; ++i) |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 356 | av1_cond_prob_diff_update(w, &cm->fc->newmv_prob[i], counts->newmv_mode[i], |
| 357 | probwt); |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 358 | for (i = 0; i < GLOBALMV_MODE_CONTEXTS; ++i) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 359 | av1_cond_prob_diff_update(w, &cm->fc->zeromv_prob[i], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 360 | counts->zeromv_mode[i], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 361 | for (i = 0; i < REFMV_MODE_CONTEXTS; ++i) |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 362 | av1_cond_prob_diff_update(w, &cm->fc->refmv_prob[i], counts->refmv_mode[i], |
| 363 | probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 364 | for (i = 0; i < DRL_MODE_CONTEXTS; ++i) |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 365 | av1_cond_prob_diff_update(w, &cm->fc->drl_prob[i], counts->drl_mode[i], |
| 366 | probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 367 | } |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 368 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 369 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 370 | static int write_skip(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 371 | int segment_id, const MODE_INFO *mi, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 372 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { |
| 373 | return 1; |
| 374 | } else { |
| 375 | const int skip = mi->mbmi.skip; |
Zoe Liu | e646daa | 2017-10-17 15:28:46 -0700 | [diff] [blame] | 376 | const int ctx = av1_get_skip_context(xd); |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 377 | #if CONFIG_NEW_MULTISYMBOL |
| 378 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 379 | aom_write_symbol(w, skip, ec_ctx->skip_cdfs[ctx], 2); |
| 380 | #else |
Zoe Liu | e646daa | 2017-10-17 15:28:46 -0700 | [diff] [blame] | 381 | aom_write(w, skip, cm->fc->skip_probs[ctx]); |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 382 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 383 | return skip; |
| 384 | } |
| 385 | } |
| 386 | |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 387 | static void write_is_inter(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 388 | int segment_id, aom_writer *w, const int is_inter) { |
| 389 | if (!segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
Yue Chen | 170678a | 2017-10-17 13:43:10 -0700 | [diff] [blame] | 390 | const int ctx = av1_get_intra_inter_context(xd); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 391 | #if CONFIG_NEW_MULTISYMBOL |
| 392 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 393 | aom_write_symbol(w, is_inter, ec_ctx->intra_inter_cdf[ctx], 2); |
| 394 | #else |
Yue Chen | 170678a | 2017-10-17 13:43:10 -0700 | [diff] [blame] | 395 | aom_write(w, is_inter, cm->fc->intra_inter_prob[ctx]); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 396 | #endif |
| 397 | } |
| 398 | } |
| 399 | |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 400 | static void write_motion_mode(const AV1_COMMON *cm, MACROBLOCKD *xd, |
| 401 | const MODE_INFO *mi, aom_writer *w) { |
Sarah Parker | 19234cc | 2017-03-10 16:43:25 -0800 | [diff] [blame] | 402 | const MB_MODE_INFO *mbmi = &mi->mbmi; |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 403 | |
Sebastien Alaiwan | 4879580 | 2017-10-30 12:07:13 +0100 | [diff] [blame] | 404 | MOTION_MODE last_motion_mode_allowed = |
Sebastien Alaiwan | 1f56b8e | 2017-10-31 17:37:16 +0100 | [diff] [blame] | 405 | motion_mode_allowed(0, cm->global_motion, xd, mi); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 406 | switch (last_motion_mode_allowed) { |
| 407 | case SIMPLE_TRANSLATION: break; |
Wei-Ting Lin | 07ed3ab | 2017-08-28 17:50:25 -0700 | [diff] [blame] | 408 | #if CONFIG_NCOBMC_ADAPT_WEIGHT |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 409 | case NCOBMC_ADAPT_WEIGHT: |
| 410 | aom_write_symbol(w, mbmi->motion_mode, |
| 411 | xd->tile_ctx->ncobmc_cdf[mbmi->sb_type], |
| 412 | OBMC_FAMILY_MODES); |
| 413 | break; |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 414 | #endif |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame^] | 415 | case OBMC_CAUSAL: |
| 416 | #if CONFIG_NEW_MULTISYMBOL |
| 417 | aom_write_symbol(w, mbmi->motion_mode == OBMC_CAUSAL, |
| 418 | xd->tile_ctx->obmc_cdf[mbmi->sb_type], 2); |
| 419 | #else |
| 420 | aom_write(w, mbmi->motion_mode == OBMC_CAUSAL, |
| 421 | cm->fc->obmc_prob[mbmi->sb_type]); |
| 422 | #endif |
| 423 | break; |
| 424 | |
| 425 | default: |
| 426 | aom_write_symbol(w, mbmi->motion_mode, |
| 427 | xd->tile_ctx->motion_mode_cdf[mbmi->sb_type], |
| 428 | MOTION_MODES); |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 429 | } |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 430 | } |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 431 | |
| 432 | #if CONFIG_NCOBMC_ADAPT_WEIGHT |
Wei-Ting Lin | ca710d6 | 2017-07-13 11:41:02 -0700 | [diff] [blame] | 433 | static void write_ncobmc_mode(MACROBLOCKD *xd, const MODE_INFO *mi, |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 434 | aom_writer *w) { |
| 435 | const MB_MODE_INFO *mbmi = &mi->mbmi; |
| 436 | ADAPT_OVERLAP_BLOCK ao_block = adapt_overlap_block_lookup[mbmi->sb_type]; |
Wei-Ting Lin | 77c4118 | 2017-07-12 15:58:35 -0700 | [diff] [blame] | 437 | if (mbmi->motion_mode != NCOBMC_ADAPT_WEIGHT) return; |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 438 | |
Wei-Ting Lin | ca710d6 | 2017-07-13 11:41:02 -0700 | [diff] [blame] | 439 | aom_write_symbol(w, mbmi->ncobmc_mode[0], |
| 440 | xd->tile_ctx->ncobmc_mode_cdf[ao_block], MAX_NCOBMC_MODES); |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 441 | if (mi_size_wide[mbmi->sb_type] != mi_size_high[mbmi->sb_type]) { |
Wei-Ting Lin | ca710d6 | 2017-07-13 11:41:02 -0700 | [diff] [blame] | 442 | aom_write_symbol(w, mbmi->ncobmc_mode[1], |
| 443 | xd->tile_ctx->ncobmc_mode_cdf[ao_block], MAX_NCOBMC_MODES); |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 444 | } |
| 445 | } |
| 446 | #endif |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 447 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 448 | static void write_delta_qindex(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 449 | int delta_qindex, aom_writer *w) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 450 | int sign = delta_qindex < 0; |
| 451 | int abs = sign ? -delta_qindex : delta_qindex; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 452 | int rem_bits, thr; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 453 | int smallval = abs < DELTA_Q_SMALL ? 1 : 0; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 454 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 455 | (void)cm; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 456 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 457 | aom_write_symbol(w, AOMMIN(abs, DELTA_Q_SMALL), ec_ctx->delta_q_cdf, |
| 458 | DELTA_Q_PROBS + 1); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 459 | |
| 460 | if (!smallval) { |
| 461 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 462 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 463 | aom_write_literal(w, rem_bits - 1, 3); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 464 | aom_write_literal(w, abs - thr, rem_bits); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 465 | } |
| 466 | if (abs > 0) { |
| 467 | aom_write_bit(w, sign); |
| 468 | } |
| 469 | } |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 470 | |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 471 | #if CONFIG_EXT_DELTA_Q |
| 472 | static void write_delta_lflevel(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 473 | #if CONFIG_LOOPFILTER_LEVEL |
| 474 | int lf_id, |
| 475 | #endif |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 476 | int delta_lflevel, aom_writer *w) { |
| 477 | int sign = delta_lflevel < 0; |
| 478 | int abs = sign ? -delta_lflevel : delta_lflevel; |
| 479 | int rem_bits, thr; |
| 480 | int smallval = abs < DELTA_LF_SMALL ? 1 : 0; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 481 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 482 | (void)cm; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 483 | |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 484 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 485 | if (cm->delta_lf_multi) { |
| 486 | assert(lf_id >= 0 && lf_id < FRAME_LF_COUNT); |
| 487 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), |
| 488 | ec_ctx->delta_lf_multi_cdf[lf_id], DELTA_LF_PROBS + 1); |
| 489 | } else { |
| 490 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 491 | DELTA_LF_PROBS + 1); |
| 492 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 493 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 494 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 495 | DELTA_LF_PROBS + 1); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 496 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 497 | |
| 498 | if (!smallval) { |
| 499 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 500 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 501 | aom_write_literal(w, rem_bits - 1, 3); |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 502 | aom_write_literal(w, abs - thr, rem_bits); |
| 503 | } |
| 504 | if (abs > 0) { |
| 505 | aom_write_bit(w, sign); |
| 506 | } |
| 507 | } |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 508 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 509 | |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 510 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 511 | static void update_skip_probs(AV1_COMMON *cm, aom_writer *w, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 512 | FRAME_COUNTS *counts) { |
| 513 | int k; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 514 | const int probwt = cm->num_tg; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 515 | for (k = 0; k < SKIP_CONTEXTS; ++k) { |
| 516 | av1_cond_prob_diff_update(w, &cm->fc->skip_probs[k], counts->skip[k], |
| 517 | probwt); |
| 518 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 519 | } |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 520 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 521 | |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 522 | static void pack_map_tokens(aom_writer *w, const TOKENEXTRA **tp, int n, |
| 523 | int num) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 524 | const TOKENEXTRA *p = *tp; |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 525 | write_uniform(w, n, p->token); // The first color index. |
| 526 | ++p; |
| 527 | --num; |
| 528 | for (int i = 0; i < num; ++i) { |
Sarah Parker | 0cf4d9f | 2017-08-18 13:09:14 -0700 | [diff] [blame] | 529 | aom_write_symbol(w, p->token, p->color_map_cdf, n); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 530 | ++p; |
| 531 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 532 | *tp = p; |
| 533 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 534 | |
James Zern | 35545dd | 2017-08-25 18:48:02 -0700 | [diff] [blame] | 535 | #if !CONFIG_LV_MAP |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 536 | #if CONFIG_NEW_MULTISYMBOL |
| 537 | static INLINE void write_coeff_extra(const aom_cdf_prob *const *cdf, int val, |
| 538 | int n, aom_writer *w) { |
| 539 | // Code the extra bits from LSB to MSB in groups of 4 |
| 540 | int i = 0; |
| 541 | int count = 0; |
| 542 | while (count < n) { |
| 543 | const int size = AOMMIN(n - count, 4); |
| 544 | const int mask = (1 << size) - 1; |
| 545 | aom_write_cdf(w, val & mask, cdf[i++], 1 << size); |
| 546 | val >>= size; |
| 547 | count += size; |
| 548 | } |
| 549 | } |
| 550 | #else |
| 551 | static INLINE void write_coeff_extra(const aom_prob *pb, int value, |
| 552 | int num_bits, int skip_bits, aom_writer *w, |
| 553 | TOKEN_STATS *token_stats) { |
| 554 | // Code the extra bits from MSB to LSB 1 bit at a time |
| 555 | int index; |
| 556 | for (index = skip_bits; index < num_bits; ++index) { |
| 557 | const int shift = num_bits - index - 1; |
| 558 | const int bb = (value >> shift) & 1; |
| 559 | aom_write_record(w, bb, pb[index], token_stats); |
| 560 | } |
| 561 | } |
James Zern | 35545dd | 2017-08-25 18:48:02 -0700 | [diff] [blame] | 562 | #endif // CONFIG_NEW_MULTISYMBOL |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 563 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 564 | static void pack_mb_tokens(aom_writer *w, const TOKENEXTRA **tp, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 565 | const TOKENEXTRA *const stop, |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 566 | aom_bit_depth_t bit_depth, const TX_SIZE tx_size, |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 567 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 568 | TX_TYPE tx_type, int is_inter, |
| 569 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 570 | TOKEN_STATS *token_stats) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 571 | const TOKENEXTRA *p = *tp; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 572 | int count = 0; |
Jingning Han | 7e99297 | 2016-10-31 11:03:06 -0700 | [diff] [blame] | 573 | const int seg_eob = tx_size_2d[tx_size]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 574 | |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 575 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 576 | if (tx_type == MRC_DCT && ((is_inter && SIGNAL_MRC_MASK_INTER) || |
| 577 | (!is_inter && SIGNAL_MRC_MASK_INTRA))) { |
| 578 | int rows = tx_size_high[tx_size]; |
| 579 | int cols = tx_size_wide[tx_size]; |
| 580 | assert(tx_size == TX_32X32); |
| 581 | assert(p < stop); |
| 582 | pack_map_tokens(w, &p, 2, rows * cols); |
| 583 | } |
| 584 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 585 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 586 | while (p < stop && p->token != EOSB_TOKEN) { |
Urvang Joshi | 454280d | 2016-10-14 16:51:44 -0700 | [diff] [blame] | 587 | const int token = p->token; |
Yaowu Xu | abe5215 | 2017-10-20 14:37:54 -0700 | [diff] [blame] | 588 | const int8_t eob_val = p->eob_val; |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 589 | if (token == BLOCK_Z_TOKEN) { |
Thomas Davies | 1c05c63 | 2017-03-15 09:58:34 +0000 | [diff] [blame] | 590 | aom_write_symbol(w, 0, *p->head_cdf, HEAD_TOKENS + 1); |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 591 | p++; |
Jingning Han | 0481e8b | 2017-05-27 08:10:17 -0700 | [diff] [blame] | 592 | break; |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 593 | continue; |
| 594 | } |
Yaowu Xu | c8ab0bc | 2017-04-11 21:53:22 -0700 | [diff] [blame] | 595 | |
| 596 | const av1_extra_bit *const extra_bits = &av1_extra_bits[token]; |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 597 | if (eob_val == LAST_EOB) { |
Thomas Davies | 04bdd52 | 2017-03-13 22:34:14 +0000 | [diff] [blame] | 598 | // Just code a flag indicating whether the value is >1 or 1. |
| 599 | aom_write_bit(w, token != ONE_TOKEN); |
| 600 | } else { |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 601 | int comb_symb = 2 * AOMMIN(token, TWO_TOKEN) - eob_val + p->first_val; |
Thomas Davies | 1c05c63 | 2017-03-15 09:58:34 +0000 | [diff] [blame] | 602 | aom_write_symbol(w, comb_symb, *p->head_cdf, HEAD_TOKENS + p->first_val); |
Thomas Davies | 04bdd52 | 2017-03-13 22:34:14 +0000 | [diff] [blame] | 603 | } |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 604 | if (token > ONE_TOKEN) { |
Thomas Davies | 1c05c63 | 2017-03-15 09:58:34 +0000 | [diff] [blame] | 605 | aom_write_symbol(w, token - TWO_TOKEN, *p->tail_cdf, TAIL_TOKENS); |
Alex Converse | dc62b09 | 2016-10-11 16:50:56 -0700 | [diff] [blame] | 606 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 607 | |
Alex Converse | d8fdfaa | 2016-07-26 16:27:51 -0700 | [diff] [blame] | 608 | if (extra_bits->base_val) { |
| 609 | const int bit_string = p->extra; |
| 610 | const int bit_string_length = extra_bits->len; // Length of extra bits to |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 611 | const int is_cat6 = (extra_bits->base_val == CAT6_MIN_VAL); |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 612 | // be written excluding |
| 613 | // the sign bit. |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 614 | int skip_bits = is_cat6 |
Alex Converse | da3d94f | 2017-03-15 14:54:29 -0700 | [diff] [blame] | 615 | ? (int)sizeof(av1_cat6_prob) - |
| 616 | av1_get_cat6_extrabits_size(tx_size, bit_depth) |
| 617 | : 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 618 | |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 619 | assert(!(bit_string >> (bit_string_length - skip_bits + 1))); |
| 620 | if (bit_string_length > 0) |
| 621 | #if CONFIG_NEW_MULTISYMBOL |
| 622 | write_coeff_extra(extra_bits->cdf, bit_string >> 1, |
| 623 | bit_string_length - skip_bits, w); |
| 624 | #else |
| 625 | write_coeff_extra(extra_bits->prob, bit_string >> 1, bit_string_length, |
| 626 | skip_bits, w, token_stats); |
| 627 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 628 | |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 629 | aom_write_bit_record(w, bit_string & 1, token_stats); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 630 | } |
| 631 | ++p; |
| 632 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 633 | ++count; |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 634 | if (eob_val == EARLY_EOB || count == seg_eob) break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | *tp = p; |
| 638 | } |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 639 | #endif // !CONFIG_LV_MAP |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 640 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 641 | #if CONFIG_LV_MAP |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 642 | 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] | 643 | const TOKENEXTRA **tp, |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 644 | const TOKENEXTRA *const tok_end, MACROBLOCKD *xd, |
| 645 | MB_MODE_INFO *mbmi, int plane, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 646 | BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth, |
| 647 | int block, int blk_row, int blk_col, |
| 648 | TX_SIZE tx_size, TOKEN_STATS *token_stats) { |
| 649 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 650 | const BLOCK_SIZE bsize = txsize_to_bsize[tx_size]; |
| 651 | const int tx_row = blk_row >> (1 - pd->subsampling_y); |
| 652 | const int tx_col = blk_col >> (1 - pd->subsampling_x); |
| 653 | TX_SIZE plane_tx_size; |
| 654 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
| 655 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
| 656 | |
| 657 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 658 | |
| 659 | plane_tx_size = |
| 660 | plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0] |
| 661 | : mbmi->inter_tx_size[tx_row][tx_col]; |
| 662 | |
| 663 | if (tx_size == plane_tx_size) { |
| 664 | TOKEN_STATS tmp_token_stats; |
| 665 | init_token_stats(&tmp_token_stats); |
| 666 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 667 | tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block); |
| 668 | uint16_t eob = x->mbmi_ext->eobs[plane][block]; |
| 669 | TXB_CTX txb_ctx = { x->mbmi_ext->txb_skip_ctx[plane][block], |
| 670 | x->mbmi_ext->dc_sign_ctx[plane][block] }; |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 671 | av1_write_coeffs_txb(cm, xd, w, blk_row, blk_col, block, plane, tx_size, |
| 672 | tcoeff, eob, &txb_ctx); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 673 | #if CONFIG_RD_DEBUG |
| 674 | token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost; |
| 675 | token_stats->cost += tmp_token_stats.cost; |
| 676 | #endif |
| 677 | } else { |
| 678 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
| 679 | const int bsl = tx_size_wide_unit[sub_txs]; |
| 680 | int i; |
| 681 | |
| 682 | assert(bsl > 0); |
| 683 | |
| 684 | for (i = 0; i < 4; ++i) { |
| 685 | const int offsetr = blk_row + (i >> 1) * bsl; |
| 686 | const int offsetc = blk_col + (i & 0x01) * bsl; |
| 687 | const int step = tx_size_wide_unit[sub_txs] * tx_size_high_unit[sub_txs]; |
| 688 | |
| 689 | if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; |
| 690 | |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 691 | pack_txb_tokens(w, cm, x, tp, tok_end, xd, mbmi, plane, plane_bsize, |
| 692 | bit_depth, block, offsetr, offsetc, sub_txs, token_stats); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 693 | block += step; |
| 694 | } |
| 695 | } |
| 696 | } |
| 697 | #else // CONFIG_LV_MAP |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 698 | static void pack_txb_tokens(aom_writer *w, const TOKENEXTRA **tp, |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 699 | const TOKENEXTRA *const tok_end, MACROBLOCKD *xd, |
| 700 | MB_MODE_INFO *mbmi, int plane, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 701 | BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 702 | int block, int blk_row, int blk_col, |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 703 | TX_SIZE tx_size, TOKEN_STATS *token_stats) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 704 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 705 | const BLOCK_SIZE bsize = txsize_to_bsize[tx_size]; |
| 706 | const int tx_row = blk_row >> (1 - pd->subsampling_y); |
| 707 | const int tx_col = blk_col >> (1 - pd->subsampling_x); |
| 708 | TX_SIZE plane_tx_size; |
Jingning Han | f65b870 | 2016-10-31 12:13:20 -0700 | [diff] [blame] | 709 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
| 710 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 711 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 712 | TX_TYPE tx_type = av1_get_tx_type(plane ? PLANE_TYPE_UV : PLANE_TYPE_Y, xd, |
| 713 | blk_row, blk_col, block, tx_size); |
| 714 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 715 | |
| 716 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 717 | |
Debargha Mukherjee | 2f12340 | 2016-08-30 17:43:38 -0700 | [diff] [blame] | 718 | plane_tx_size = |
| 719 | plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0] |
| 720 | : mbmi->inter_tx_size[tx_row][tx_col]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 721 | |
| 722 | if (tx_size == plane_tx_size) { |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 723 | TOKEN_STATS tmp_token_stats; |
| 724 | init_token_stats(&tmp_token_stats); |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 725 | pack_mb_tokens(w, tp, tok_end, bit_depth, tx_size, |
| 726 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 727 | tx_type, is_inter_block(mbmi), |
| 728 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 729 | &tmp_token_stats); |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 730 | #if CONFIG_RD_DEBUG |
| 731 | token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost; |
| 732 | token_stats->cost += tmp_token_stats.cost; |
| 733 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 734 | } else { |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 735 | #if CONFIG_RECT_TX_EXT |
| 736 | int is_qttx = plane_tx_size == quarter_txsize_lookup[plane_bsize]; |
| 737 | const TX_SIZE sub_txs = is_qttx ? plane_tx_size : sub_tx_size_map[tx_size]; |
| 738 | #else |
Jingning Han | 1807fdc | 2016-11-08 15:17:58 -0800 | [diff] [blame] | 739 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 740 | #endif |
Jingning Han | 1807fdc | 2016-11-08 15:17:58 -0800 | [diff] [blame] | 741 | const int bsl = tx_size_wide_unit[sub_txs]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 742 | int i; |
| 743 | |
| 744 | assert(bsl > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 745 | |
| 746 | for (i = 0; i < 4; ++i) { |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 747 | #if CONFIG_RECT_TX_EXT |
| 748 | int is_wide_tx = tx_size_wide_unit[sub_txs] > tx_size_high_unit[sub_txs]; |
| 749 | const int offsetr = |
| 750 | is_qttx ? (is_wide_tx ? i * tx_size_high_unit[sub_txs] : 0) |
| 751 | : blk_row + (i >> 1) * bsl; |
| 752 | const int offsetc = |
| 753 | is_qttx ? (is_wide_tx ? 0 : i * tx_size_wide_unit[sub_txs]) |
| 754 | : blk_col + (i & 0x01) * bsl; |
| 755 | #else |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 756 | const int offsetr = blk_row + (i >> 1) * bsl; |
| 757 | const int offsetc = blk_col + (i & 0x01) * bsl; |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 758 | #endif |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 759 | const int step = tx_size_wide_unit[sub_txs] * tx_size_high_unit[sub_txs]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 760 | |
| 761 | if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; |
| 762 | |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 763 | pack_txb_tokens(w, tp, tok_end, xd, mbmi, plane, plane_bsize, bit_depth, |
| 764 | block, offsetr, offsetc, sub_txs, token_stats); |
Jingning Han | 98d6a1f | 2016-11-03 12:47:47 -0700 | [diff] [blame] | 765 | block += step; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | } |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 769 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 770 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 771 | static void write_segment_id(aom_writer *w, const struct segmentation *seg, |
Thomas | 9ac5508 | 2016-09-23 18:04:17 +0100 | [diff] [blame] | 772 | struct segmentation_probs *segp, int segment_id) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 773 | if (seg->enabled && seg->update_map) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 774 | aom_write_symbol(w, segment_id, segp->tree_cdf, MAX_SEGMENTS); |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 775 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 776 | } |
| 777 | |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 778 | #if CONFIG_NEW_MULTISYMBOL |
| 779 | #define WRITE_REF_BIT(bname, pname) \ |
Thomas Davies | 894cc81 | 2017-06-22 17:51:33 +0100 | [diff] [blame] | 780 | aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(cm, xd), 2) |
Thomas Davies | 0fbd2b7 | 2017-09-12 10:49:45 +0100 | [diff] [blame] | 781 | #define WRITE_REF_BIT2(bname, pname) \ |
| 782 | aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(xd), 2) |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 783 | #else |
| 784 | #define WRITE_REF_BIT(bname, pname) \ |
| 785 | aom_write(w, bname, av1_get_pred_prob_##pname(cm, xd)) |
Thomas Davies | 0fbd2b7 | 2017-09-12 10:49:45 +0100 | [diff] [blame] | 786 | #define WRITE_REF_BIT2(bname, pname) \ |
| 787 | aom_write(w, bname, av1_get_pred_prob_##pname(cm, xd)) |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 788 | #endif |
| 789 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 790 | // This function encodes the reference frame |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 791 | static void write_ref_frames(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 792 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 793 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 794 | const int is_compound = has_second_ref(mbmi); |
| 795 | const int segment_id = mbmi->segment_id; |
| 796 | |
| 797 | // If segment level coding of this signal is disabled... |
| 798 | // or the segment allows multiple reference frame options |
| 799 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
| 800 | assert(!is_compound); |
| 801 | assert(mbmi->ref_frame[0] == |
| 802 | get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME)); |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 803 | } |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 804 | #if CONFIG_SEGMENT_GLOBALMV |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 805 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP) || |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 806 | segfeature_active(&cm->seg, segment_id, SEG_LVL_GLOBALMV)) |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 807 | #else |
| 808 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) |
| 809 | #endif |
| 810 | { |
| 811 | assert(!is_compound); |
| 812 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 813 | } else { |
| 814 | // does the feature use compound prediction or not |
| 815 | // (if not specified at the frame/segment level) |
| 816 | if (cm->reference_mode == REFERENCE_MODE_SELECT) { |
Debargha Mukherjee | 0f248c4 | 2017-09-07 12:40:18 -0700 | [diff] [blame] | 817 | if (is_comp_ref_allowed(mbmi->sb_type)) |
Thomas Davies | 860def6 | 2017-06-14 10:00:03 +0100 | [diff] [blame] | 818 | #if CONFIG_NEW_MULTISYMBOL |
| 819 | aom_write_symbol(w, is_compound, av1_get_reference_mode_cdf(cm, xd), 2); |
| 820 | #else |
Debargha Mukherjee | 0f248c4 | 2017-09-07 12:40:18 -0700 | [diff] [blame] | 821 | aom_write(w, is_compound, av1_get_reference_mode_prob(cm, xd)); |
| 822 | #endif // CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 823 | } else { |
| 824 | assert((!is_compound) == (cm->reference_mode == SINGLE_REFERENCE)); |
| 825 | } |
| 826 | |
| 827 | if (is_compound) { |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 828 | #if CONFIG_EXT_COMP_REFS |
| 829 | const COMP_REFERENCE_TYPE comp_ref_type = has_uni_comp_refs(mbmi) |
| 830 | ? UNIDIR_COMP_REFERENCE |
| 831 | : BIDIR_COMP_REFERENCE; |
Thomas Davies | 0fbd2b7 | 2017-09-12 10:49:45 +0100 | [diff] [blame] | 832 | #if CONFIG_NEW_MULTISYMBOL |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 833 | aom_write_symbol(w, comp_ref_type, av1_get_comp_reference_type_cdf(xd), |
| 834 | 2); |
Thomas Davies | 0fbd2b7 | 2017-09-12 10:49:45 +0100 | [diff] [blame] | 835 | #else |
| 836 | aom_write(w, comp_ref_type, av1_get_comp_reference_type_prob(cm, xd)); |
| 837 | #endif |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 838 | |
| 839 | if (comp_ref_type == UNIDIR_COMP_REFERENCE) { |
| 840 | const int bit = mbmi->ref_frame[0] == BWDREF_FRAME; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 841 | WRITE_REF_BIT2(bit, uni_comp_ref_p); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 842 | |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 843 | if (!bit) { |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 844 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 845 | const int bit1 = mbmi->ref_frame[1] == LAST3_FRAME || |
| 846 | mbmi->ref_frame[1] == GOLDEN_FRAME; |
| 847 | WRITE_REF_BIT2(bit1, uni_comp_ref_p1); |
| 848 | if (bit1) { |
| 849 | const int bit2 = mbmi->ref_frame[1] == GOLDEN_FRAME; |
| 850 | WRITE_REF_BIT2(bit2, uni_comp_ref_p2); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 851 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 852 | } else { |
| 853 | assert(mbmi->ref_frame[1] == ALTREF_FRAME); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | return; |
| 857 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 858 | |
| 859 | assert(comp_ref_type == BIDIR_COMP_REFERENCE); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 860 | #endif // CONFIG_EXT_COMP_REFS |
| 861 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 862 | const int bit = (mbmi->ref_frame[0] == GOLDEN_FRAME || |
| 863 | mbmi->ref_frame[0] == LAST3_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 864 | WRITE_REF_BIT(bit, comp_ref_p); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 865 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 866 | if (!bit) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 867 | const int bit1 = mbmi->ref_frame[0] == LAST_FRAME; |
| 868 | WRITE_REF_BIT(bit1, comp_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 869 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 870 | const int bit2 = mbmi->ref_frame[0] == GOLDEN_FRAME; |
| 871 | WRITE_REF_BIT(bit2, comp_ref_p2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 872 | } |
Zoe Liu | 7b1ec7a | 2017-05-24 22:28:24 -0700 | [diff] [blame] | 873 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 874 | const int bit_bwd = mbmi->ref_frame[1] == ALTREF_FRAME; |
| 875 | WRITE_REF_BIT(bit_bwd, comp_bwdref_p); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 876 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 877 | if (!bit_bwd) { |
| 878 | WRITE_REF_BIT(mbmi->ref_frame[1] == ALTREF2_FRAME, comp_bwdref_p1); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 879 | } |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 880 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 881 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 882 | const int bit0 = (mbmi->ref_frame[0] <= ALTREF_FRAME && |
| 883 | mbmi->ref_frame[0] >= BWDREF_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 884 | WRITE_REF_BIT(bit0, single_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 885 | |
| 886 | if (bit0) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 887 | const int bit1 = mbmi->ref_frame[0] == ALTREF_FRAME; |
| 888 | WRITE_REF_BIT(bit1, single_ref_p2); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 889 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 890 | if (!bit1) { |
| 891 | WRITE_REF_BIT(mbmi->ref_frame[0] == ALTREF2_FRAME, single_ref_p6); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 892 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 893 | } else { |
| 894 | const int bit2 = (mbmi->ref_frame[0] == LAST3_FRAME || |
| 895 | mbmi->ref_frame[0] == GOLDEN_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 896 | WRITE_REF_BIT(bit2, single_ref_p3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 897 | |
| 898 | if (!bit2) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 899 | const int bit3 = mbmi->ref_frame[0] != LAST_FRAME; |
| 900 | WRITE_REF_BIT(bit3, single_ref_p4); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 901 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 902 | const int bit4 = mbmi->ref_frame[0] != LAST3_FRAME; |
| 903 | WRITE_REF_BIT(bit4, single_ref_p5); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 904 | } |
| 905 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 906 | } |
| 907 | } |
| 908 | } |
| 909 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 910 | #if CONFIG_FILTER_INTRA |
| 911 | static void write_filter_intra_mode_info(const AV1_COMMON *const cm, |
Jingning Han | 62946d1 | 2017-05-26 11:29:30 -0700 | [diff] [blame] | 912 | const MACROBLOCKD *xd, |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 913 | const MB_MODE_INFO *const mbmi, |
| 914 | aom_writer *w) { |
Urvang Joshi | c6300aa | 2017-06-01 14:46:23 -0700 | [diff] [blame] | 915 | if (mbmi->mode == DC_PRED && mbmi->palette_mode_info.palette_size[0] == 0) { |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 916 | aom_write(w, mbmi->filter_intra_mode_info.use_filter_intra_mode[0], |
| 917 | cm->fc->filter_intra_probs[0]); |
| 918 | if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0]) { |
| 919 | const FILTER_INTRA_MODE mode = |
| 920 | mbmi->filter_intra_mode_info.filter_intra_mode[0]; |
Yue Chen | 63ce36f | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 921 | aom_write_symbol(w, mode, xd->tile_ctx->filter_intra_mode_cdf[0], |
| 922 | FILTER_INTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 923 | } |
| 924 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 925 | } |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 926 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 927 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 928 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 929 | static void write_intra_angle_info(const MACROBLOCKD *xd, |
| 930 | FRAME_CONTEXT *const ec_ctx, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 931 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 932 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Joe Young | 830d4ce | 2017-05-30 17:48:13 -0700 | [diff] [blame] | 933 | if (!av1_use_angle_delta(bsize)) return; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 934 | |
hui su | 45dc597 | 2016-12-08 17:42:50 -0800 | [diff] [blame] | 935 | if (av1_is_directional_mode(mbmi->mode, bsize)) { |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 936 | #if CONFIG_EXT_INTRA_MOD |
| 937 | aom_write_symbol(w, mbmi->angle_delta[0] + MAX_ANGLE_DELTA, |
| 938 | ec_ctx->angle_delta_cdf[mbmi->mode - V_PRED], |
| 939 | 2 * MAX_ANGLE_DELTA + 1); |
| 940 | #else |
| 941 | (void)ec_ctx; |
hui su | 0a6731f | 2017-04-26 15:23:47 -0700 | [diff] [blame] | 942 | write_uniform(w, 2 * MAX_ANGLE_DELTA + 1, |
| 943 | MAX_ANGLE_DELTA + mbmi->angle_delta[0]); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 944 | #endif // CONFIG_EXT_INTRA_MOD |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 945 | } |
| 946 | |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 947 | if (av1_is_directional_mode(get_uv_mode(mbmi->uv_mode), bsize)) { |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 948 | #if CONFIG_EXT_INTRA_MOD |
| 949 | aom_write_symbol(w, mbmi->angle_delta[1] + MAX_ANGLE_DELTA, |
| 950 | ec_ctx->angle_delta_cdf[mbmi->uv_mode - V_PRED], |
| 951 | 2 * MAX_ANGLE_DELTA + 1); |
| 952 | #else |
hui su | 0a6731f | 2017-04-26 15:23:47 -0700 | [diff] [blame] | 953 | write_uniform(w, 2 * MAX_ANGLE_DELTA + 1, |
| 954 | MAX_ANGLE_DELTA + mbmi->angle_delta[1]); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 955 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | #endif // CONFIG_EXT_INTRA |
| 959 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 960 | static void write_mb_interp_filter(AV1_COMP *cpi, const MACROBLOCKD *xd, |
| 961 | aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 962 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 963 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
Thomas Davies | 77c7c40 | 2017-01-11 17:58:54 +0000 | [diff] [blame] | 964 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 965 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 966 | if (!av1_is_interp_needed(xd)) { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 967 | assert(mbmi->interp_filters == |
| 968 | av1_broadcast_interp_filter( |
| 969 | av1_unswitchable_filter(cm->interp_filter))); |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 970 | return; |
| 971 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 972 | if (cm->interp_filter == SWITCHABLE) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 973 | #if CONFIG_DUAL_FILTER |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 974 | int dir; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 975 | for (dir = 0; dir < 2; ++dir) { |
| 976 | if (has_subpel_mv_component(xd->mi[0], xd, dir) || |
| 977 | (mbmi->ref_frame[1] > INTRA_FRAME && |
| 978 | has_subpel_mv_component(xd->mi[0], xd, dir + 2))) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 979 | const int ctx = av1_get_pred_context_switchable_interp(xd, dir); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 980 | InterpFilter filter = |
| 981 | av1_extract_interp_filter(mbmi->interp_filters, dir); |
| 982 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
Angie Chiang | b9b42a0 | 2017-01-20 12:47:36 -0800 | [diff] [blame] | 983 | SWITCHABLE_FILTERS); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 984 | ++cpi->interp_filter_selected[0][filter]; |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 985 | } else { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 986 | assert(av1_extract_interp_filter(mbmi->interp_filters, dir) == |
| 987 | EIGHTTAP_REGULAR); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 988 | } |
| 989 | } |
| 990 | #else |
| 991 | { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 992 | const int ctx = av1_get_pred_context_switchable_interp(xd); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 993 | InterpFilter filter = av1_extract_interp_filter(mbmi->interp_filters, 0); |
| 994 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
| 995 | SWITCHABLE_FILTERS); |
| 996 | ++cpi->interp_filter_selected[0][filter]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 997 | } |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 998 | #endif // CONFIG_DUAL_FILTER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 999 | } |
| 1000 | } |
| 1001 | |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1002 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1003 | // Transmit color values with delta encoding. Write the first value as |
| 1004 | // literal, and the deltas between each value and the previous one. "min_val" is |
| 1005 | // the smallest possible value of the deltas. |
| 1006 | static void delta_encode_palette_colors(const int *colors, int num, |
| 1007 | int bit_depth, int min_val, |
| 1008 | aom_writer *w) { |
| 1009 | if (num <= 0) return; |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1010 | assert(colors[0] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1011 | aom_write_literal(w, colors[0], bit_depth); |
| 1012 | if (num == 1) return; |
| 1013 | int max_delta = 0; |
| 1014 | int deltas[PALETTE_MAX_SIZE]; |
| 1015 | memset(deltas, 0, sizeof(deltas)); |
| 1016 | for (int i = 1; i < num; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1017 | assert(colors[i] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1018 | const int delta = colors[i] - colors[i - 1]; |
| 1019 | deltas[i - 1] = delta; |
| 1020 | assert(delta >= min_val); |
| 1021 | if (delta > max_delta) max_delta = delta; |
| 1022 | } |
| 1023 | const int min_bits = bit_depth - 3; |
| 1024 | int bits = AOMMAX(av1_ceil_log2(max_delta + 1 - min_val), min_bits); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1025 | assert(bits <= bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1026 | int range = (1 << bit_depth) - colors[0] - min_val; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1027 | aom_write_literal(w, bits - min_bits, 2); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1028 | for (int i = 0; i < num - 1; ++i) { |
| 1029 | aom_write_literal(w, deltas[i] - min_val, bits); |
| 1030 | range -= deltas[i]; |
| 1031 | bits = AOMMIN(bits, av1_ceil_log2(range)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1032 | } |
| 1033 | } |
| 1034 | |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1035 | // Transmit luma palette color values. First signal if each color in the color |
| 1036 | // cache is used. Those colors that are not in the cache are transmitted with |
| 1037 | // delta encoding. |
| 1038 | static void write_palette_colors_y(const MACROBLOCKD *const xd, |
| 1039 | const PALETTE_MODE_INFO *const pmi, |
| 1040 | int bit_depth, aom_writer *w) { |
| 1041 | const int n = pmi->palette_size[0]; |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1042 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 1043 | const int n_cache = av1_get_palette_cache(xd, 0, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1044 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 1045 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 1046 | const int n_out_cache = |
| 1047 | av1_index_color_cache(color_cache, n_cache, pmi->palette_colors, n, |
| 1048 | cache_color_found, out_cache_colors); |
| 1049 | int n_in_cache = 0; |
| 1050 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 1051 | const int found = cache_color_found[i]; |
| 1052 | aom_write_bit(w, found); |
| 1053 | n_in_cache += found; |
| 1054 | } |
| 1055 | assert(n_in_cache + n_out_cache == n); |
| 1056 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 1, w); |
| 1057 | } |
| 1058 | |
| 1059 | // Write chroma palette color values. U channel is handled similarly to the luma |
| 1060 | // channel. For v channel, either use delta encoding or transmit raw values |
| 1061 | // directly, whichever costs less. |
| 1062 | static void write_palette_colors_uv(const MACROBLOCKD *const xd, |
| 1063 | const PALETTE_MODE_INFO *const pmi, |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1064 | int bit_depth, aom_writer *w) { |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1065 | const int n = pmi->palette_size[1]; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1066 | const uint16_t *colors_u = pmi->palette_colors + PALETTE_MAX_SIZE; |
| 1067 | const uint16_t *colors_v = pmi->palette_colors + 2 * PALETTE_MAX_SIZE; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1068 | // U channel colors. |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1069 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 1070 | const int n_cache = av1_get_palette_cache(xd, 1, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1071 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 1072 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 1073 | const int n_out_cache = av1_index_color_cache( |
| 1074 | color_cache, n_cache, colors_u, n, cache_color_found, out_cache_colors); |
| 1075 | int n_in_cache = 0; |
| 1076 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 1077 | const int found = cache_color_found[i]; |
| 1078 | aom_write_bit(w, found); |
| 1079 | n_in_cache += found; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1080 | } |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1081 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 0, w); |
| 1082 | |
| 1083 | // V channel colors. Don't use color cache as the colors are not sorted. |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1084 | const int max_val = 1 << bit_depth; |
| 1085 | int zero_count = 0, min_bits_v = 0; |
| 1086 | int bits_v = |
| 1087 | av1_get_palette_delta_bits_v(pmi, bit_depth, &zero_count, &min_bits_v); |
| 1088 | const int rate_using_delta = |
| 1089 | 2 + bit_depth + (bits_v + 1) * (n - 1) - zero_count; |
| 1090 | const int rate_using_raw = bit_depth * n; |
| 1091 | if (rate_using_delta < rate_using_raw) { // delta encoding |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1092 | assert(colors_v[0] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1093 | aom_write_bit(w, 1); |
| 1094 | aom_write_literal(w, bits_v - min_bits_v, 2); |
| 1095 | aom_write_literal(w, colors_v[0], bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1096 | for (int i = 1; i < n; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1097 | assert(colors_v[i] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1098 | if (colors_v[i] == colors_v[i - 1]) { // No need to signal sign bit. |
| 1099 | aom_write_literal(w, 0, bits_v); |
| 1100 | continue; |
| 1101 | } |
| 1102 | const int delta = abs((int)colors_v[i] - colors_v[i - 1]); |
| 1103 | const int sign_bit = colors_v[i] < colors_v[i - 1]; |
| 1104 | if (delta <= max_val - delta) { |
| 1105 | aom_write_literal(w, delta, bits_v); |
| 1106 | aom_write_bit(w, sign_bit); |
| 1107 | } else { |
| 1108 | aom_write_literal(w, max_val - delta, bits_v); |
| 1109 | aom_write_bit(w, !sign_bit); |
| 1110 | } |
| 1111 | } |
| 1112 | } else { // Transmit raw values. |
| 1113 | aom_write_bit(w, 0); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1114 | for (int i = 0; i < n; ++i) { |
| 1115 | assert(colors_v[i] < (1 << bit_depth)); |
| 1116 | aom_write_literal(w, colors_v[i], bit_depth); |
| 1117 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1118 | } |
| 1119 | } |
| 1120 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
| 1121 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1122 | static void write_palette_mode_info(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 1123 | const MODE_INFO *const mi, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1124 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1125 | const MODE_INFO *const above_mi = xd->above_mi; |
| 1126 | const MODE_INFO *const left_mi = xd->left_mi; |
| 1127 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1128 | const PALETTE_MODE_INFO *const pmi = &mbmi->palette_mode_info; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1129 | |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1130 | assert(bsize >= BLOCK_8X8 && bsize <= BLOCK_LARGEST); |
| 1131 | const int block_palette_idx = bsize - BLOCK_8X8; |
| 1132 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1133 | if (mbmi->mode == DC_PRED) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1134 | const int n = pmi->palette_size[0]; |
| 1135 | int palette_y_mode_ctx = 0; |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1136 | if (above_mi) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1137 | palette_y_mode_ctx += |
| 1138 | (above_mi->mbmi.palette_mode_info.palette_size[0] > 0); |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1139 | } |
| 1140 | if (left_mi) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1141 | palette_y_mode_ctx += |
| 1142 | (left_mi->mbmi.palette_mode_info.palette_size[0] > 0); |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1143 | } |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1144 | #if CONFIG_NEW_MULTISYMBOL |
| 1145 | aom_write_symbol( |
| 1146 | w, n > 0, |
| 1147 | xd->tile_ctx->palette_y_mode_cdf[block_palette_idx][palette_y_mode_ctx], |
| 1148 | 2); |
| 1149 | #else |
clang-format | 55ce9e0 | 2017-02-15 22:27:12 -0800 | [diff] [blame] | 1150 | aom_write( |
| 1151 | w, n > 0, |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1152 | av1_default_palette_y_mode_prob[block_palette_idx][palette_y_mode_ctx]); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1153 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1154 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1155 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1156 | xd->tile_ctx->palette_y_size_cdf[block_palette_idx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1157 | PALETTE_SIZES); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1158 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1159 | write_palette_colors_y(xd, pmi, cm->bit_depth, w); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1160 | #else |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1161 | for (int i = 0; i < n; ++i) { |
| 1162 | assert(pmi->palette_colors[i] < (1 << cm->bit_depth)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1163 | aom_write_literal(w, pmi->palette_colors[i], cm->bit_depth); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1164 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1165 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1166 | } |
| 1167 | } |
| 1168 | |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 1169 | if (mbmi->uv_mode == UV_DC_PRED) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1170 | const int n = pmi->palette_size[1]; |
| 1171 | const int palette_uv_mode_ctx = (pmi->palette_size[0] > 0); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1172 | #if CONFIG_NEW_MULTISYMBOL |
| 1173 | aom_write_symbol(w, n > 0, |
| 1174 | xd->tile_ctx->palette_uv_mode_cdf[palette_uv_mode_ctx], 2); |
| 1175 | #else |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1176 | aom_write(w, n > 0, av1_default_palette_uv_mode_prob[palette_uv_mode_ctx]); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1177 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1178 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1179 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1180 | xd->tile_ctx->palette_uv_size_cdf[block_palette_idx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1181 | PALETTE_SIZES); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1182 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1183 | write_palette_colors_uv(xd, pmi, cm->bit_depth, w); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1184 | #else |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1185 | for (int i = 0; i < n; ++i) { |
| 1186 | assert(pmi->palette_colors[PALETTE_MAX_SIZE + i] < |
| 1187 | (1 << cm->bit_depth)); |
| 1188 | assert(pmi->palette_colors[2 * PALETTE_MAX_SIZE + i] < |
| 1189 | (1 << cm->bit_depth)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1190 | aom_write_literal(w, pmi->palette_colors[PALETTE_MAX_SIZE + i], |
| 1191 | cm->bit_depth); |
| 1192 | aom_write_literal(w, pmi->palette_colors[2 * PALETTE_MAX_SIZE + i], |
| 1193 | cm->bit_depth); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1194 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1195 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1196 | } |
| 1197 | } |
| 1198 | } |
| 1199 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1200 | 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] | 1201 | #if CONFIG_TXK_SEL |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 1202 | int blk_row, int blk_col, int block, int plane, |
| 1203 | TX_SIZE tx_size, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1204 | #endif |
| 1205 | aom_writer *w) { |
| 1206 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1207 | const int is_inter = is_inter_block(mbmi); |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 1208 | #if !CONFIG_TXK_SEL |
Sarah Parker | 90024e4 | 2017-10-06 16:50:47 -0700 | [diff] [blame] | 1209 | const TX_SIZE sqr_up_tx_size = |
| 1210 | txsize_sqr_up_map[max_txsize_rect_lookup[xd->mi[0]->mbmi.sb_type]]; |
| 1211 | const TX_SIZE tx_size = |
| 1212 | is_inter ? AOMMAX(sub_tx_size_map[sqr_up_tx_size], mbmi->min_tx_size) |
| 1213 | : mbmi->tx_size; |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 1214 | #endif // !CONFIG_TXK_SEL |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 1215 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 1216 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1217 | #if !CONFIG_TXK_SEL |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1218 | TX_TYPE tx_type = mbmi->tx_type; |
| 1219 | #else |
| 1220 | // Only y plane's tx_type is transmitted |
Angie Chiang | 39b06eb | 2017-04-14 09:52:29 -0700 | [diff] [blame] | 1221 | if (plane > 0) return; |
| 1222 | PLANE_TYPE plane_type = get_plane_type(plane); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 1223 | TX_TYPE tx_type = |
| 1224 | av1_get_tx_type(plane_type, xd, blk_row, blk_col, block, tx_size); |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1225 | #endif |
| 1226 | |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1227 | if (!FIXED_TX_TYPE) { |
Urvang Joshi | feb925f | 2016-12-05 10:37:29 -0800 | [diff] [blame] | 1228 | const TX_SIZE square_tx_size = txsize_sqr_map[tx_size]; |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1229 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 1230 | if (get_ext_tx_types(tx_size, bsize, is_inter, cm->reduced_tx_set_used) > |
| 1231 | 1 && |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 1232 | ((!cm->seg.enabled && cm->base_qindex > 0) || |
| 1233 | (cm->seg.enabled && xd->qindex[mbmi->segment_id] > 0)) && |
Jingning Han | 641b1ad | 2016-11-04 09:58:36 -0700 | [diff] [blame] | 1234 | !mbmi->skip && |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1235 | !segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) { |
Sarah Parker | c5ccd4c | 2017-08-03 11:27:50 -0700 | [diff] [blame] | 1236 | #if CONFIG_MRC_TX |
| 1237 | if (tx_type == MRC_DCT) |
| 1238 | assert(mbmi->valid_mrc_mask && "Invalid MRC mask"); |
| 1239 | #endif // CONFIG_MRC_TX |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1240 | const TxSetType tx_set_type = get_ext_tx_set_type( |
| 1241 | tx_size, bsize, is_inter, cm->reduced_tx_set_used); |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 1242 | const int eset = |
| 1243 | get_ext_tx_set(tx_size, bsize, is_inter, cm->reduced_tx_set_used); |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1244 | // eset == 0 should correspond to a set with only DCT_DCT and there |
| 1245 | // is no need to send the tx_type |
| 1246 | assert(eset > 0); |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1247 | assert(av1_ext_tx_used[tx_set_type][tx_type]); |
Lester Lu | 432012f | 2017-08-17 14:39:29 -0700 | [diff] [blame] | 1248 | #if !CONFIG_LGT_FROM_PRED |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1249 | if (is_inter) { |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1250 | aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type], |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1251 | ec_ctx->inter_ext_tx_cdf[eset][square_tx_size], |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1252 | av1_num_ext_tx_set[tx_set_type]); |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1253 | } else if (ALLOW_INTRA_EXT_TX) { |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1254 | #if CONFIG_FILTER_INTRA |
| 1255 | PREDICTION_MODE intra_dir; |
| 1256 | if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0]) |
| 1257 | intra_dir = fimode_to_intradir[mbmi->filter_intra_mode_info |
| 1258 | .filter_intra_mode[0]]; |
| 1259 | else |
| 1260 | intra_dir = mbmi->mode; |
| 1261 | aom_write_symbol( |
| 1262 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1263 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][intra_dir], |
| 1264 | av1_num_ext_tx_set[tx_set_type]); |
| 1265 | #else |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1266 | aom_write_symbol( |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1267 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1268 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode], |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1269 | av1_num_ext_tx_set[tx_set_type]); |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1270 | #endif |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1271 | } |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1272 | #else |
Lester Lu | 432012f | 2017-08-17 14:39:29 -0700 | [diff] [blame] | 1273 | // only signal tx_type when lgt is not allowed or not selected |
| 1274 | if (is_inter) { |
| 1275 | if (LGT_FROM_PRED_INTER) { |
| 1276 | if (is_lgt_allowed(mbmi->mode, tx_size) && !cm->reduced_tx_set_used) |
| 1277 | aom_write(w, mbmi->use_lgt, ec_ctx->inter_lgt_prob[square_tx_size]); |
| 1278 | if (!mbmi->use_lgt) |
| 1279 | aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1280 | ec_ctx->inter_ext_tx_cdf[eset][square_tx_size], |
| 1281 | av1_num_ext_tx_set[tx_set_type]); |
| 1282 | } else { |
| 1283 | aom_write_symbol(w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1284 | ec_ctx->inter_ext_tx_cdf[eset][square_tx_size], |
| 1285 | av1_num_ext_tx_set[tx_set_type]); |
| 1286 | } |
| 1287 | } else if (ALLOW_INTRA_EXT_TX) { |
| 1288 | if (LGT_FROM_PRED_INTRA) { |
| 1289 | if (is_lgt_allowed(mbmi->mode, tx_size) && !cm->reduced_tx_set_used) |
| 1290 | aom_write(w, mbmi->use_lgt, |
| 1291 | ec_ctx->intra_lgt_prob[square_tx_size][mbmi->mode]); |
| 1292 | if (!mbmi->use_lgt) |
| 1293 | aom_write_symbol( |
| 1294 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1295 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode], |
| 1296 | av1_num_ext_tx_set[tx_set_type]); |
| 1297 | } else { |
| 1298 | aom_write_symbol( |
| 1299 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1300 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode], |
| 1301 | av1_num_ext_tx_set[tx_set_type]); |
| 1302 | } |
| 1303 | } |
| 1304 | #endif // CONFIG_LGT_FROM_PRED |
| 1305 | } |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1306 | } |
| 1307 | } |
| 1308 | |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1309 | static void write_intra_mode(FRAME_CONTEXT *frame_ctx, BLOCK_SIZE bsize, |
| 1310 | PREDICTION_MODE mode, aom_writer *w) { |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 1311 | 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] | 1312 | INTRA_MODES); |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1313 | } |
| 1314 | |
| 1315 | static void write_intra_uv_mode(FRAME_CONTEXT *frame_ctx, |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 1316 | UV_PREDICTION_MODE uv_mode, |
| 1317 | PREDICTION_MODE y_mode, aom_writer *w) { |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1318 | #if !CONFIG_CFL |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 1319 | uv_mode = get_uv_mode(uv_mode); |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1320 | #endif |
| 1321 | aom_write_symbol(w, uv_mode, frame_ctx->uv_mode_cdf[y_mode], UV_INTRA_MODES); |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1322 | } |
| 1323 | |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1324 | #if CONFIG_CFL |
David Michael Barr | f6eaa15 | 2017-07-19 19:42:28 +0900 | [diff] [blame] | 1325 | static void write_cfl_alphas(FRAME_CONTEXT *const ec_ctx, int idx, |
| 1326 | int joint_sign, aom_writer *w) { |
| 1327 | aom_write_symbol(w, joint_sign, ec_ctx->cfl_sign_cdf, CFL_JOINT_SIGNS); |
| 1328 | // Magnitudes are only signaled for nonzero codes. |
| 1329 | if (CFL_SIGN_U(joint_sign) != CFL_SIGN_ZERO) { |
| 1330 | aom_cdf_prob *cdf_u = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_U(joint_sign)]; |
| 1331 | aom_write_symbol(w, CFL_IDX_U(idx), cdf_u, CFL_ALPHABET_SIZE); |
| 1332 | } |
| 1333 | if (CFL_SIGN_V(joint_sign) != CFL_SIGN_ZERO) { |
| 1334 | aom_cdf_prob *cdf_v = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_V(joint_sign)]; |
| 1335 | aom_write_symbol(w, CFL_IDX_V(idx), cdf_v, CFL_ALPHABET_SIZE); |
| 1336 | } |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1337 | } |
| 1338 | #endif |
| 1339 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1340 | 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] | 1341 | const int mi_col, aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1342 | AV1_COMMON *const cm = &cpi->common; |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1343 | MACROBLOCK *const x = &cpi->td.mb; |
| 1344 | MACROBLOCKD *const xd = &x->e_mbd; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1345 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1346 | const MODE_INFO *mi = xd->mi[0]; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1347 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1348 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1349 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1350 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1351 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
| 1352 | const PREDICTION_MODE mode = mbmi->mode; |
| 1353 | const int segment_id = mbmi->segment_id; |
| 1354 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1355 | const int allow_hp = cm->allow_high_precision_mv; |
| 1356 | const int is_inter = is_inter_block(mbmi); |
| 1357 | const int is_compound = has_second_ref(mbmi); |
| 1358 | int skip, ref; |
David Barker | 45390c1 | 2017-02-20 14:44:40 +0000 | [diff] [blame] | 1359 | (void)mi_row; |
| 1360 | (void)mi_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1361 | |
| 1362 | if (seg->update_map) { |
| 1363 | if (seg->temporal_update) { |
| 1364 | const int pred_flag = mbmi->seg_id_predicted; |
Thomas Davies | 0002135 | 2017-07-11 16:07:55 +0100 | [diff] [blame] | 1365 | #if CONFIG_NEW_MULTISYMBOL |
| 1366 | aom_cdf_prob *pred_cdf = av1_get_pred_cdf_seg_id(segp, xd); |
| 1367 | aom_write_symbol(w, pred_flag, pred_cdf, 2); |
| 1368 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1369 | aom_prob pred_prob = av1_get_pred_prob_seg_id(segp, xd); |
| 1370 | aom_write(w, pred_flag, pred_prob); |
Thomas Davies | 0002135 | 2017-07-11 16:07:55 +0100 | [diff] [blame] | 1371 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1372 | if (!pred_flag) write_segment_id(w, seg, segp, segment_id); |
| 1373 | } else { |
| 1374 | write_segment_id(w, seg, segp, segment_id); |
| 1375 | } |
| 1376 | } |
| 1377 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1378 | skip = write_skip(cm, xd, segment_id, mi, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1379 | if (cm->delta_q_present_flag) { |
Pavel Frolov | 1dbe92d | 2017-11-02 01:49:19 +0300 | [diff] [blame] | 1380 | int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) && |
| 1381 | ((mi_col & (cm->mib_size - 1)) == 0); |
Pavel Frolov | bfa2b8c | 2017-11-01 20:08:44 +0300 | [diff] [blame] | 1382 | if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1383 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1384 | int reduced_delta_qindex = |
| 1385 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1386 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1387 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1388 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1389 | #if CONFIG_LOOPFILTER_LEVEL |
| 1390 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1391 | if (cm->delta_lf_multi) { |
| 1392 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) { |
| 1393 | int reduced_delta_lflevel = |
| 1394 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1395 | cm->delta_lf_res; |
| 1396 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1397 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1398 | } |
| 1399 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1400 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1401 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1402 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1403 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1404 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1405 | } |
| 1406 | } |
| 1407 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1408 | if (cm->delta_lf_present_flag) { |
| 1409 | int reduced_delta_lflevel = |
| 1410 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1411 | cm->delta_lf_res; |
| 1412 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1413 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1414 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1415 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1416 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1417 | } |
| 1418 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1419 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1420 | write_is_inter(cm, xd, mbmi->segment_id, w, is_inter); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1421 | |
Debargha Mukherjee | 4def76a | 2017-10-19 13:38:35 -0700 | [diff] [blame] | 1422 | if (cm->tx_mode == TX_MODE_SELECT && block_signals_txsize(bsize) && |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1423 | !(is_inter && skip) && !xd->lossless[segment_id]) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1424 | if (is_inter) { // This implies skip flag is 0. |
Rupert Swarbrick | 4e7b7d6 | 2017-09-28 17:30:44 +0100 | [diff] [blame] | 1425 | const TX_SIZE max_tx_size = get_vartx_max_txsize(mbmi, bsize, 0); |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 1426 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1427 | const int bw = tx_size_wide_unit[max_tx_size]; |
Jingning Han | 9ca05b7 | 2017-01-03 14:41:36 -0800 | [diff] [blame] | 1428 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1429 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1430 | int idx, idy; |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 1431 | for (idy = 0; idy < height; idy += bh) |
| 1432 | for (idx = 0; idx < width; idx += bw) |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1433 | write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 1434 | #if CONFIG_RECT_TX_EXT |
| 1435 | if (is_quarter_tx_allowed(xd, mbmi, is_inter_block(mbmi)) && |
| 1436 | quarter_txsize_lookup[bsize] != max_tx_size && |
| 1437 | (mbmi->tx_size == quarter_txsize_lookup[bsize] || |
| 1438 | mbmi->tx_size == max_tx_size)) { |
Thomas Davies | e3f6978 | 2017-10-03 10:43:17 +0100 | [diff] [blame] | 1439 | #if CONFIG_NEW_MULTISYMBOL |
| 1440 | aom_write_symbol(w, mbmi->tx_size != max_tx_size, |
| 1441 | cm->fc->quarter_tx_size_cdf, 2); |
| 1442 | #else |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 1443 | aom_write(w, mbmi->tx_size != max_tx_size, |
| 1444 | cm->fc->quarter_tx_size_prob); |
Thomas Davies | e3f6978 | 2017-10-03 10:43:17 +0100 | [diff] [blame] | 1445 | #endif |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 1446 | } |
| 1447 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1448 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1449 | 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] | 1450 | write_selected_tx_size(cm, xd, w); |
| 1451 | } |
| 1452 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1453 | 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] | 1454 | } |
| 1455 | |
| 1456 | if (!is_inter) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1457 | write_intra_mode(ec_ctx, bsize, mode, w); |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1458 | if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1459 | xd->plane[1].subsampling_y)) { |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1460 | write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mode, w); |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1461 | |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1462 | #if CONFIG_CFL |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1463 | if (mbmi->uv_mode == UV_CFL_PRED) { |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1464 | 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] | 1465 | } |
| 1466 | #endif |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1467 | } |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1468 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1469 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 1470 | write_intra_angle_info(xd, ec_ctx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1471 | #endif // CONFIG_EXT_INTRA |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1472 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1473 | write_palette_mode_info(cm, xd, mi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1474 | #if CONFIG_FILTER_INTRA |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1475 | write_filter_intra_mode_info(cm, xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1476 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1477 | } else { |
Yaowu Xu | b0d0d00 | 2016-11-22 09:26:43 -0800 | [diff] [blame] | 1478 | int16_t mode_ctx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1479 | write_ref_frames(cm, xd, w); |
| 1480 | |
Cheng Chen | 0a7f2f5 | 2017-10-10 15:16:09 -0700 | [diff] [blame] | 1481 | #if CONFIG_JNT_COMP |
| 1482 | if (has_second_ref(mbmi)) { |
| 1483 | const int comp_index_ctx = get_comp_index_context(cm, xd); |
| 1484 | aom_write(w, mbmi->compound_idx, |
| 1485 | ec_ctx->compound_index_probs[comp_index_ctx]); |
| 1486 | } |
| 1487 | #endif // CONFIG_JNT_COMP |
| 1488 | |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 1489 | #if CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1490 | if (!segfeature_active(seg, segment_id, SEG_LVL_REF_FRAME)) { |
| 1491 | // NOTE: Handle single ref comp mode |
| 1492 | if (!is_compound) |
| 1493 | aom_write(w, is_inter_singleref_comp_mode(mode), |
| 1494 | av1_get_inter_mode_prob(cm, xd)); |
| 1495 | } |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 1496 | #endif // CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1497 | |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1498 | #if CONFIG_COMPOUND_SINGLEREF |
| 1499 | if (is_compound || is_inter_singleref_comp_mode(mode)) |
| 1500 | #else // !CONFIG_COMPOUND_SINGLEREF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1501 | if (is_compound) |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1502 | #endif // CONFIG_COMPOUND_SINGLEREF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1503 | mode_ctx = mbmi_ext->compound_mode_context[mbmi->ref_frame[0]]; |
| 1504 | else |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1505 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1506 | mode_ctx = av1_mode_context_analyzer(mbmi_ext->mode_context, |
| 1507 | mbmi->ref_frame, bsize, -1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1508 | |
| 1509 | // If segment skip is not enabled code the mode. |
| 1510 | if (!segfeature_active(seg, segment_id, SEG_LVL_SKIP)) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1511 | if (is_inter_compound_mode(mode)) |
| 1512 | write_inter_compound_mode(cm, xd, w, mode, mode_ctx); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1513 | #if CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1514 | else if (is_inter_singleref_comp_mode(mode)) |
| 1515 | write_inter_singleref_comp_mode(xd, w, mode, mode_ctx); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1516 | #endif // CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1517 | else if (is_inter_singleref_mode(mode)) |
| 1518 | write_inter_mode(w, mode, ec_ctx, mode_ctx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1519 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1520 | if (mode == NEWMV || mode == NEW_NEWMV || |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1521 | #if CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1522 | mbmi->mode == SR_NEW_NEWMV || |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1523 | #endif // CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1524 | have_nearmv_in_inter_mode(mode)) |
| 1525 | write_drl_idx(ec_ctx, mbmi, mbmi_ext, w); |
| 1526 | else |
| 1527 | assert(mbmi->ref_mv_idx == 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1528 | } |
| 1529 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1530 | if (mode == NEWMV || mode == NEW_NEWMV) { |
| 1531 | int_mv ref_mv; |
| 1532 | for (ref = 0; ref < 1 + is_compound; ++ref) { |
| 1533 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1534 | int nmv_ctx = |
| 1535 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1536 | mbmi_ext->ref_mv_stack[rf_type], ref, mbmi->ref_mv_idx); |
| 1537 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1538 | ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[ref]][0]; |
| 1539 | av1_encode_mv(cpi, w, &mbmi->mv[ref].as_mv, &ref_mv.as_mv, nmvc, |
| 1540 | allow_hp); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1541 | } |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1542 | } else if (mode == NEAREST_NEWMV || mode == NEAR_NEWMV) { |
| 1543 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1544 | int nmv_ctx = |
| 1545 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1546 | mbmi_ext->ref_mv_stack[rf_type], 1, mbmi->ref_mv_idx); |
| 1547 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1548 | av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, |
| 1549 | &mbmi_ext->ref_mvs[mbmi->ref_frame[1]][0].as_mv, nmvc, |
| 1550 | allow_hp); |
| 1551 | } else if (mode == NEW_NEARESTMV || mode == NEW_NEARMV) { |
| 1552 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1553 | int nmv_ctx = |
| 1554 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1555 | mbmi_ext->ref_mv_stack[rf_type], 0, mbmi->ref_mv_idx); |
| 1556 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1557 | av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, |
| 1558 | &mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0].as_mv, nmvc, |
| 1559 | allow_hp); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1560 | #if CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1561 | } else if ( // mode == SR_NEAREST_NEWMV || |
| 1562 | mode == SR_NEAR_NEWMV || mode == SR_ZERO_NEWMV || |
| 1563 | mode == SR_NEW_NEWMV) { |
| 1564 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1565 | int nmv_ctx = |
| 1566 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1567 | mbmi_ext->ref_mv_stack[rf_type], 0, mbmi->ref_mv_idx); |
| 1568 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1569 | int_mv ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0]; |
| 1570 | if (mode == SR_NEW_NEWMV) |
| 1571 | av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, &ref_mv.as_mv, nmvc, |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1572 | allow_hp); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1573 | av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, &ref_mv.as_mv, nmvc, allow_hp); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1574 | #endif // CONFIG_COMPOUND_SINGLEREF |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1577 | if (cpi->common.reference_mode != COMPOUND_REFERENCE && |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1578 | cpi->common.allow_interintra_compound && is_interintra_allowed(mbmi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1579 | const int interintra = mbmi->ref_frame[1] == INTRA_FRAME; |
| 1580 | const int bsize_group = size_group_lookup[bsize]; |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1581 | #if CONFIG_NEW_MULTISYMBOL |
| 1582 | aom_write_symbol(w, interintra, ec_ctx->interintra_cdf[bsize_group], 2); |
| 1583 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1584 | aom_write(w, interintra, cm->fc->interintra_prob[bsize_group]); |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1585 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1586 | if (interintra) { |
Thomas Davies | 299ff04 | 2017-06-27 13:41:59 +0100 | [diff] [blame] | 1587 | aom_write_symbol(w, mbmi->interintra_mode, |
| 1588 | ec_ctx->interintra_mode_cdf[bsize_group], |
| 1589 | INTERINTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1590 | if (is_interintra_wedge_used(bsize)) { |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1591 | #if CONFIG_NEW_MULTISYMBOL |
| 1592 | aom_write_symbol(w, mbmi->use_wedge_interintra, |
| 1593 | ec_ctx->wedge_interintra_cdf[bsize], 2); |
| 1594 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1595 | aom_write(w, mbmi->use_wedge_interintra, |
| 1596 | cm->fc->wedge_interintra_prob[bsize]); |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1597 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1598 | if (mbmi->use_wedge_interintra) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1599 | aom_write_literal(w, mbmi->interintra_wedge_index, |
| 1600 | get_wedge_bits_lookup(bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1601 | assert(mbmi->interintra_wedge_sign == 0); |
| 1602 | } |
| 1603 | } |
| 1604 | } |
| 1605 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1606 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1607 | if (mbmi->ref_frame[1] != INTRA_FRAME) write_motion_mode(cm, xd, mi, w); |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 1608 | #if CONFIG_NCOBMC_ADAPT_WEIGHT |
Wei-Ting Lin | ca710d6 | 2017-07-13 11:41:02 -0700 | [diff] [blame] | 1609 | write_ncobmc_mode(xd, mi, w); |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 1610 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1611 | |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1612 | if ( |
| 1613 | #if CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 0c634c7 | 2017-06-19 07:06:28 -0700 | [diff] [blame] | 1614 | is_inter_anyref_comp_mode(mbmi->mode) && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1615 | #else // !CONFIG_COMPOUND_SINGLEREF |
| 1616 | cpi->common.reference_mode != SINGLE_REFERENCE && |
| 1617 | is_inter_compound_mode(mbmi->mode) && |
| 1618 | #endif // CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1619 | mbmi->motion_mode == SIMPLE_TRANSLATION && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1620 | is_any_masked_compound_used(bsize)) { |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1621 | #if CONFIG_JNT_COMP |
| 1622 | if (cm->allow_masked_compound && mbmi->compound_idx) |
| 1623 | #else |
| 1624 | if (cm->allow_masked_compound) |
| 1625 | #endif // CONFIG_JNT_COMP |
| 1626 | { |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1627 | if (!is_interinter_compound_used(COMPOUND_WEDGE, bsize)) |
| 1628 | aom_write_bit(w, mbmi->interinter_compound_type == COMPOUND_AVERAGE); |
| 1629 | else |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1630 | aom_write_symbol(w, mbmi->interinter_compound_type, |
| 1631 | ec_ctx->compound_type_cdf[bsize], COMPOUND_TYPES); |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1632 | if (is_interinter_compound_used(COMPOUND_WEDGE, bsize) && |
| 1633 | mbmi->interinter_compound_type == COMPOUND_WEDGE) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1634 | aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize)); |
| 1635 | aom_write_bit(w, mbmi->wedge_sign); |
| 1636 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1637 | if (mbmi->interinter_compound_type == COMPOUND_SEG) { |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1638 | aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS); |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1639 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1640 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1641 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1642 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 1643 | write_mb_interp_filter(cpi, xd, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1644 | } |
| 1645 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1646 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1647 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1648 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1651 | #if CONFIG_INTRABC |
| 1652 | static void write_intrabc_info(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 1653 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1654 | int enable_tx_size, aom_writer *w) { |
| 1655 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 1656 | int use_intrabc = is_intrabc_block(mbmi); |
| 1657 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 1658 | aom_write_symbol(w, use_intrabc, ec_ctx->intrabc_cdf, 2); |
| 1659 | if (use_intrabc) { |
| 1660 | assert(mbmi->mode == DC_PRED); |
| 1661 | assert(mbmi->uv_mode == UV_DC_PRED); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1662 | if ((enable_tx_size && !mbmi->skip)) { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1663 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1664 | const TX_SIZE max_tx_size = get_vartx_max_txsize(mbmi, bsize, 0); |
| 1665 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1666 | const int bw = tx_size_wide_unit[max_tx_size]; |
| 1667 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1668 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1669 | int idx, idy; |
| 1670 | for (idy = 0; idy < height; idy += bh) { |
| 1671 | for (idx = 0; idx < width; idx += bw) { |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1672 | 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] | 1673 | } |
| 1674 | } |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1675 | } else { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1676 | 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] | 1677 | } |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1678 | int_mv dv_ref = mbmi_ext->ref_mvs[INTRA_FRAME][0]; |
| 1679 | av1_encode_dv(w, &mbmi->mv[0].as_mv, &dv_ref.as_mv, &ec_ctx->ndvc); |
Sebastien Alaiwan | 3bac992 | 2017-11-02 12:34:41 +0100 | [diff] [blame] | 1680 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1681 | av1_write_tx_type(cm, xd, w); |
Sebastien Alaiwan | 3bac992 | 2017-11-02 12:34:41 +0100 | [diff] [blame] | 1682 | #endif // !CONFIG_TXK_SEL |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1683 | } |
| 1684 | } |
| 1685 | #endif // CONFIG_INTRABC |
| 1686 | |
Thomas Davies | 3ab20b4 | 2017-09-19 10:30:53 +0100 | [diff] [blame] | 1687 | static void write_mb_modes_kf(AV1_COMMON *cm, MACROBLOCKD *xd, |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1688 | #if CONFIG_INTRABC |
| 1689 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1690 | #endif // CONFIG_INTRABC |
Jingning Han | 36fe320 | 2017-02-20 22:31:49 -0800 | [diff] [blame] | 1691 | const int mi_row, const int mi_col, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1692 | aom_writer *w) { |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1693 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1694 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1695 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1696 | const MODE_INFO *const mi = xd->mi[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1697 | const MODE_INFO *const above_mi = xd->above_mi; |
| 1698 | const MODE_INFO *const left_mi = xd->left_mi; |
| 1699 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1700 | const BLOCK_SIZE bsize = mbmi->sb_type; |
David Barker | 45390c1 | 2017-02-20 14:44:40 +0000 | [diff] [blame] | 1701 | (void)mi_row; |
| 1702 | (void)mi_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1703 | |
| 1704 | if (seg->update_map) write_segment_id(w, seg, segp, mbmi->segment_id); |
| 1705 | |
Alex Converse | 619576b | 2017-05-10 15:14:18 -0700 | [diff] [blame] | 1706 | const int skip = write_skip(cm, xd, mbmi->segment_id, mi, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1707 | if (cm->delta_q_present_flag) { |
Pavel Frolov | 1dbe92d | 2017-11-02 01:49:19 +0300 | [diff] [blame] | 1708 | int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) && |
| 1709 | ((mi_col & (cm->mib_size - 1)) == 0); |
Pavel Frolov | bfa2b8c | 2017-11-01 20:08:44 +0300 | [diff] [blame] | 1710 | if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1711 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1712 | int reduced_delta_qindex = |
| 1713 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1714 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1715 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1716 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1717 | #if CONFIG_LOOPFILTER_LEVEL |
| 1718 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1719 | if (cm->delta_lf_multi) { |
| 1720 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) { |
| 1721 | int reduced_delta_lflevel = |
| 1722 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1723 | cm->delta_lf_res; |
| 1724 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1725 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1726 | } |
| 1727 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1728 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1729 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1730 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1731 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1732 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1733 | } |
| 1734 | } |
| 1735 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1736 | if (cm->delta_lf_present_flag) { |
| 1737 | int reduced_delta_lflevel = |
| 1738 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1739 | cm->delta_lf_res; |
| 1740 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1741 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1742 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1743 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1744 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1745 | } |
| 1746 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1747 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1748 | int enable_tx_size = cm->tx_mode == TX_MODE_SELECT && |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 1749 | block_signals_txsize(bsize) && |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1750 | !xd->lossless[mbmi->segment_id]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1751 | |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1752 | #if CONFIG_INTRABC |
RogerZhou | ca86546 | 2017-10-05 15:06:27 -0700 | [diff] [blame] | 1753 | if (av1_allow_intrabc(bsize, cm)) { |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1754 | write_intrabc_info(cm, xd, mbmi_ext, enable_tx_size, w); |
| 1755 | if (is_intrabc_block(mbmi)) return; |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1756 | } |
| 1757 | #endif // CONFIG_INTRABC |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1758 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1759 | if (enable_tx_size) write_selected_tx_size(cm, xd, w); |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1760 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1761 | if (cm->allow_screen_content_tools) |
| 1762 | 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] | 1763 | #endif // CONFIG_INTRABC |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1764 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1765 | write_intra_mode_kf(cm, ec_ctx, mi, above_mi, left_mi, 0, mbmi->mode, w); |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1766 | |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1767 | if (is_chroma_reference(mi_row, mi_col, bsize, xd->plane[1].subsampling_x, |
Luc Trudeau | 2c31790 | 2017-04-28 11:06:50 -0400 | [diff] [blame] | 1768 | xd->plane[1].subsampling_y)) { |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1769 | write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mbmi->mode, w); |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1770 | |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1771 | #if CONFIG_CFL |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1772 | if (mbmi->uv_mode == UV_CFL_PRED) { |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1773 | 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] | 1774 | } |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1775 | #endif |
Luc Trudeau | 2c31790 | 2017-04-28 11:06:50 -0400 | [diff] [blame] | 1776 | } |
Debargha Mukherjee | 6ea917e | 2017-10-19 09:31:29 -0700 | [diff] [blame] | 1777 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1778 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 1779 | write_intra_angle_info(xd, ec_ctx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1780 | #endif // CONFIG_EXT_INTRA |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1781 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1782 | write_palette_mode_info(cm, xd, mi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1783 | #if CONFIG_FILTER_INTRA |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1784 | write_filter_intra_mode_info(cm, xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1785 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1786 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1787 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1788 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1789 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1790 | } |
| 1791 | |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1792 | #if CONFIG_RD_DEBUG |
| 1793 | static void dump_mode_info(MODE_INFO *mi) { |
| 1794 | printf("\nmi->mbmi.mi_row == %d\n", mi->mbmi.mi_row); |
| 1795 | printf("&& mi->mbmi.mi_col == %d\n", mi->mbmi.mi_col); |
| 1796 | printf("&& mi->mbmi.sb_type == %d\n", mi->mbmi.sb_type); |
| 1797 | printf("&& mi->mbmi.tx_size == %d\n", mi->mbmi.tx_size); |
| 1798 | if (mi->mbmi.sb_type >= BLOCK_8X8) { |
| 1799 | printf("&& mi->mbmi.mode == %d\n", mi->mbmi.mode); |
| 1800 | } else { |
| 1801 | printf("&& mi->bmi[0].as_mode == %d\n", mi->bmi[0].as_mode); |
| 1802 | } |
| 1803 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1804 | static int rd_token_stats_mismatch(RD_STATS *rd_stats, TOKEN_STATS *token_stats, |
| 1805 | int plane) { |
| 1806 | if (rd_stats->txb_coeff_cost[plane] != token_stats->cost) { |
| 1807 | int r, c; |
| 1808 | printf("\nplane %d rd_stats->txb_coeff_cost %d token_stats->cost %d\n", |
| 1809 | plane, rd_stats->txb_coeff_cost[plane], token_stats->cost); |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1810 | printf("rd txb_coeff_cost_map\n"); |
| 1811 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1812 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1813 | printf("%d ", rd_stats->txb_coeff_cost_map[plane][r][c]); |
| 1814 | } |
| 1815 | printf("\n"); |
| 1816 | } |
| 1817 | |
| 1818 | printf("pack txb_coeff_cost_map\n"); |
| 1819 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1820 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1821 | printf("%d ", token_stats->txb_coeff_cost_map[r][c]); |
| 1822 | } |
| 1823 | printf("\n"); |
| 1824 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1825 | return 1; |
| 1826 | } |
| 1827 | return 0; |
| 1828 | } |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1829 | #endif |
| 1830 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1831 | #if ENC_MISMATCH_DEBUG |
| 1832 | static void enc_dump_logs(AV1_COMP *cpi, int mi_row, int mi_col) { |
| 1833 | AV1_COMMON *const cm = &cpi->common; |
| 1834 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1835 | MODE_INFO *m; |
| 1836 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1837 | m = xd->mi[0]; |
| 1838 | if (is_inter_block(&m->mbmi)) { |
| 1839 | #define FRAME_TO_CHECK 1 |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 1840 | if (cm->current_video_frame == FRAME_TO_CHECK && cm->show_frame == 1) { |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1841 | const MB_MODE_INFO *const mbmi = &m->mbmi; |
| 1842 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1843 | |
| 1844 | int_mv mv[2]; |
| 1845 | int is_comp_ref = has_second_ref(&m->mbmi); |
| 1846 | int ref; |
| 1847 | |
| 1848 | for (ref = 0; ref < 1 + is_comp_ref; ++ref) |
| 1849 | mv[ref].as_mv = m->mbmi.mv[ref].as_mv; |
| 1850 | |
| 1851 | if (!is_comp_ref) { |
| 1852 | #if CONFIG_COMPOUND_SINGLEREF |
| 1853 | if (is_inter_singleref_comp_mode(m->mbmi.mode)) |
| 1854 | mv[1].as_mv = m->mbmi.mv[1].as_mv; |
| 1855 | else |
| 1856 | #endif // CONFIG_COMPOUND_SINGLEREF |
| 1857 | mv[1].as_int = 0; |
| 1858 | } |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1859 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1860 | MACROBLOCK *const x = &cpi->td.mb; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1861 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
| 1862 | const int16_t mode_ctx = av1_mode_context_analyzer( |
| 1863 | mbmi_ext->mode_context, mbmi->ref_frame, bsize, -1); |
| 1864 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
| 1865 | int16_t zeromv_ctx = -1; |
| 1866 | int16_t refmv_ctx = -1; |
| 1867 | if (mbmi->mode != NEWMV) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1868 | zeromv_ctx = (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1869 | if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1870 | assert(mbmi->mode == GLOBALMV); |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1871 | } |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1872 | if (mbmi->mode != GLOBALMV) { |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1873 | refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
| 1874 | if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6; |
| 1875 | if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7; |
| 1876 | if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8; |
| 1877 | } |
| 1878 | } |
| 1879 | |
| 1880 | int8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1881 | printf( |
| 1882 | "=== ENCODER ===: " |
| 1883 | "Frame=%d, (mi_row,mi_col)=(%d,%d), mode=%d, bsize=%d, " |
| 1884 | "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, " |
| 1885 | "ref[1]=%d, motion_mode=%d, inter_mode_ctx=%d, mode_ctx=%d, " |
Zoe Liu | 0b3ef73 | 2017-10-06 18:37:24 -0700 | [diff] [blame] | 1886 | "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d\n", |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1887 | cm->current_video_frame, mi_row, mi_col, mbmi->mode, bsize, |
| 1888 | cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, mv[1].as_mv.row, |
| 1889 | mv[1].as_mv.col, mbmi->ref_frame[0], mbmi->ref_frame[1], |
| 1890 | mbmi->motion_mode, mbmi_ext->mode_context[ref_frame_type], mode_ctx, |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1891 | newmv_ctx, zeromv_ctx, refmv_ctx); |
| 1892 | } |
| 1893 | } |
| 1894 | } |
| 1895 | #endif // ENC_MISMATCH_DEBUG |
| 1896 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1897 | static void write_mbmi_b(AV1_COMP *cpi, const TileInfo *const tile, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1898 | aom_writer *w, int mi_row, int mi_col) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1899 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1900 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1901 | MODE_INFO *m; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1902 | int bh, bw; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1903 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1904 | m = xd->mi[0]; |
| 1905 | |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1906 | assert(m->mbmi.sb_type <= cm->sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1907 | (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] | 1908 | |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 1909 | bh = mi_size_high[m->mbmi.sb_type]; |
| 1910 | bw = mi_size_wide[m->mbmi.sb_type]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1911 | |
| 1912 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1913 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1914 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1915 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1916 | cm->dependent_horz_tiles, |
| 1917 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1918 | cm->mi_rows, cm->mi_cols); |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 1919 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1920 | if (frame_is_intra_only(cm)) { |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1921 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1922 | if (cm->allow_screen_content_tools) { |
| 1923 | xd->above_txfm_context = |
| 1924 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1925 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1926 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
| 1927 | } |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1928 | #endif // CONFIG_INTRABC |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1929 | write_mb_modes_kf(cm, xd, |
| 1930 | #if CONFIG_INTRABC |
| 1931 | cpi->td.mb.mbmi_ext, |
| 1932 | #endif // CONFIG_INTRABC |
| 1933 | mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1934 | } else { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 1935 | xd->above_txfm_context = |
| 1936 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1937 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1938 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 1939 | // has_subpel_mv_component needs the ref frame buffers set up to look |
| 1940 | // up if they are scaled. has_subpel_mv_component is in turn needed by |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1941 | // write_switchable_interp_filter, which is called by pack_inter_mode_mvs. |
| 1942 | set_ref_ptrs(cm, xd, m->mbmi.ref_frame[0], m->mbmi.ref_frame[1]); |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 1943 | #if CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1944 | if (!has_second_ref(&m->mbmi) && is_inter_singleref_comp_mode(m->mbmi.mode)) |
| 1945 | xd->block_refs[1] = xd->block_refs[0]; |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 1946 | #endif // CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1947 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1948 | #if ENC_MISMATCH_DEBUG |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1949 | enc_dump_logs(cpi, mi_row, mi_col); |
| 1950 | #endif // ENC_MISMATCH_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1951 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1952 | pack_inter_mode_mvs(cpi, mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1953 | } |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1954 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1955 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1956 | static void write_tokens_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 1957 | aom_writer *w, const TOKENEXTRA **tok, |
| 1958 | const TOKENEXTRA *const tok_end, int mi_row, |
| 1959 | int mi_col) { |
| 1960 | AV1_COMMON *const cm = &cpi->common; |
| 1961 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1962 | const int mi_offset = mi_row * cm->mi_stride + mi_col; |
| 1963 | MODE_INFO *const m = *(cm->mi_grid_visible + mi_offset); |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1964 | MB_MODE_INFO *const mbmi = &m->mbmi; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1965 | int plane; |
| 1966 | int bh, bw; |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 1967 | #if CONFIG_LV_MAP |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 1968 | MACROBLOCK *const x = &cpi->td.mb; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1969 | (void)tok; |
| 1970 | (void)tok_end; |
| 1971 | #endif |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1972 | xd->mi = cm->mi_grid_visible + mi_offset; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1973 | |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1974 | assert(mbmi->sb_type <= cm->sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1975 | (mbmi->sb_type >= BLOCK_SIZES && mbmi->sb_type < BLOCK_SIZES_ALL)); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1976 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1977 | bh = mi_size_high[mbmi->sb_type]; |
| 1978 | bw = mi_size_wide[mbmi->sb_type]; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1979 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1980 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1981 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1982 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1983 | cm->dependent_horz_tiles, |
| 1984 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1985 | cm->mi_rows, cm->mi_cols); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1986 | |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1987 | for (plane = 0; plane <= 1; ++plane) { |
| 1988 | const uint8_t palette_size_plane = |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1989 | mbmi->palette_mode_info.palette_size[plane]; |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1990 | if (palette_size_plane > 0) { |
Alex Converse | ed37d01 | 2017-04-24 11:15:24 -0700 | [diff] [blame] | 1991 | #if CONFIG_INTRABC |
| 1992 | assert(mbmi->use_intrabc == 0); |
| 1993 | #endif |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1994 | int rows, cols; |
hui su | 9bc1d8d | 2017-03-24 12:36:03 -0700 | [diff] [blame] | 1995 | assert(mbmi->sb_type >= BLOCK_8X8); |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1996 | av1_get_block_dimensions(mbmi->sb_type, plane, xd, NULL, NULL, &rows, |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1997 | &cols); |
| 1998 | assert(*tok < tok_end); |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 1999 | pack_map_tokens(w, tok, palette_size_plane, rows * cols); |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 2000 | #if !CONFIG_LV_MAP |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 2001 | assert(*tok < tok_end + mbmi->skip); |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 2002 | #endif // !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2003 | } |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 2004 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2005 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 2006 | if (!mbmi->skip) { |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 2007 | #if !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2008 | assert(*tok < tok_end); |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 2009 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2010 | for (plane = 0; plane < MAX_MB_PLANE; ++plane) { |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 2011 | if (!is_chroma_reference(mi_row, mi_col, mbmi->sb_type, |
| 2012 | xd->plane[plane].subsampling_x, |
| 2013 | xd->plane[plane].subsampling_y)) { |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 2014 | #if !CONFIG_LV_MAP |
Jingning Han | c20dc8e | 2017-02-17 15:37:28 -0800 | [diff] [blame] | 2015 | (*tok)++; |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 2016 | #endif // !CONFIG_LV_MAP |
Jingning Han | c20dc8e | 2017-02-17 15:37:28 -0800 | [diff] [blame] | 2017 | continue; |
| 2018 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2019 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2020 | BLOCK_SIZE bsize = mbmi->sb_type; |
| 2021 | const BLOCK_SIZE plane_bsize = |
Jingning Han | 29a4120 | 2017-04-05 11:53:32 -0700 | [diff] [blame] | 2022 | AOMMAX(BLOCK_4X4, get_plane_block_size(bsize, pd)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2023 | |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 2024 | const int num_4x4_w = |
| 2025 | block_size_wide[plane_bsize] >> tx_size_wide_log2[0]; |
| 2026 | const int num_4x4_h = |
| 2027 | block_size_high[plane_bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2028 | int row, col; |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 2029 | TOKEN_STATS token_stats; |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2030 | init_token_stats(&token_stats); |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 2031 | |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2032 | const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, pd); |
| 2033 | int mu_blocks_wide = |
| 2034 | block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0]; |
| 2035 | int mu_blocks_high = |
| 2036 | block_size_high[max_unit_bsize] >> tx_size_high_log2[0]; |
| 2037 | |
| 2038 | mu_blocks_wide = AOMMIN(num_4x4_w, mu_blocks_wide); |
| 2039 | mu_blocks_high = AOMMIN(num_4x4_h, mu_blocks_high); |
| 2040 | |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 2041 | if (is_inter_block(mbmi)) { |
Rupert Swarbrick | 4e7b7d6 | 2017-09-28 17:30:44 +0100 | [diff] [blame] | 2042 | const TX_SIZE max_tx_size = get_vartx_max_txsize( |
| 2043 | mbmi, plane_bsize, pd->subsampling_x || pd->subsampling_y); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2044 | int block = 0; |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 2045 | const int step = |
| 2046 | tx_size_wide_unit[max_tx_size] * tx_size_high_unit[max_tx_size]; |
| 2047 | const int bkw = tx_size_wide_unit[max_tx_size]; |
| 2048 | const int bkh = tx_size_high_unit[max_tx_size]; |
Rupert Swarbrick | 4e7b7d6 | 2017-09-28 17:30:44 +0100 | [diff] [blame] | 2049 | assert(bkw <= mu_blocks_wide); |
| 2050 | assert(bkh <= mu_blocks_high); |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2051 | for (row = 0; row < num_4x4_h; row += mu_blocks_high) { |
Luc Trudeau | da9397a | 2017-07-21 12:00:22 -0400 | [diff] [blame] | 2052 | const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h); |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2053 | for (col = 0; col < num_4x4_w; col += mu_blocks_wide) { |
| 2054 | int blk_row, blk_col; |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2055 | const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w); |
| 2056 | for (blk_row = row; blk_row < unit_height; blk_row += bkh) { |
| 2057 | for (blk_col = col; blk_col < unit_width; blk_col += bkw) { |
| 2058 | pack_txb_tokens(w, |
Jingning Han | 5ab7ed4 | 2017-05-18 16:15:52 -0700 | [diff] [blame] | 2059 | #if CONFIG_LV_MAP |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 2060 | cm, x, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 2061 | #endif |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 2062 | tok, tok_end, xd, mbmi, plane, plane_bsize, |
| 2063 | cm->bit_depth, block, blk_row, blk_col, |
| 2064 | max_tx_size, &token_stats); |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2065 | block += step; |
| 2066 | } |
| 2067 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2068 | } |
| 2069 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2070 | #if CONFIG_RD_DEBUG |
Angie Chiang | 3963d63 | 2016-11-10 18:41:40 -0800 | [diff] [blame] | 2071 | if (mbmi->sb_type >= BLOCK_8X8 && |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 2072 | rd_token_stats_mismatch(&mbmi->rd_stats, &token_stats, plane)) { |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2073 | dump_mode_info(m); |
| 2074 | assert(0); |
| 2075 | } |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 2076 | #endif // CONFIG_RD_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2077 | } else { |
Jingning Han | 5ab7ed4 | 2017-05-18 16:15:52 -0700 | [diff] [blame] | 2078 | #if CONFIG_LV_MAP |
| 2079 | av1_write_coeffs_mb(cm, x, w, plane); |
| 2080 | #else |
hui su | 0c6244b | 2017-07-12 17:11:43 -0700 | [diff] [blame] | 2081 | const TX_SIZE tx = av1_get_tx_size(plane, xd); |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 2082 | const int bkw = tx_size_wide_unit[tx]; |
| 2083 | const int bkh = tx_size_high_unit[tx]; |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2084 | int blk_row, blk_col; |
| 2085 | |
| 2086 | for (row = 0; row < num_4x4_h; row += mu_blocks_high) { |
| 2087 | for (col = 0; col < num_4x4_w; col += mu_blocks_wide) { |
| 2088 | const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h); |
| 2089 | const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w); |
| 2090 | |
| 2091 | for (blk_row = row; blk_row < unit_height; blk_row += bkh) { |
| 2092 | for (blk_col = col; blk_col < unit_width; blk_col += bkw) { |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 2093 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 2094 | TX_TYPE tx_type = |
| 2095 | av1_get_tx_type(plane ? PLANE_TYPE_UV : PLANE_TYPE_Y, xd, |
| 2096 | blk_row, blk_col, 0, tx); |
| 2097 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2098 | pack_mb_tokens(w, tok, tok_end, cm->bit_depth, tx, |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 2099 | #if CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
| 2100 | tx_type, is_inter_block(mbmi), |
| 2101 | #endif // CONFIG_MRC_TX && SIGNAL_ANY_MRC_MASK |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2102 | &token_stats); |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2103 | } |
| 2104 | } |
Fangwen Fu | 33bcd11 | 2017-02-07 16:42:41 -0800 | [diff] [blame] | 2105 | } |
| 2106 | } |
Jingning Han | 5ab7ed4 | 2017-05-18 16:15:52 -0700 | [diff] [blame] | 2107 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2108 | } |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 2109 | |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 2110 | #if !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2111 | assert(*tok < tok_end && (*tok)->token == EOSB_TOKEN); |
| 2112 | (*tok)++; |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 2113 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2114 | } |
| 2115 | } |
| 2116 | } |
| 2117 | |
Sebastien Alaiwan | 1bc94fc | 2017-10-31 10:25:17 +0100 | [diff] [blame] | 2118 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2119 | static void write_tokens_sb(AV1_COMP *cpi, const TileInfo *const tile, |
| 2120 | aom_writer *w, const TOKENEXTRA **tok, |
| 2121 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2122 | int mi_col, BLOCK_SIZE bsize) { |
| 2123 | const AV1_COMMON *const cm = &cpi->common; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2124 | const int hbs = mi_size_wide[bsize] / 2; |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2125 | PARTITION_TYPE partition; |
| 2126 | BLOCK_SIZE subsize; |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2127 | |
| 2128 | if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return; |
| 2129 | |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2130 | partition = get_partition(cm, mi_row, mi_col, bsize); |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2131 | subsize = get_subsize(bsize, partition); |
| 2132 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2133 | switch (partition) { |
| 2134 | case PARTITION_NONE: |
| 2135 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2136 | break; |
| 2137 | case PARTITION_HORZ: |
| 2138 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2139 | if (mi_row + hbs < cm->mi_rows) |
| 2140 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2141 | break; |
| 2142 | case PARTITION_VERT: |
| 2143 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2144 | if (mi_col + hbs < cm->mi_cols) |
| 2145 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2146 | break; |
| 2147 | case PARTITION_SPLIT: |
| 2148 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); |
| 2149 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, |
| 2150 | subsize); |
| 2151 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, |
| 2152 | subsize); |
| 2153 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs, |
| 2154 | subsize); |
| 2155 | break; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2156 | #if CONFIG_EXT_PARTITION_TYPES |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2157 | #if CONFIG_EXT_PARTITION_TYPES_AB |
| 2158 | #error NC_MODE_INFO+MOTION_VAR not yet supported for new HORZ/VERT_AB partitions |
| 2159 | #endif |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2160 | case PARTITION_HORZ_A: |
| 2161 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2162 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2163 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2164 | break; |
| 2165 | case PARTITION_HORZ_B: |
| 2166 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2167 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2168 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2169 | break; |
| 2170 | case PARTITION_VERT_A: |
| 2171 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2172 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2173 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2174 | break; |
| 2175 | case PARTITION_VERT_B: |
| 2176 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2177 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2178 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2179 | break; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2180 | #endif // CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2181 | default: assert(0); |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2182 | } |
| 2183 | } |
| 2184 | #endif |
| 2185 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 2186 | static void write_modes_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 2187 | aom_writer *w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2188 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2189 | int mi_col) { |
| 2190 | write_mbmi_b(cpi, tile, w, mi_row, mi_col); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 2191 | |
Sebastien Alaiwan | 1bc94fc | 2017-10-31 10:25:17 +0100 | [diff] [blame] | 2192 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2193 | (void)tok; |
| 2194 | (void)tok_end; |
| 2195 | #else |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2196 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2197 | #endif |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 2198 | } |
| 2199 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2200 | static void write_partition(const AV1_COMMON *const cm, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2201 | const MACROBLOCKD *const xd, int hbs, int mi_row, |
| 2202 | int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2203 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2204 | const int has_rows = (mi_row + hbs) < cm->mi_rows; |
| 2205 | const int has_cols = (mi_col + hbs) < cm->mi_cols; |
Alex Converse | 55c6bde | 2017-01-12 15:55:31 -0800 | [diff] [blame] | 2206 | const int is_partition_point = bsize >= BLOCK_8X8; |
| 2207 | const int ctx = is_partition_point |
| 2208 | ? partition_plane_context(xd, mi_row, mi_col, |
| 2209 | #if CONFIG_UNPOISON_PARTITION_CTX |
| 2210 | has_rows, has_cols, |
| 2211 | #endif |
| 2212 | bsize) |
| 2213 | : 0; |
Thomas Davies | c2ec0e4 | 2017-01-11 16:27:27 +0000 | [diff] [blame] | 2214 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 2215 | (void)cm; |
Thomas Davies | c2ec0e4 | 2017-01-11 16:27:27 +0000 | [diff] [blame] | 2216 | |
Jingning Han | bf9c6b7 | 2016-12-14 14:50:45 -0800 | [diff] [blame] | 2217 | if (!is_partition_point) return; |
| 2218 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2219 | if (has_rows && has_cols) { |
| 2220 | #if CONFIG_EXT_PARTITION_TYPES |
Rupert Swarbrick | 2fa6e1c | 2017-09-11 12:38:10 +0100 | [diff] [blame] | 2221 | const int num_partition_types = |
| 2222 | (mi_width_log2_lookup[bsize] > mi_width_log2_lookup[BLOCK_8X8]) |
| 2223 | ? EXT_PARTITION_TYPES |
| 2224 | : PARTITION_TYPES; |
Alex Converse | 57795a4 | 2017-03-14 12:18:25 -0700 | [diff] [blame] | 2225 | #else |
Rupert Swarbrick | 2fa6e1c | 2017-09-11 12:38:10 +0100 | [diff] [blame] | 2226 | const int num_partition_types = PARTITION_TYPES; |
| 2227 | #endif |
| 2228 | aom_write_symbol(w, p, ec_ctx->partition_cdf[ctx], num_partition_types); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2229 | } else if (!has_rows && has_cols) { |
| 2230 | assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2231 | assert(bsize > BLOCK_8X8); |
| 2232 | aom_cdf_prob cdf[2]; |
| 2233 | partition_gather_vert_alike(cdf, ec_ctx->partition_cdf[ctx]); |
| 2234 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2235 | } else if (has_rows && !has_cols) { |
| 2236 | assert(p == PARTITION_SPLIT || p == PARTITION_VERT); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2237 | assert(bsize > BLOCK_8X8); |
| 2238 | aom_cdf_prob cdf[2]; |
| 2239 | partition_gather_horz_alike(cdf, ec_ctx->partition_cdf[ctx]); |
| 2240 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2241 | } else { |
| 2242 | assert(p == PARTITION_SPLIT); |
| 2243 | } |
| 2244 | } |
| 2245 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2246 | static void write_modes_sb(AV1_COMP *const cpi, const TileInfo *const tile, |
| 2247 | aom_writer *const w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2248 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2249 | int mi_col, BLOCK_SIZE bsize) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2250 | const AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2251 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 2252 | const int hbs = mi_size_wide[bsize] / 2; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2253 | #if CONFIG_EXT_PARTITION_TYPES |
| 2254 | const int quarter_step = mi_size_wide[bsize] / 4; |
| 2255 | int i; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2256 | #if CONFIG_EXT_PARTITION_TYPES_AB |
| 2257 | const int qbs = mi_size_wide[bsize] / 4; |
| 2258 | #endif // CONFIG_EXT_PARTITION_TYPES_AB |
| 2259 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2260 | const PARTITION_TYPE partition = get_partition(cm, mi_row, mi_col, bsize); |
| 2261 | const BLOCK_SIZE subsize = get_subsize(bsize, partition); |
Jingning Han | 5226184 | 2016-12-14 12:17:49 -0800 | [diff] [blame] | 2262 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2263 | if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return; |
| 2264 | |
| 2265 | write_partition(cm, xd, hbs, mi_row, mi_col, partition, bsize, w); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2266 | switch (partition) { |
| 2267 | case PARTITION_NONE: |
| 2268 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2269 | break; |
| 2270 | case PARTITION_HORZ: |
| 2271 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2272 | if (mi_row + hbs < cm->mi_rows) |
| 2273 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2274 | break; |
| 2275 | case PARTITION_VERT: |
| 2276 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2277 | if (mi_col + hbs < cm->mi_cols) |
| 2278 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2279 | break; |
| 2280 | case PARTITION_SPLIT: |
| 2281 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); |
| 2282 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, subsize); |
| 2283 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, subsize); |
| 2284 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs, |
| 2285 | subsize); |
| 2286 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2287 | #if CONFIG_EXT_PARTITION_TYPES |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2288 | #if CONFIG_EXT_PARTITION_TYPES_AB |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2289 | case PARTITION_HORZ_A: |
| 2290 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2291 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + qbs, mi_col); |
| 2292 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2293 | break; |
| 2294 | case PARTITION_HORZ_B: |
| 2295 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2296 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2297 | if (mi_row + 3 * qbs < cm->mi_rows) |
| 2298 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + 3 * qbs, mi_col); |
| 2299 | break; |
| 2300 | case PARTITION_VERT_A: |
| 2301 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2302 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + qbs); |
| 2303 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2304 | break; |
| 2305 | case PARTITION_VERT_B: |
| 2306 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2307 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2308 | if (mi_col + 3 * qbs < cm->mi_cols) |
| 2309 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + 3 * qbs); |
| 2310 | break; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2311 | #else |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2312 | case PARTITION_HORZ_A: |
| 2313 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2314 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2315 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2316 | break; |
| 2317 | case PARTITION_HORZ_B: |
| 2318 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2319 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2320 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2321 | break; |
| 2322 | case PARTITION_VERT_A: |
| 2323 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2324 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2325 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2326 | break; |
| 2327 | case PARTITION_VERT_B: |
| 2328 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2329 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2330 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2331 | break; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2332 | #endif |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2333 | case PARTITION_HORZ_4: |
| 2334 | for (i = 0; i < 4; ++i) { |
| 2335 | int this_mi_row = mi_row + i * quarter_step; |
| 2336 | if (i > 0 && this_mi_row >= cm->mi_rows) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2337 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2338 | write_modes_b(cpi, tile, w, tok, tok_end, this_mi_row, mi_col); |
| 2339 | } |
| 2340 | break; |
| 2341 | case PARTITION_VERT_4: |
| 2342 | for (i = 0; i < 4; ++i) { |
| 2343 | int this_mi_col = mi_col + i * quarter_step; |
| 2344 | if (i > 0 && this_mi_col >= cm->mi_cols) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2345 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2346 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, this_mi_col); |
| 2347 | } |
| 2348 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2349 | #endif // CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2350 | default: assert(0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2351 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2352 | |
| 2353 | // update partition context |
| 2354 | #if CONFIG_EXT_PARTITION_TYPES |
| 2355 | update_ext_partition_context(xd, mi_row, mi_col, subsize, bsize, partition); |
| 2356 | #else |
| 2357 | if (bsize >= BLOCK_8X8 && |
| 2358 | (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) |
| 2359 | update_partition_context(xd, mi_row, mi_col, subsize, bsize); |
David Barker | f8935c9 | 2016-10-26 14:54:06 +0100 | [diff] [blame] | 2360 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2361 | |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2362 | #if CONFIG_LPF_SB |
| 2363 | // send filter level for each superblock (64x64) |
| 2364 | if (bsize == cm->sb_size) { |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2365 | if (mi_row == 0 && mi_col == 0) { |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2366 | aom_write_literal(w, cm->mi_grid_visible[0]->mbmi.filt_lvl, 6); |
| 2367 | cm->mi_grid_visible[0]->mbmi.reuse_sb_lvl = 0; |
| 2368 | cm->mi_grid_visible[0]->mbmi.delta = 0; |
| 2369 | cm->mi_grid_visible[0]->mbmi.sign = 0; |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2370 | } else { |
| 2371 | int prev_mi_row, prev_mi_col; |
| 2372 | if (mi_col - MAX_MIB_SIZE < 0) { |
| 2373 | prev_mi_row = mi_row - MAX_MIB_SIZE; |
| 2374 | prev_mi_col = mi_col; |
| 2375 | } else { |
| 2376 | prev_mi_row = mi_row; |
| 2377 | prev_mi_col = mi_col - MAX_MIB_SIZE; |
| 2378 | } |
| 2379 | MB_MODE_INFO *curr_mbmi = |
| 2380 | &cm->mi_grid_visible[mi_row * cm->mi_stride + mi_col]->mbmi; |
| 2381 | MB_MODE_INFO *prev_mbmi = |
| 2382 | &cm->mi_grid_visible[prev_mi_row * cm->mi_stride + prev_mi_col]->mbmi; |
| 2383 | |
| 2384 | const uint8_t curr_lvl = curr_mbmi->filt_lvl; |
| 2385 | const uint8_t prev_lvl = prev_mbmi->filt_lvl; |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2386 | |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2387 | const int reuse_prev_lvl = curr_lvl == prev_lvl; |
| 2388 | const int reuse_ctx = prev_mbmi->reuse_sb_lvl; |
| 2389 | curr_mbmi->reuse_sb_lvl = reuse_prev_lvl; |
| 2390 | aom_write_symbol(w, reuse_prev_lvl, |
| 2391 | xd->tile_ctx->lpf_reuse_cdf[reuse_ctx], 2); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2392 | cpi->td.counts->lpf_reuse[reuse_ctx][reuse_prev_lvl]++; |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 2393 | |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2394 | if (reuse_prev_lvl) { |
| 2395 | curr_mbmi->delta = 0; |
| 2396 | curr_mbmi->sign = 0; |
| 2397 | } else { |
| 2398 | const unsigned int delta = abs(curr_lvl - prev_lvl) / LPF_STEP; |
| 2399 | const int delta_ctx = prev_mbmi->delta; |
| 2400 | curr_mbmi->delta = delta; |
| 2401 | aom_write_symbol(w, delta, xd->tile_ctx->lpf_delta_cdf[delta_ctx], |
| 2402 | DELTA_RANGE); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2403 | cpi->td.counts->lpf_delta[delta_ctx][delta]++; |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2404 | |
| 2405 | if (delta) { |
| 2406 | const int sign = curr_lvl > prev_lvl; |
| 2407 | const int sign_ctx = prev_mbmi->sign; |
| 2408 | curr_mbmi->sign = sign; |
| 2409 | aom_write_symbol(w, sign, |
| 2410 | xd->tile_ctx->lpf_sign_cdf[reuse_ctx][sign_ctx], 2); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2411 | cpi->td.counts->lpf_sign[reuse_ctx][sign_ctx][sign]++; |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2412 | } else { |
| 2413 | curr_mbmi->sign = 0; |
| 2414 | } |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 2415 | } |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2416 | } |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2417 | } |
| 2418 | #endif |
| 2419 | |
Jean-Marc Valin | 0143513 | 2017-02-18 14:12:53 -0500 | [diff] [blame] | 2420 | #if CONFIG_CDEF |
Cheng Chen | f5bdeac | 2017-07-24 14:31:30 -0700 | [diff] [blame] | 2421 | if (bsize == cm->sb_size && cm->cdef_bits != 0 && !cm->all_lossless) { |
| 2422 | int width_step = mi_size_wide[BLOCK_64X64]; |
| 2423 | int height_step = mi_size_high[BLOCK_64X64]; |
| 2424 | int width, height; |
| 2425 | for (height = 0; (height < mi_size_high[cm->sb_size]) && |
| 2426 | (mi_row + height < cm->mi_rows); |
| 2427 | height += height_step) { |
| 2428 | for (width = 0; (width < mi_size_wide[cm->sb_size]) && |
| 2429 | (mi_col + width < cm->mi_cols); |
| 2430 | width += width_step) { |
| 2431 | if (!sb_all_skip(cm, mi_row + height, mi_col + width)) |
| 2432 | aom_write_literal( |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 2433 | w, |
| 2434 | cm->mi_grid_visible[(mi_row + height) * cm->mi_stride + |
| 2435 | (mi_col + width)] |
| 2436 | ->mbmi.cdef_strength, |
Cheng Chen | f5bdeac | 2017-07-24 14:31:30 -0700 | [diff] [blame] | 2437 | cm->cdef_bits); |
| 2438 | } |
| 2439 | } |
Steinar Midtskogen | 5d56f4d | 2016-09-25 09:23:16 +0200 | [diff] [blame] | 2440 | } |
| 2441 | #endif |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2442 | #if CONFIG_LOOP_RESTORATION |
| 2443 | for (int plane = 0; plane < MAX_MB_PLANE; ++plane) { |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2444 | int rcol0, rcol1, rrow0, rrow1, tile_tl_idx; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2445 | if (av1_loop_restoration_corners_in_sb(cm, plane, mi_row, mi_col, bsize, |
| 2446 | &rcol0, &rcol1, &rrow0, &rrow1, |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2447 | &tile_tl_idx)) { |
| 2448 | const int rstride = cm->rst_info[plane].horz_units_per_tile; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2449 | for (int rrow = rrow0; rrow < rrow1; ++rrow) { |
| 2450 | for (int rcol = rcol0; rcol < rcol1; ++rcol) { |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2451 | const int rtile_idx = tile_tl_idx + rcol + rrow * rstride; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2452 | const RestorationUnitInfo *rui = |
| 2453 | &cm->rst_info[plane].unit_info[rtile_idx]; |
| 2454 | loop_restoration_write_sb_coeffs(cm, xd, rui, w, plane); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2455 | } |
| 2456 | } |
| 2457 | } |
| 2458 | } |
| 2459 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2460 | } |
| 2461 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2462 | static void write_modes(AV1_COMP *const cpi, const TileInfo *const tile, |
| 2463 | aom_writer *const w, const TOKENEXTRA **tok, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2464 | const TOKENEXTRA *const tok_end) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2465 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2466 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 2467 | const int mi_row_start = tile->mi_row_start; |
| 2468 | const int mi_row_end = tile->mi_row_end; |
| 2469 | const int mi_col_start = tile->mi_col_start; |
| 2470 | const int mi_col_end = tile->mi_col_end; |
| 2471 | int mi_row, mi_col; |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2472 | |
| 2473 | #if CONFIG_DEPENDENT_HORZTILES |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 2474 | if (!cm->dependent_horz_tiles || mi_row_start == 0 || |
| 2475 | tile->tg_horz_boundary) { |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2476 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
| 2477 | } |
| 2478 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2479 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2480 | #endif |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2481 | if (cpi->common.delta_q_present_flag) { |
| 2482 | xd->prev_qindex = cpi->common.base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2483 | #if CONFIG_EXT_DELTA_Q |
| 2484 | if (cpi->common.delta_lf_present_flag) { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 2485 | #if CONFIG_LOOPFILTER_LEVEL |
| 2486 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 2487 | xd->prev_delta_lf[lf_id] = 0; |
| 2488 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2489 | xd->prev_delta_lf_from_base = 0; |
| 2490 | } |
| 2491 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2492 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2493 | |
| 2494 | for (mi_row = mi_row_start; mi_row < mi_row_end; mi_row += cm->mib_size) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2495 | av1_zero_left_context(xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2496 | |
| 2497 | for (mi_col = mi_col_start; mi_col < mi_col_end; mi_col += cm->mib_size) { |
Sebastien Alaiwan | 6534ba8 | 2017-10-13 20:35:14 +0200 | [diff] [blame] | 2498 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, cm->sb_size); |
Sebastien Alaiwan | 1bc94fc | 2017-10-31 10:25:17 +0100 | [diff] [blame] | 2499 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2500 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, cm->sb_size); |
| 2501 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2502 | } |
| 2503 | } |
| 2504 | } |
| 2505 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2506 | #if CONFIG_LOOP_RESTORATION |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2507 | static void encode_restoration_mode(AV1_COMMON *cm, |
| 2508 | struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2509 | int p; |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2510 | RestorationInfo *rsi; |
| 2511 | for (p = 0; p < MAX_MB_PLANE; ++p) { |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2512 | rsi = &cm->rst_info[p]; |
| 2513 | switch (rsi->frame_restoration_type) { |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2514 | case RESTORE_NONE: |
| 2515 | aom_wb_write_bit(wb, 0); |
| 2516 | aom_wb_write_bit(wb, 0); |
| 2517 | break; |
Debargha Mukherjee | d23ceea | 2017-05-18 20:33:52 -0700 | [diff] [blame] | 2518 | case RESTORE_WIENER: |
| 2519 | aom_wb_write_bit(wb, 1); |
| 2520 | aom_wb_write_bit(wb, 0); |
| 2521 | break; |
| 2522 | case RESTORE_SGRPROJ: |
| 2523 | aom_wb_write_bit(wb, 1); |
| 2524 | aom_wb_write_bit(wb, 1); |
| 2525 | break; |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2526 | case RESTORE_SWITCHABLE: |
| 2527 | aom_wb_write_bit(wb, 0); |
| 2528 | aom_wb_write_bit(wb, 1); |
| 2529 | break; |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2530 | default: assert(0); |
| 2531 | } |
| 2532 | } |
Debargha Mukherjee | 1008c1e | 2017-03-06 19:18:43 -0800 | [diff] [blame] | 2533 | if (cm->rst_info[0].frame_restoration_type != RESTORE_NONE || |
| 2534 | cm->rst_info[1].frame_restoration_type != RESTORE_NONE || |
| 2535 | cm->rst_info[2].frame_restoration_type != RESTORE_NONE) { |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2536 | aom_wb_write_bit( |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2537 | wb, rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 2)); |
| 2538 | if (rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 2)) { |
Debargha Mukherjee | 1008c1e | 2017-03-06 19:18:43 -0800 | [diff] [blame] | 2539 | aom_wb_write_bit( |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2540 | wb, rsi->restoration_unit_size != (RESTORATION_TILESIZE_MAX >> 1)); |
Debargha Mukherjee | 1008c1e | 2017-03-06 19:18:43 -0800 | [diff] [blame] | 2541 | } |
| 2542 | } |
Debargha Mukherjee | 84f567c | 2017-06-21 10:53:59 -0700 | [diff] [blame] | 2543 | int s = AOMMIN(cm->subsampling_x, cm->subsampling_y); |
| 2544 | if (s && (cm->rst_info[1].frame_restoration_type != RESTORE_NONE || |
| 2545 | cm->rst_info[2].frame_restoration_type != RESTORE_NONE)) { |
clang-format | 4eafefe | 2017-09-04 12:51:20 -0700 | [diff] [blame] | 2546 | aom_wb_write_bit(wb, |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2547 | cm->rst_info[1].restoration_unit_size != |
| 2548 | cm->rst_info[0].restoration_unit_size); |
| 2549 | assert(cm->rst_info[1].restoration_unit_size == |
| 2550 | cm->rst_info[0].restoration_unit_size || |
| 2551 | cm->rst_info[1].restoration_unit_size == |
| 2552 | (cm->rst_info[0].restoration_unit_size >> s)); |
| 2553 | assert(cm->rst_info[2].restoration_unit_size == |
| 2554 | cm->rst_info[1].restoration_unit_size); |
Debargha Mukherjee | 84f567c | 2017-06-21 10:53:59 -0700 | [diff] [blame] | 2555 | } else if (!s) { |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2556 | assert(cm->rst_info[1].restoration_unit_size == |
| 2557 | cm->rst_info[0].restoration_unit_size); |
| 2558 | assert(cm->rst_info[2].restoration_unit_size == |
| 2559 | cm->rst_info[1].restoration_unit_size); |
Debargha Mukherjee | 84f567c | 2017-06-21 10:53:59 -0700 | [diff] [blame] | 2560 | } |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2561 | } |
| 2562 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2563 | static void write_wiener_filter(int wiener_win, const WienerInfo *wiener_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2564 | WienerInfo *ref_wiener_info, aom_writer *wb) { |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2565 | if (wiener_win == WIENER_WIN) |
| 2566 | aom_write_primitive_refsubexpfin( |
| 2567 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2568 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2569 | ref_wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2570 | wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2571 | else |
| 2572 | assert(wiener_info->vfilter[0] == 0 && |
| 2573 | wiener_info->vfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2574 | aom_write_primitive_refsubexpfin( |
| 2575 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2576 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2577 | ref_wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2578 | wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2579 | aom_write_primitive_refsubexpfin( |
| 2580 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2581 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2582 | ref_wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2583 | wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV); |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2584 | if (wiener_win == WIENER_WIN) |
| 2585 | aom_write_primitive_refsubexpfin( |
| 2586 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2587 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2588 | ref_wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2589 | wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2590 | else |
| 2591 | assert(wiener_info->hfilter[0] == 0 && |
| 2592 | wiener_info->hfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2593 | aom_write_primitive_refsubexpfin( |
| 2594 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2595 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2596 | ref_wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2597 | wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2598 | aom_write_primitive_refsubexpfin( |
| 2599 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2600 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2601 | ref_wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2602 | wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV); |
| 2603 | memcpy(ref_wiener_info, wiener_info, sizeof(*wiener_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2604 | } |
| 2605 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2606 | static void write_sgrproj_filter(const SgrprojInfo *sgrproj_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2607 | SgrprojInfo *ref_sgrproj_info, |
| 2608 | aom_writer *wb) { |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2609 | aom_write_literal(wb, sgrproj_info->ep, SGRPROJ_PARAMS_BITS); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2610 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX0 - SGRPROJ_PRJ_MIN0 + 1, |
| 2611 | SGRPROJ_PRJ_SUBEXP_K, |
| 2612 | ref_sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0, |
| 2613 | sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0); |
| 2614 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX1 - SGRPROJ_PRJ_MIN1 + 1, |
| 2615 | SGRPROJ_PRJ_SUBEXP_K, |
| 2616 | ref_sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1, |
| 2617 | sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1); |
| 2618 | memcpy(ref_sgrproj_info, sgrproj_info, sizeof(*sgrproj_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2619 | } |
| 2620 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2621 | static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm, |
| 2622 | MACROBLOCKD *xd, |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2623 | const RestorationUnitInfo *rui, |
| 2624 | aom_writer *const w, int plane) { |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2625 | const RestorationInfo *rsi = cm->rst_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2626 | RestorationType frame_rtype = rsi->frame_restoration_type; |
| 2627 | if (frame_rtype == RESTORE_NONE) return; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2628 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2629 | const int wiener_win = (plane > 0) ? WIENER_WIN_CHROMA : WIENER_WIN; |
| 2630 | WienerInfo *wiener_info = xd->wiener_info + plane; |
| 2631 | SgrprojInfo *sgrproj_info = xd->sgrproj_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2632 | RestorationType unit_rtype = rui->restoration_type; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2633 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2634 | if (frame_rtype == RESTORE_SWITCHABLE) { |
| 2635 | aom_write_symbol(w, unit_rtype, xd->tile_ctx->switchable_restore_cdf, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2636 | RESTORE_SWITCHABLE_TYPES); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2637 | switch (unit_rtype) { |
| 2638 | case RESTORE_WIENER: |
| 2639 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
| 2640 | break; |
| 2641 | case RESTORE_SGRPROJ: |
| 2642 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
| 2643 | break; |
| 2644 | default: assert(unit_rtype == RESTORE_NONE); break; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2645 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2646 | } else if (frame_rtype == RESTORE_WIENER) { |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2647 | #if CONFIG_NEW_MULTISYMBOL |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2648 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2649 | xd->tile_ctx->wiener_restore_cdf, 2); |
| 2650 | #else |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2651 | aom_write(w, unit_rtype != RESTORE_NONE, RESTORE_NONE_WIENER_PROB); |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2652 | #endif // CONFIG_NEW_MULTISYMBOL |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2653 | if (unit_rtype != RESTORE_NONE) { |
| 2654 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2655 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2656 | } else if (frame_rtype == RESTORE_SGRPROJ) { |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2657 | #if CONFIG_NEW_MULTISYMBOL |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2658 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2659 | xd->tile_ctx->sgrproj_restore_cdf, 2); |
| 2660 | #else |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2661 | aom_write(w, unit_rtype != RESTORE_NONE, RESTORE_NONE_SGRPROJ_PROB); |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2662 | #endif // CONFIG_NEW_MULTISYMBOL |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2663 | if (unit_rtype != RESTORE_NONE) { |
| 2664 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2665 | } |
| 2666 | } |
| 2667 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2668 | #endif // CONFIG_LOOP_RESTORATION |
| 2669 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2670 | static void encode_loopfilter(AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2671 | int i; |
| 2672 | struct loopfilter *lf = &cm->lf; |
| 2673 | |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2674 | // Encode the loop filter level and type |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2675 | #if !CONFIG_LPF_SB |
Cheng Chen | 13fc819 | 2017-08-19 11:49:28 -0700 | [diff] [blame] | 2676 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2677 | aom_wb_write_literal(wb, lf->filter_level[0], 6); |
| 2678 | aom_wb_write_literal(wb, lf->filter_level[1], 6); |
| 2679 | if (lf->filter_level[0] || lf->filter_level[1]) { |
Cheng Chen | e94df5c | 2017-07-19 17:25:33 -0700 | [diff] [blame] | 2680 | aom_wb_write_literal(wb, lf->filter_level_u, 6); |
| 2681 | aom_wb_write_literal(wb, lf->filter_level_v, 6); |
| 2682 | } |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2683 | #else |
| 2684 | aom_wb_write_literal(wb, lf->filter_level, 6); |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2685 | #endif // CONFIG_LOOPFILTER_LEVEL |
| 2686 | #endif // CONFIG_LPF_SB |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2687 | aom_wb_write_literal(wb, lf->sharpness_level, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2688 | |
| 2689 | // Write out loop filter deltas applied at the MB level based on mode or |
| 2690 | // ref frame (if they are enabled). |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2691 | aom_wb_write_bit(wb, lf->mode_ref_delta_enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2692 | |
| 2693 | if (lf->mode_ref_delta_enabled) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2694 | aom_wb_write_bit(wb, lf->mode_ref_delta_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2695 | if (lf->mode_ref_delta_update) { |
| 2696 | for (i = 0; i < TOTAL_REFS_PER_FRAME; i++) { |
| 2697 | const int delta = lf->ref_deltas[i]; |
| 2698 | const int changed = delta != lf->last_ref_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2699 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2700 | if (changed) { |
| 2701 | lf->last_ref_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2702 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2703 | } |
| 2704 | } |
| 2705 | |
| 2706 | for (i = 0; i < MAX_MODE_LF_DELTAS; i++) { |
| 2707 | const int delta = lf->mode_deltas[i]; |
| 2708 | const int changed = delta != lf->last_mode_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2709 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2710 | if (changed) { |
| 2711 | lf->last_mode_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2712 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2713 | } |
| 2714 | } |
| 2715 | } |
| 2716 | } |
| 2717 | } |
| 2718 | |
Jean-Marc Valin | 0143513 | 2017-02-18 14:12:53 -0500 | [diff] [blame] | 2719 | #if CONFIG_CDEF |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 2720 | static void encode_cdef(const AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2721 | int i; |
Steinar Midtskogen | 5978212 | 2017-07-20 08:49:43 +0200 | [diff] [blame] | 2722 | #if CONFIG_CDEF_SINGLEPASS |
| 2723 | aom_wb_write_literal(wb, cm->cdef_pri_damping - 3, 2); |
| 2724 | assert(cm->cdef_pri_damping == cm->cdef_sec_damping); |
| 2725 | #else |
Steinar Midtskogen | 94de0aa | 2017-08-02 10:30:12 +0200 | [diff] [blame] | 2726 | aom_wb_write_literal(wb, cm->cdef_pri_damping - 5, 1); |
| 2727 | aom_wb_write_literal(wb, cm->cdef_sec_damping - 3, 2); |
Steinar Midtskogen | 5978212 | 2017-07-20 08:49:43 +0200 | [diff] [blame] | 2728 | #endif |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2729 | aom_wb_write_literal(wb, cm->cdef_bits, 2); |
| 2730 | for (i = 0; i < cm->nb_cdef_strengths; i++) { |
| 2731 | aom_wb_write_literal(wb, cm->cdef_strengths[i], CDEF_STRENGTH_BITS); |
Steinar Midtskogen | 1c1161f | 2017-09-08 15:03:51 +0200 | [diff] [blame] | 2732 | if (cm->subsampling_x == cm->subsampling_y) |
| 2733 | 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] | 2734 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2735 | } |
| 2736 | #endif |
| 2737 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2738 | 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] | 2739 | if (delta_q != 0) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2740 | aom_wb_write_bit(wb, 1); |
| 2741 | aom_wb_write_inv_signed_literal(wb, delta_q, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2742 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2743 | aom_wb_write_bit(wb, 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2744 | } |
| 2745 | } |
| 2746 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2747 | static void encode_quantization(const AV1_COMMON *const cm, |
| 2748 | struct aom_write_bit_buffer *wb) { |
| 2749 | aom_wb_write_literal(wb, cm->base_qindex, QINDEX_BITS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2750 | write_delta_q(wb, cm->y_dc_delta_q); |
| 2751 | write_delta_q(wb, cm->uv_dc_delta_q); |
| 2752 | write_delta_q(wb, cm->uv_ac_delta_q); |
| 2753 | #if CONFIG_AOM_QM |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2754 | aom_wb_write_bit(wb, cm->using_qmatrix); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2755 | if (cm->using_qmatrix) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2756 | aom_wb_write_literal(wb, cm->min_qmlevel, QM_LEVEL_BITS); |
| 2757 | aom_wb_write_literal(wb, cm->max_qmlevel, QM_LEVEL_BITS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2758 | } |
| 2759 | #endif |
| 2760 | } |
| 2761 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2762 | static void encode_segmentation(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 2763 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2764 | int i, j; |
| 2765 | const struct segmentation *seg = &cm->seg; |
| 2766 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2767 | aom_wb_write_bit(wb, seg->enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2768 | if (!seg->enabled) return; |
| 2769 | |
| 2770 | // Segmentation map |
| 2771 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2772 | aom_wb_write_bit(wb, seg->update_map); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2773 | } else { |
| 2774 | assert(seg->update_map == 1); |
| 2775 | } |
| 2776 | if (seg->update_map) { |
| 2777 | // Select the coding strategy (temporal or spatial) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2778 | av1_choose_segmap_coding_method(cm, xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2779 | |
| 2780 | // Write out the chosen coding method. |
| 2781 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2782 | aom_wb_write_bit(wb, seg->temporal_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2783 | } else { |
| 2784 | assert(seg->temporal_update == 0); |
| 2785 | } |
| 2786 | } |
| 2787 | |
| 2788 | // Segmentation data |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2789 | aom_wb_write_bit(wb, seg->update_data); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2790 | if (seg->update_data) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2791 | aom_wb_write_bit(wb, seg->abs_delta); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2792 | |
| 2793 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 2794 | for (j = 0; j < SEG_LVL_MAX; j++) { |
| 2795 | const int active = segfeature_active(seg, i, j); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2796 | aom_wb_write_bit(wb, active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2797 | if (active) { |
| 2798 | const int data = get_segdata(seg, i, j); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2799 | const int data_max = av1_seg_feature_data_max(j); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2800 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2801 | if (av1_is_segfeature_signed(j)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2802 | encode_unsigned_max(wb, abs(data), data_max); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2803 | aom_wb_write_bit(wb, data < 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2804 | } else { |
| 2805 | encode_unsigned_max(wb, data, data_max); |
| 2806 | } |
| 2807 | } |
| 2808 | } |
| 2809 | } |
| 2810 | } |
| 2811 | } |
| 2812 | |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2813 | static void write_tx_mode(AV1_COMMON *cm, TX_MODE *mode, |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2814 | struct aom_write_bit_buffer *wb) { |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2815 | if (cm->all_lossless) { |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2816 | *mode = ONLY_4X4; |
| 2817 | return; |
| 2818 | } |
Nathan E. Egge | a33304f | 2017-06-28 20:48:34 -0400 | [diff] [blame] | 2819 | #if CONFIG_VAR_TX_NO_TX_MODE |
| 2820 | (void)wb; |
| 2821 | *mode = TX_MODE_SELECT; |
| 2822 | return; |
| 2823 | #else |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2824 | #if CONFIG_TX64X64 |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2825 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
| 2826 | if (*mode != TX_MODE_SELECT) { |
| 2827 | aom_wb_write_literal(wb, AOMMIN(*mode, ALLOW_32X32), 2); |
| 2828 | if (*mode >= ALLOW_32X32) aom_wb_write_bit(wb, *mode == ALLOW_64X64); |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2829 | } |
| 2830 | #else |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2831 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
| 2832 | if (*mode != TX_MODE_SELECT) aom_wb_write_literal(wb, *mode, 2); |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2833 | #endif // CONFIG_TX64X64 |
Nathan E. Egge | a33304f | 2017-06-28 20:48:34 -0400 | [diff] [blame] | 2834 | #endif // CONFIG_VAR_TX_NO_TX_MODE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2835 | } |
| 2836 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 2837 | static void write_frame_interp_filter(InterpFilter filter, |
| 2838 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2839 | aom_wb_write_bit(wb, filter == SWITCHABLE); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2840 | if (filter != SWITCHABLE) |
Angie Chiang | 6305abe | 2016-10-24 12:24:44 -0700 | [diff] [blame] | 2841 | aom_wb_write_literal(wb, filter, LOG_SWITCHABLE_FILTERS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2842 | } |
| 2843 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2844 | static void fix_interp_filter(AV1_COMMON *cm, FRAME_COUNTS *counts) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2845 | if (cm->interp_filter == SWITCHABLE) { |
| 2846 | // Check to see if only one of the filters is actually used |
| 2847 | int count[SWITCHABLE_FILTERS]; |
| 2848 | int i, j, c = 0; |
| 2849 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2850 | count[i] = 0; |
| 2851 | for (j = 0; j < SWITCHABLE_FILTER_CONTEXTS; ++j) |
| 2852 | count[i] += counts->switchable_interp[j][i]; |
| 2853 | c += (count[i] > 0); |
| 2854 | } |
| 2855 | if (c == 1) { |
| 2856 | // Only one filter is used. So set the filter at frame level |
| 2857 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2858 | if (count[i]) { |
Sarah Parker | 4c10a3c | 2017-04-10 19:37:59 -0700 | [diff] [blame] | 2859 | if (i == EIGHTTAP_REGULAR || WARP_WM_NEIGHBORS_WITH_OBMC) |
Debargha Mukherjee | 604d846 | 2017-04-06 15:27:00 -0700 | [diff] [blame] | 2860 | cm->interp_filter = i; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2861 | break; |
| 2862 | } |
| 2863 | } |
| 2864 | } |
| 2865 | } |
| 2866 | } |
| 2867 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2868 | #if CONFIG_MAX_TILE |
| 2869 | |
| 2870 | // Same function as write_uniform but writing to uncompresses header wb |
| 2871 | static void wb_write_uniform(struct aom_write_bit_buffer *wb, int n, int v) { |
| 2872 | const int l = get_unsigned_bits(n); |
| 2873 | const int m = (1 << l) - n; |
| 2874 | if (l == 0) return; |
| 2875 | if (v < m) { |
| 2876 | aom_wb_write_literal(wb, v, l - 1); |
| 2877 | } else { |
| 2878 | aom_wb_write_literal(wb, m + ((v - m) >> 1), l - 1); |
| 2879 | aom_wb_write_literal(wb, (v - m) & 1, 1); |
| 2880 | } |
| 2881 | } |
| 2882 | |
| 2883 | static void write_tile_info_max_tile(const AV1_COMMON *const cm, |
| 2884 | struct aom_write_bit_buffer *wb) { |
| 2885 | int width_mi = ALIGN_POWER_OF_TWO(cm->mi_cols, MAX_MIB_SIZE_LOG2); |
| 2886 | int height_mi = ALIGN_POWER_OF_TWO(cm->mi_rows, MAX_MIB_SIZE_LOG2); |
| 2887 | int width_sb = width_mi >> MAX_MIB_SIZE_LOG2; |
| 2888 | int height_sb = height_mi >> MAX_MIB_SIZE_LOG2; |
| 2889 | int size_sb, i; |
| 2890 | |
| 2891 | aom_wb_write_bit(wb, cm->uniform_tile_spacing_flag); |
| 2892 | |
| 2893 | if (cm->uniform_tile_spacing_flag) { |
| 2894 | // Uniform spaced tiles with power-of-two number of rows and columns |
| 2895 | // tile columns |
| 2896 | int ones = cm->log2_tile_cols - cm->min_log2_tile_cols; |
| 2897 | while (ones--) { |
| 2898 | aom_wb_write_bit(wb, 1); |
| 2899 | } |
| 2900 | if (cm->log2_tile_cols < cm->max_log2_tile_cols) { |
| 2901 | aom_wb_write_bit(wb, 0); |
| 2902 | } |
| 2903 | |
| 2904 | // rows |
| 2905 | ones = cm->log2_tile_rows - cm->min_log2_tile_rows; |
| 2906 | while (ones--) { |
| 2907 | aom_wb_write_bit(wb, 1); |
| 2908 | } |
| 2909 | if (cm->log2_tile_rows < cm->max_log2_tile_rows) { |
| 2910 | aom_wb_write_bit(wb, 0); |
| 2911 | } |
| 2912 | } else { |
| 2913 | // Explicit tiles with configurable tile widths and heights |
| 2914 | // columns |
| 2915 | for (i = 0; i < cm->tile_cols; i++) { |
| 2916 | size_sb = cm->tile_col_start_sb[i + 1] - cm->tile_col_start_sb[i]; |
| 2917 | wb_write_uniform(wb, AOMMIN(width_sb, MAX_TILE_WIDTH_SB), size_sb - 1); |
| 2918 | width_sb -= size_sb; |
| 2919 | } |
| 2920 | assert(width_sb == 0); |
| 2921 | |
| 2922 | // rows |
| 2923 | for (i = 0; i < cm->tile_rows; i++) { |
| 2924 | size_sb = cm->tile_row_start_sb[i + 1] - cm->tile_row_start_sb[i]; |
| 2925 | wb_write_uniform(wb, AOMMIN(height_sb, cm->max_tile_height_sb), |
| 2926 | size_sb - 1); |
| 2927 | height_sb -= size_sb; |
| 2928 | } |
| 2929 | assert(height_sb == 0); |
| 2930 | } |
| 2931 | } |
| 2932 | #endif |
| 2933 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2934 | static void write_tile_info(const AV1_COMMON *const cm, |
| 2935 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2936 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2937 | if (cm->large_scale_tile) { |
| 2938 | const int tile_width = |
| 2939 | ALIGN_POWER_OF_TWO(cm->tile_width, cm->mib_size_log2) >> |
| 2940 | cm->mib_size_log2; |
| 2941 | const int tile_height = |
| 2942 | ALIGN_POWER_OF_TWO(cm->tile_height, cm->mib_size_log2) >> |
| 2943 | cm->mib_size_log2; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2944 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2945 | assert(tile_width > 0); |
| 2946 | assert(tile_height > 0); |
Yunqing Wang | d8cd55f | 2017-02-27 12:16:00 -0800 | [diff] [blame] | 2947 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2948 | // Write the tile sizes |
| 2949 | #if CONFIG_EXT_PARTITION |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2950 | if (cm->sb_size == BLOCK_128X128) { |
| 2951 | assert(tile_width <= 32); |
| 2952 | assert(tile_height <= 32); |
| 2953 | aom_wb_write_literal(wb, tile_width - 1, 5); |
| 2954 | aom_wb_write_literal(wb, tile_height - 1, 5); |
| 2955 | } else { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2956 | #endif // CONFIG_EXT_PARTITION |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2957 | assert(tile_width <= 64); |
| 2958 | assert(tile_height <= 64); |
| 2959 | aom_wb_write_literal(wb, tile_width - 1, 6); |
| 2960 | aom_wb_write_literal(wb, tile_height - 1, 6); |
| 2961 | #if CONFIG_EXT_PARTITION |
| 2962 | } |
| 2963 | #endif // CONFIG_EXT_PARTITION |
| 2964 | } else { |
| 2965 | #endif // CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2966 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2967 | #if CONFIG_MAX_TILE |
| 2968 | write_tile_info_max_tile(cm, wb); |
| 2969 | #else |
| 2970 | int min_log2_tile_cols, max_log2_tile_cols, ones; |
| 2971 | av1_get_tile_n_bits(cm->mi_cols, &min_log2_tile_cols, &max_log2_tile_cols); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2972 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2973 | // columns |
| 2974 | ones = cm->log2_tile_cols - min_log2_tile_cols; |
| 2975 | while (ones--) aom_wb_write_bit(wb, 1); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2976 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2977 | if (cm->log2_tile_cols < max_log2_tile_cols) aom_wb_write_bit(wb, 0); |
| 2978 | |
| 2979 | // rows |
| 2980 | aom_wb_write_bit(wb, cm->log2_tile_rows != 0); |
| 2981 | if (cm->log2_tile_rows != 0) aom_wb_write_bit(wb, cm->log2_tile_rows != 1); |
| 2982 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2983 | #if CONFIG_DEPENDENT_HORZTILES |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2984 | 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] | 2985 | #endif |
| 2986 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2987 | } |
Fangwen Fu | 70bcb89 | 2017-05-06 17:05:19 -0700 | [diff] [blame] | 2988 | #endif // CONFIG_EXT_TILE |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2989 | |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2990 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Yunqing Wang | 42015d1 | 2017-10-17 15:43:49 -0700 | [diff] [blame] | 2991 | if (cm->tile_cols * cm->tile_rows > 1) |
| 2992 | aom_wb_write_bit(wb, cm->loop_filter_across_tiles_enabled); |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2993 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2994 | } |
| 2995 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2996 | #if USE_GF16_MULTI_LAYER |
| 2997 | static int get_refresh_mask_gf16(AV1_COMP *cpi) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2998 | int refresh_mask = 0; |
| 2999 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 3000 | if (cpi->refresh_last_frame || cpi->refresh_golden_frame || |
| 3001 | cpi->refresh_bwd_ref_frame || cpi->refresh_alt2_ref_frame || |
| 3002 | cpi->refresh_alt_ref_frame) { |
| 3003 | assert(cpi->refresh_fb_idx >= 0 && cpi->refresh_fb_idx < REF_FRAMES); |
| 3004 | refresh_mask |= (1 << cpi->refresh_fb_idx); |
| 3005 | } |
| 3006 | |
| 3007 | return refresh_mask; |
| 3008 | } |
| 3009 | #endif // USE_GF16_MULTI_LAYER |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 3010 | |
| 3011 | static int get_refresh_mask(AV1_COMP *cpi) { |
Yi Luo | 2e6a9ab | 2017-09-15 08:13:59 -0700 | [diff] [blame] | 3012 | int refresh_mask = 0; |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 3013 | #if USE_GF16_MULTI_LAYER |
| 3014 | if (cpi->rc.baseline_gf_interval == 16) return get_refresh_mask_gf16(cpi); |
| 3015 | #endif // USE_GF16_MULTI_LAYER |
| 3016 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3017 | // NOTE(zoeliu): When LAST_FRAME is to get refreshed, the decoder will be |
| 3018 | // notified to get LAST3_FRAME refreshed and then the virtual indexes for all |
| 3019 | // the 3 LAST reference frames will be updated accordingly, i.e.: |
| 3020 | // (1) The original virtual index for LAST3_FRAME will become the new virtual |
| 3021 | // index for LAST_FRAME; and |
| 3022 | // (2) The original virtual indexes for LAST_FRAME and LAST2_FRAME will be |
| 3023 | // shifted and become the new virtual indexes for LAST2_FRAME and |
| 3024 | // LAST3_FRAME. |
| 3025 | refresh_mask |= |
| 3026 | (cpi->refresh_last_frame << cpi->lst_fb_idxes[LAST_REF_FRAMES - 1]); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 3027 | |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 3028 | refresh_mask |= (cpi->refresh_bwd_ref_frame << cpi->bwd_fb_idx); |
| 3029 | refresh_mask |= (cpi->refresh_alt2_ref_frame << cpi->alt2_fb_idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3030 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3031 | if (av1_preserve_existing_gf(cpi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3032 | // We have decided to preserve the previously existing golden frame as our |
| 3033 | // new ARF frame. However, in the short term we leave it in the GF slot and, |
| 3034 | // if we're updating the GF with the current decoded frame, we save it |
| 3035 | // instead to the ARF slot. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3036 | // Later, in the function av1_encoder.c:av1_update_reference_frames() we |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3037 | // will swap gld_fb_idx and alt_fb_idx to achieve our objective. We do it |
| 3038 | // there so that it can be done outside of the recode loop. |
| 3039 | // Note: This is highly specific to the use of ARF as a forward reference, |
| 3040 | // and this needs to be generalized as other uses are implemented |
| 3041 | // (like RTC/temporal scalability). |
| 3042 | return refresh_mask | (cpi->refresh_golden_frame << cpi->alt_fb_idx); |
| 3043 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 3044 | const int arf_idx = cpi->alt_fb_idx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3045 | return refresh_mask | (cpi->refresh_golden_frame << cpi->gld_fb_idx) | |
| 3046 | (cpi->refresh_alt_ref_frame << arf_idx); |
| 3047 | } |
| 3048 | } |
| 3049 | |
| 3050 | #if CONFIG_EXT_TILE |
| 3051 | static INLINE int find_identical_tile( |
| 3052 | const int tile_row, const int tile_col, |
| 3053 | TileBufferEnc (*const tile_buffers)[1024]) { |
| 3054 | const MV32 candidate_offset[1] = { { 1, 0 } }; |
| 3055 | const uint8_t *const cur_tile_data = |
| 3056 | tile_buffers[tile_row][tile_col].data + 4; |
Jingning Han | 99ffce6 | 2017-04-25 15:48:41 -0700 | [diff] [blame] | 3057 | 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] | 3058 | |
| 3059 | int i; |
| 3060 | |
| 3061 | if (tile_row == 0) return 0; |
| 3062 | |
| 3063 | // (TODO: yunqingwang) For now, only above tile is checked and used. |
| 3064 | // More candidates such as left tile can be added later. |
| 3065 | for (i = 0; i < 1; i++) { |
| 3066 | int row_offset = candidate_offset[0].row; |
| 3067 | int col_offset = candidate_offset[0].col; |
| 3068 | int row = tile_row - row_offset; |
| 3069 | int col = tile_col - col_offset; |
| 3070 | uint8_t tile_hdr; |
| 3071 | const uint8_t *tile_data; |
| 3072 | TileBufferEnc *candidate; |
| 3073 | |
| 3074 | if (row < 0 || col < 0) continue; |
| 3075 | |
| 3076 | tile_hdr = *(tile_buffers[row][col].data); |
| 3077 | |
| 3078 | // Read out tcm bit |
| 3079 | if ((tile_hdr >> 7) == 1) { |
| 3080 | // The candidate is a copy tile itself |
| 3081 | row_offset += tile_hdr & 0x7f; |
| 3082 | row = tile_row - row_offset; |
| 3083 | } |
| 3084 | |
| 3085 | candidate = &tile_buffers[row][col]; |
| 3086 | |
| 3087 | if (row_offset >= 128 || candidate->size != cur_tile_size) continue; |
| 3088 | |
| 3089 | tile_data = candidate->data + 4; |
| 3090 | |
| 3091 | if (memcmp(tile_data, cur_tile_data, cur_tile_size) != 0) continue; |
| 3092 | |
| 3093 | // Identical tile found |
| 3094 | assert(row_offset > 0); |
| 3095 | return row_offset; |
| 3096 | } |
| 3097 | |
| 3098 | // No identical tile found |
| 3099 | return 0; |
| 3100 | } |
| 3101 | #endif // CONFIG_EXT_TILE |
| 3102 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3103 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3104 | 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] | 3105 | unsigned int *max_tile_size, |
| 3106 | unsigned int *max_tile_col_size) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3107 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3108 | aom_writer mode_bc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3109 | int tile_row, tile_col; |
| 3110 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
clang-format | 67948d3 | 2016-09-07 22:40:40 -0700 | [diff] [blame] | 3111 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3112 | uint32_t total_size = 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3113 | const int tile_cols = cm->tile_cols; |
| 3114 | const int tile_rows = cm->tile_rows; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3115 | unsigned int tile_size = 0; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3116 | const int have_tiles = tile_cols * tile_rows > 1; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3117 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3118 | const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3119 | uint32_t compressed_hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3120 | // Fixed size tile groups for the moment |
| 3121 | const int num_tg_hdrs = cm->num_tg; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3122 | const int tg_size = |
| 3123 | #if CONFIG_EXT_TILE |
| 3124 | (cm->large_scale_tile) |
| 3125 | ? 1 |
| 3126 | : |
| 3127 | #endif // CONFIG_EXT_TILE |
| 3128 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3129 | int tile_count = 0; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3130 | int tg_count = 1; |
| 3131 | int tile_size_bytes = 4; |
| 3132 | int tile_col_size_bytes; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3133 | uint32_t uncompressed_hdr_size = 0; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3134 | struct aom_write_bit_buffer tg_params_wb; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3135 | struct aom_write_bit_buffer tile_size_bytes_wb; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3136 | uint32_t saved_offset; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3137 | int mtu_size = cpi->oxcf.mtu; |
| 3138 | int curr_tg_data_size = 0; |
| 3139 | int hdr_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3140 | |
| 3141 | *max_tile_size = 0; |
| 3142 | *max_tile_col_size = 0; |
| 3143 | |
| 3144 | // All tile size fields are output on 4 bytes. A call to remux_tiles will |
| 3145 | // later compact the data if smaller headers are adequate. |
| 3146 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3147 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3148 | cm->largest_tile_id = 0; |
| 3149 | #endif |
| 3150 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3151 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3152 | if (cm->large_scale_tile) { |
| 3153 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 3154 | TileInfo tile_info; |
| 3155 | const int is_last_col = (tile_col == tile_cols - 1); |
| 3156 | const uint32_t col_offset = total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3157 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3158 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3159 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3160 | // The last column does not have a column header |
| 3161 | if (!is_last_col) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3162 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3163 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 3164 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 3165 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 3166 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 3167 | const int data_offset = have_tiles ? 4 : 0; |
| 3168 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 3169 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 3170 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3171 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3172 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3173 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3174 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 3175 | // even for the last one, unless no tiling is used at all. |
| 3176 | total_size += data_offset; |
| 3177 | // Initialise tile context from the frame context |
| 3178 | this_tile->tctx = *cm->fc; |
| 3179 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3180 | #if CONFIG_ANS |
| 3181 | mode_bc.size = 1 << cpi->common.ans_window_size_log2; |
| 3182 | #endif |
Rupert Swarbrick | 7546b30 | 2017-10-26 10:45:26 +0100 | [diff] [blame] | 3183 | #if CONFIG_LOOP_RESTORATION |
| 3184 | for (int p = 0; p < MAX_MB_PLANE; ++p) { |
| 3185 | set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p); |
| 3186 | set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p); |
| 3187 | } |
| 3188 | #endif // CONFIG_LOOP_RESTORATION |
| 3189 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3190 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 3191 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 3192 | assert(tok == tok_end); |
| 3193 | aom_stop_encode(&mode_bc); |
| 3194 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3195 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3196 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3197 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3198 | if (tile_size > *max_tile_size) { |
| 3199 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 3200 | } |
| 3201 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3202 | // Record the maximum tile size we see, so we can compact headers later. |
| 3203 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3204 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3205 | if (have_tiles) { |
| 3206 | // tile header: size of this tile, or copy offset |
| 3207 | uint32_t tile_header = tile_size; |
| 3208 | const int tile_copy_mode = |
| 3209 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 3210 | ? 1 |
| 3211 | : 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3212 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3213 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 3214 | // Very low chances to have copy tiles on the key frames, so don't |
| 3215 | // search on key frames to reduce unnecessary search. |
| 3216 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 3217 | const int idendical_tile_offset = |
| 3218 | find_identical_tile(tile_row, tile_col, tile_buffers); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3219 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3220 | if (idendical_tile_offset > 0) { |
| 3221 | tile_size = 0; |
| 3222 | tile_header = idendical_tile_offset | 0x80; |
| 3223 | tile_header <<= 24; |
| 3224 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3225 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3226 | |
| 3227 | mem_put_le32(buf->data, tile_header); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3228 | } |
| 3229 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3230 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3231 | } |
| 3232 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3233 | if (!is_last_col) { |
| 3234 | uint32_t col_size = total_size - col_offset - 4; |
| 3235 | mem_put_le32(dst + col_offset, col_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3236 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3237 | // If it is not final packing, record the maximum tile column size we |
| 3238 | // see, otherwise, check if the tile size is out of the range. |
| 3239 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 3240 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3241 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3242 | } else { |
| 3243 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 3244 | |
| 3245 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3246 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 3247 | #else |
| 3248 | write_uncompressed_header_obu(cpi, &wb); |
| 3249 | #endif |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3250 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3251 | if (cm->show_existing_frame) { |
| 3252 | total_size = aom_wb_bytes_written(&wb); |
| 3253 | return (uint32_t)total_size; |
| 3254 | } |
Jingning Han | d3f441c | 2017-03-06 09:12:54 -0800 | [diff] [blame] | 3255 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3256 | // Write the tile length code |
| 3257 | tile_size_bytes_wb = wb; |
| 3258 | aom_wb_write_literal(&wb, 3, 2); |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3259 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3260 | /* Write a placeholder for the number of tiles in each tile group */ |
| 3261 | tg_params_wb = wb; |
| 3262 | saved_offset = wb.bit_offset; |
| 3263 | if (have_tiles) { |
| 3264 | aom_wb_overwrite_literal(&wb, 3, n_log2_tiles); |
| 3265 | aom_wb_overwrite_literal(&wb, (1 << n_log2_tiles) - 1, n_log2_tiles); |
| 3266 | } |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3267 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3268 | if (!use_compressed_header(cm)) { |
| 3269 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 3270 | compressed_hdr_size = 0; |
| 3271 | } else { |
| 3272 | /* Write a placeholder for the compressed header length */ |
| 3273 | struct aom_write_bit_buffer comp_hdr_len_wb = wb; |
| 3274 | aom_wb_write_literal(&wb, 0, 16); |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3275 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3276 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 3277 | compressed_hdr_size = |
| 3278 | write_compressed_header(cpi, dst + uncompressed_hdr_size); |
| 3279 | aom_wb_overwrite_literal(&comp_hdr_len_wb, (int)(compressed_hdr_size), |
| 3280 | 16); |
| 3281 | } |
| 3282 | |
| 3283 | hdr_size = uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3284 | total_size += hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3285 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3286 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 3287 | TileInfo tile_info; |
| 3288 | const int is_last_row = (tile_row == tile_rows - 1); |
| 3289 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3290 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3291 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 3292 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 3293 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 3294 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 3295 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 3296 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 3297 | const int is_last_col = (tile_col == tile_cols - 1); |
| 3298 | const int is_last_tile = is_last_col && is_last_row; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3299 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3300 | if ((!mtu_size && tile_count > tg_size) || |
| 3301 | (mtu_size && tile_count && curr_tg_data_size >= mtu_size)) { |
| 3302 | // New tile group |
| 3303 | tg_count++; |
| 3304 | // We've exceeded the packet size |
| 3305 | if (tile_count > 1) { |
| 3306 | /* The last tile exceeded the packet size. The tile group size |
| 3307 | should therefore be tile_count-1. |
| 3308 | Move the last tile and insert headers before it |
| 3309 | */ |
| 3310 | uint32_t old_total_size = total_size - tile_size - 4; |
| 3311 | memmove(dst + old_total_size + hdr_size, dst + old_total_size, |
| 3312 | (tile_size + 4) * sizeof(uint8_t)); |
| 3313 | // Copy uncompressed header |
| 3314 | memmove(dst + old_total_size, dst, |
| 3315 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 3316 | // Write the number of tiles in the group into the last uncompressed |
| 3317 | // header before the one we've just inserted |
| 3318 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 3319 | n_log2_tiles); |
| 3320 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 2, |
| 3321 | n_log2_tiles); |
| 3322 | // Update the pointer to the last TG params |
| 3323 | tg_params_wb.bit_offset = saved_offset + 8 * old_total_size; |
| 3324 | // Copy compressed header |
| 3325 | memmove(dst + old_total_size + uncompressed_hdr_size, |
| 3326 | dst + uncompressed_hdr_size, |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3327 | compressed_hdr_size * sizeof(uint8_t)); |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3328 | total_size += hdr_size; |
| 3329 | tile_count = 1; |
| 3330 | curr_tg_data_size = hdr_size + tile_size + 4; |
| 3331 | } else { |
| 3332 | // We exceeded the packet size in just one tile |
| 3333 | // Copy uncompressed header |
| 3334 | memmove(dst + total_size, dst, |
| 3335 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 3336 | // Write the number of tiles in the group into the last uncompressed |
| 3337 | // header |
| 3338 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 3339 | n_log2_tiles); |
| 3340 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, |
| 3341 | n_log2_tiles); |
| 3342 | tg_params_wb.bit_offset = saved_offset + 8 * total_size; |
| 3343 | // Copy compressed header |
| 3344 | memmove(dst + total_size + uncompressed_hdr_size, |
| 3345 | dst + uncompressed_hdr_size, |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3346 | compressed_hdr_size * sizeof(uint8_t)); |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3347 | total_size += hdr_size; |
| 3348 | tile_count = 0; |
| 3349 | curr_tg_data_size = hdr_size; |
| 3350 | } |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3351 | } |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3352 | tile_count++; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3353 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3354 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3355 | #if CONFIG_DEPENDENT_HORZTILES |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3356 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 3357 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3358 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3359 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3360 | // The last tile does not have a header. |
| 3361 | if (!is_last_tile) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3362 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3363 | // Initialise tile context from the frame context |
| 3364 | this_tile->tctx = *cm->fc; |
| 3365 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3366 | #if CONFIG_ANS |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3367 | mode_bc.size = 1 << cpi->common.ans_window_size_log2; |
| 3368 | #endif // CONFIG_ANS |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 3369 | #if CONFIG_LOOP_RESTORATION |
| 3370 | for (int p = 0; p < MAX_MB_PLANE; ++p) { |
| 3371 | set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p); |
| 3372 | set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p); |
| 3373 | } |
| 3374 | #endif // CONFIG_LOOP_RESTORATION |
| 3375 | |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3376 | aom_start_encode(&mode_bc, dst + total_size); |
| 3377 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
Jingning Han | 223b90e | 2017-04-04 09:48:37 -0700 | [diff] [blame] | 3378 | #if !CONFIG_LV_MAP |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3379 | assert(tok == tok_end); |
Jingning Han | 223b90e | 2017-04-04 09:48:37 -0700 | [diff] [blame] | 3380 | #endif // !CONFIG_LV_MAP |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3381 | aom_stop_encode(&mode_bc); |
| 3382 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3383 | assert(tile_size > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3384 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3385 | curr_tg_data_size += tile_size + 4; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3386 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3387 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3388 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3389 | if (tile_size > *max_tile_size) { |
| 3390 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 3391 | } |
| 3392 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3393 | if (!is_last_tile) { |
| 3394 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 3395 | // size of this tile |
| 3396 | mem_put_le32(buf->data, tile_size); |
| 3397 | } |
| 3398 | |
| 3399 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3400 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3401 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3402 | // Write the final tile group size |
| 3403 | if (n_log2_tiles) { |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 3404 | aom_wb_overwrite_literal( |
| 3405 | &tg_params_wb, (tile_cols * tile_rows) - tile_count, n_log2_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3406 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, n_log2_tiles); |
| 3407 | } |
| 3408 | // Remux if possible. TODO (Thomas Davies): do this for more than one tile |
| 3409 | // group |
| 3410 | if (have_tiles && tg_count == 1) { |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3411 | int data_size = |
| 3412 | total_size - (uncompressed_hdr_size + compressed_hdr_size); |
| 3413 | data_size = |
| 3414 | remux_tiles(cm, dst + uncompressed_hdr_size + compressed_hdr_size, |
| 3415 | data_size, *max_tile_size, *max_tile_col_size, |
| 3416 | &tile_size_bytes, &tile_col_size_bytes); |
| 3417 | total_size = data_size + uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3418 | aom_wb_overwrite_literal(&tile_size_bytes_wb, tile_size_bytes - 1, 2); |
| 3419 | } |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3420 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3421 | #if CONFIG_EXT_TILE |
| 3422 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3423 | #endif // CONFIG_EXT_TILE |
| 3424 | return (uint32_t)total_size; |
| 3425 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3426 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3427 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3428 | static void write_render_size(const AV1_COMMON *cm, |
| 3429 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3430 | const int scaling_active = !av1_resize_unscaled(cm); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3431 | aom_wb_write_bit(wb, scaling_active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3432 | if (scaling_active) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3433 | aom_wb_write_literal(wb, cm->render_width - 1, 16); |
| 3434 | aom_wb_write_literal(wb, cm->render_height - 1, 16); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3435 | } |
| 3436 | } |
| 3437 | |
Fergus Simpson | d91c8c9 | 2017-04-07 12:12:00 -0700 | [diff] [blame] | 3438 | #if CONFIG_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3439 | static void write_superres_scale(const AV1_COMMON *const cm, |
| 3440 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3441 | // First bit is whether to to scale or not |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 3442 | if (cm->superres_scale_denominator == SCALE_NUMERATOR) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3443 | aom_wb_write_bit(wb, 0); // no scaling |
| 3444 | } else { |
| 3445 | aom_wb_write_bit(wb, 1); // scaling, write scale factor |
Urvang Joshi | 8301018 | 2017-10-27 12:36:02 -0700 | [diff] [blame] | 3446 | assert(cm->superres_scale_denominator >= SUPERRES_SCALE_DENOMINATOR_MIN); |
| 3447 | assert(cm->superres_scale_denominator < |
| 3448 | SUPERRES_SCALE_DENOMINATOR_MIN + (1 << SUPERRES_SCALE_BITS)); |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3449 | aom_wb_write_literal( |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 3450 | wb, cm->superres_scale_denominator - SUPERRES_SCALE_DENOMINATOR_MIN, |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3451 | SUPERRES_SCALE_BITS); |
| 3452 | } |
| 3453 | } |
Fergus Simpson | d91c8c9 | 2017-04-07 12:12:00 -0700 | [diff] [blame] | 3454 | #endif // CONFIG_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3455 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3456 | #if CONFIG_FRAME_SIZE |
| 3457 | static void write_frame_size(const AV1_COMMON *cm, int frame_size_override, |
| 3458 | struct aom_write_bit_buffer *wb) { |
| 3459 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3460 | static void write_frame_size(const AV1_COMMON *cm, |
| 3461 | struct aom_write_bit_buffer *wb) { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3462 | #endif |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3463 | #if CONFIG_FRAME_SUPERRES |
| 3464 | aom_wb_write_literal(wb, cm->superres_upscaled_width - 1, 16); |
| 3465 | aom_wb_write_literal(wb, cm->superres_upscaled_height - 1, 16); |
| 3466 | write_superres_scale(cm, wb); |
| 3467 | #else |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3468 | #if CONFIG_FRAME_SIZE |
| 3469 | if (frame_size_override) { |
| 3470 | const SequenceHeader *seq_params = &cm->seq_params; |
| 3471 | int num_bits_width = seq_params->num_bits_width; |
| 3472 | int num_bits_height = seq_params->num_bits_height; |
| 3473 | aom_wb_write_literal(wb, cm->width - 1, num_bits_width); |
| 3474 | aom_wb_write_literal(wb, cm->height - 1, num_bits_height); |
| 3475 | } |
| 3476 | #else |
Fergus Simpson | 846d67d | 2017-05-15 14:28:44 -0700 | [diff] [blame] | 3477 | aom_wb_write_literal(wb, cm->width - 1, 16); |
| 3478 | aom_wb_write_literal(wb, cm->height - 1, 16); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3479 | #endif |
Fergus Simpson | 7b2d144 | 2017-05-22 17:18:33 -0700 | [diff] [blame] | 3480 | #endif // CONFIG_FRAME_SUPERRES |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3481 | write_render_size(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3482 | } |
| 3483 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3484 | static void write_frame_size_with_refs(AV1_COMP *cpi, |
| 3485 | struct aom_write_bit_buffer *wb) { |
| 3486 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3487 | int found = 0; |
| 3488 | |
| 3489 | MV_REFERENCE_FRAME ref_frame; |
| 3490 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 3491 | YV12_BUFFER_CONFIG *cfg = get_ref_frame_buffer(cpi, ref_frame); |
| 3492 | |
| 3493 | if (cfg != NULL) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3494 | #if CONFIG_FRAME_SUPERRES |
| 3495 | found = cm->superres_upscaled_width == cfg->y_crop_width && |
| 3496 | cm->superres_upscaled_height == cfg->y_crop_height; |
| 3497 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3498 | found = |
| 3499 | cm->width == cfg->y_crop_width && cm->height == cfg->y_crop_height; |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3500 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3501 | found &= cm->render_width == cfg->render_width && |
| 3502 | cm->render_height == cfg->render_height; |
| 3503 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3504 | aom_wb_write_bit(wb, found); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3505 | if (found) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3506 | #if CONFIG_FRAME_SUPERRES |
| 3507 | write_superres_scale(cm, wb); |
| 3508 | #endif // CONFIG_FRAME_SUPERRES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3509 | break; |
| 3510 | } |
| 3511 | } |
| 3512 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3513 | #if CONFIG_FRAME_SIZE |
| 3514 | if (!found) { |
| 3515 | int frame_size_override = 1; // Allways equal to 1 in this function |
| 3516 | write_frame_size(cm, frame_size_override, wb); |
| 3517 | } |
| 3518 | #else |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3519 | if (!found) write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3520 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3521 | } |
| 3522 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3523 | static void write_profile(BITSTREAM_PROFILE profile, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3524 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3525 | switch (profile) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3526 | case PROFILE_0: aom_wb_write_literal(wb, 0, 2); break; |
| 3527 | case PROFILE_1: aom_wb_write_literal(wb, 2, 2); break; |
| 3528 | case PROFILE_2: aom_wb_write_literal(wb, 1, 2); break; |
| 3529 | case PROFILE_3: aom_wb_write_literal(wb, 6, 3); break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3530 | default: assert(0); |
| 3531 | } |
| 3532 | } |
| 3533 | |
| 3534 | static void write_bitdepth_colorspace_sampling( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3535 | AV1_COMMON *const cm, struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3536 | if (cm->profile >= PROFILE_2) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3537 | assert(cm->bit_depth > AOM_BITS_8); |
| 3538 | 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] | 3539 | } |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3540 | #if CONFIG_COLORSPACE_HEADERS |
| 3541 | aom_wb_write_literal(wb, cm->color_space, 5); |
| 3542 | aom_wb_write_literal(wb, cm->transfer_function, 5); |
| 3543 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3544 | aom_wb_write_literal(wb, cm->color_space, 3); |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3545 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3546 | if (cm->color_space != AOM_CS_SRGB) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3547 | // 0: [16, 235] (i.e. xvYCC), 1: [0, 255] |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3548 | aom_wb_write_bit(wb, cm->color_range); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3549 | if (cm->profile == PROFILE_1 || cm->profile == PROFILE_3) { |
| 3550 | assert(cm->subsampling_x != 1 || cm->subsampling_y != 1); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3551 | aom_wb_write_bit(wb, cm->subsampling_x); |
| 3552 | aom_wb_write_bit(wb, cm->subsampling_y); |
| 3553 | aom_wb_write_bit(wb, 0); // unused |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3554 | } else { |
| 3555 | assert(cm->subsampling_x == 1 && cm->subsampling_y == 1); |
| 3556 | } |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3557 | #if CONFIG_COLORSPACE_HEADERS |
| 3558 | if (cm->subsampling_x == 1 && cm->subsampling_y == 1) { |
| 3559 | aom_wb_write_literal(wb, cm->chroma_sample_position, 2); |
| 3560 | } |
| 3561 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3562 | } else { |
| 3563 | assert(cm->profile == PROFILE_1 || cm->profile == PROFILE_3); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3564 | aom_wb_write_bit(wb, 0); // unused |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3565 | } |
| 3566 | } |
| 3567 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3568 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3569 | void write_sequence_header(AV1_COMMON *const cm, |
| 3570 | struct aom_write_bit_buffer *wb) { |
| 3571 | SequenceHeader *seq_params = &cm->seq_params; |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3572 | |
| 3573 | #if CONFIG_FRAME_SIZE |
| 3574 | int num_bits_width = 16; |
| 3575 | int num_bits_height = 16; |
| 3576 | int max_frame_width = cm->width; |
| 3577 | int max_frame_height = cm->height; |
| 3578 | |
| 3579 | seq_params->num_bits_width = num_bits_width; |
| 3580 | seq_params->num_bits_height = num_bits_height; |
| 3581 | seq_params->max_frame_width = max_frame_width; |
| 3582 | seq_params->max_frame_height = max_frame_height; |
| 3583 | |
| 3584 | aom_wb_write_literal(wb, num_bits_width - 1, 4); |
| 3585 | aom_wb_write_literal(wb, num_bits_height - 1, 4); |
| 3586 | aom_wb_write_literal(wb, max_frame_width - 1, num_bits_width); |
| 3587 | aom_wb_write_literal(wb, max_frame_height - 1, num_bits_height); |
| 3588 | #endif |
| 3589 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3590 | /* Placeholder for actually writing to the bitstream */ |
Yunqing Wang | c2502b5 | 2017-07-19 17:44:18 -0700 | [diff] [blame] | 3591 | seq_params->frame_id_numbers_present_flag = |
| 3592 | #if CONFIG_EXT_TILE |
| 3593 | cm->large_scale_tile ? 0 : |
| 3594 | #endif // CONFIG_EXT_TILE |
| 3595 | FRAME_ID_NUMBERS_PRESENT_FLAG; |
Sebastien Alaiwan | d418f68 | 2017-10-19 15:06:52 +0200 | [diff] [blame] | 3596 | seq_params->frame_id_length = FRAME_ID_LENGTH; |
| 3597 | seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3598 | |
| 3599 | aom_wb_write_bit(wb, seq_params->frame_id_numbers_present_flag); |
| 3600 | if (seq_params->frame_id_numbers_present_flag) { |
Frederic Barbier | 4d5d90e | 2017-10-13 09:22:33 +0200 | [diff] [blame] | 3601 | // We must always have delta_frame_id_length < frame_id_length, |
| 3602 | // in order for a frame to be referenced with a unique delta. |
| 3603 | // Avoid wasting bits by using a coding that enforces this restriction. |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3604 | 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] | 3605 | aom_wb_write_literal( |
| 3606 | wb, seq_params->frame_id_length - seq_params->delta_frame_id_length - 1, |
| 3607 | 3); |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3608 | } |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3609 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3610 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3611 | |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 3612 | static void write_sb_size(const AV1_COMMON *cm, |
| 3613 | struct aom_write_bit_buffer *wb) { |
| 3614 | (void)cm; |
| 3615 | (void)wb; |
| 3616 | assert(cm->mib_size == mi_size_wide[cm->sb_size]); |
| 3617 | assert(cm->mib_size == 1 << cm->mib_size_log2); |
| 3618 | #if CONFIG_EXT_PARTITION |
| 3619 | assert(cm->sb_size == BLOCK_128X128 || cm->sb_size == BLOCK_64X64); |
| 3620 | aom_wb_write_bit(wb, cm->sb_size == BLOCK_128X128 ? 1 : 0); |
| 3621 | #else |
| 3622 | assert(cm->sb_size == BLOCK_64X64); |
| 3623 | #endif // CONFIG_EXT_PARTITION |
| 3624 | } |
| 3625 | |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3626 | static void write_compound_tools(const AV1_COMMON *cm, |
| 3627 | struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3628 | if (!frame_is_intra_only(cm) && cm->reference_mode != COMPOUND_REFERENCE) { |
| 3629 | aom_wb_write_bit(wb, cm->allow_interintra_compound); |
| 3630 | } else { |
| 3631 | assert(cm->allow_interintra_compound == 0); |
| 3632 | } |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 3633 | #if CONFIG_COMPOUND_SINGLEREF |
| 3634 | if (!frame_is_intra_only(cm)) { |
| 3635 | #else // !CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3636 | if (!frame_is_intra_only(cm) && cm->reference_mode != SINGLE_REFERENCE) { |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 3637 | #endif // CONFIG_COMPOUND_SINGLEREF |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3638 | aom_wb_write_bit(wb, cm->allow_masked_compound); |
| 3639 | } else { |
| 3640 | assert(cm->allow_masked_compound == 0); |
| 3641 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3642 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3643 | |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3644 | static void write_global_motion_params(const WarpedMotionParams *params, |
| 3645 | const WarpedMotionParams *ref_params, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3646 | struct aom_write_bit_buffer *wb, |
| 3647 | int allow_hp) { |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3648 | const TransformationType type = params->wmtype; |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3649 | |
| 3650 | aom_wb_write_bit(wb, type != IDENTITY); |
| 3651 | if (type != IDENTITY) { |
| 3652 | #if GLOBAL_TRANS_TYPES > 4 |
| 3653 | aom_wb_write_literal(wb, type - 1, GLOBAL_TYPE_BITS); |
| 3654 | #else |
| 3655 | aom_wb_write_bit(wb, type == ROTZOOM); |
| 3656 | if (type != ROTZOOM) aom_wb_write_bit(wb, type == TRANSLATION); |
| 3657 | #endif // GLOBAL_TRANS_TYPES > 4 |
| 3658 | } |
| 3659 | |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3660 | if (type >= ROTZOOM) { |
| 3661 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3662 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3663 | (ref_params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - |
| 3664 | (1 << GM_ALPHA_PREC_BITS), |
| 3665 | (params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3666 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3667 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3668 | (ref_params->wmmat[3] >> GM_ALPHA_PREC_DIFF), |
| 3669 | (params->wmmat[3] >> GM_ALPHA_PREC_DIFF)); |
| 3670 | } |
| 3671 | |
| 3672 | if (type >= AFFINE) { |
| 3673 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3674 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3675 | (ref_params->wmmat[4] >> GM_ALPHA_PREC_DIFF), |
| 3676 | (params->wmmat[4] >> GM_ALPHA_PREC_DIFF)); |
| 3677 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3678 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3679 | (ref_params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - |
| 3680 | (1 << GM_ALPHA_PREC_BITS), |
| 3681 | (params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3682 | } |
| 3683 | |
| 3684 | if (type >= TRANSLATION) { |
| 3685 | const int trans_bits = (type == TRANSLATION) |
| 3686 | ? GM_ABS_TRANS_ONLY_BITS - !allow_hp |
| 3687 | : GM_ABS_TRANS_BITS; |
| 3688 | const int trans_prec_diff = (type == TRANSLATION) |
| 3689 | ? GM_TRANS_ONLY_PREC_DIFF + !allow_hp |
| 3690 | : GM_TRANS_PREC_DIFF; |
| 3691 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3692 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3693 | (ref_params->wmmat[0] >> trans_prec_diff), |
| 3694 | (params->wmmat[0] >> trans_prec_diff)); |
| 3695 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3696 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3697 | (ref_params->wmmat[1] >> trans_prec_diff), |
| 3698 | (params->wmmat[1] >> trans_prec_diff)); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3699 | } |
| 3700 | } |
| 3701 | |
| 3702 | static void write_global_motion(AV1_COMP *cpi, |
| 3703 | struct aom_write_bit_buffer *wb) { |
| 3704 | AV1_COMMON *const cm = &cpi->common; |
| 3705 | int frame; |
| 3706 | for (frame = LAST_FRAME; frame <= ALTREF_FRAME; ++frame) { |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3707 | const WarpedMotionParams *ref_params = |
| 3708 | cm->error_resilient_mode ? &default_warp_params |
| 3709 | : &cm->prev_frame->global_motion[frame]; |
| 3710 | write_global_motion_params(&cm->global_motion[frame], ref_params, wb, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3711 | cm->allow_high_precision_mv); |
| 3712 | // TODO(sarahparker, debargha): The logic in the commented out code below |
| 3713 | // does not work currently and causes mismatches when resize is on. |
| 3714 | // Fix it before turning the optimization back on. |
| 3715 | /* |
| 3716 | YV12_BUFFER_CONFIG *ref_buf = get_ref_frame_buffer(cpi, frame); |
| 3717 | if (cpi->source->y_crop_width == ref_buf->y_crop_width && |
| 3718 | cpi->source->y_crop_height == ref_buf->y_crop_height) { |
| 3719 | write_global_motion_params(&cm->global_motion[frame], |
| 3720 | &cm->prev_frame->global_motion[frame], wb, |
| 3721 | cm->allow_high_precision_mv); |
| 3722 | } else { |
| 3723 | assert(cm->global_motion[frame].wmtype == IDENTITY && |
| 3724 | "Invalid warp type for frames of different resolutions"); |
| 3725 | } |
| 3726 | */ |
| 3727 | /* |
| 3728 | printf("Frame %d/%d: Enc Ref %d: %d %d %d %d\n", |
| 3729 | cm->current_video_frame, cm->show_frame, frame, |
| 3730 | cm->global_motion[frame].wmmat[0], |
| 3731 | cm->global_motion[frame].wmmat[1], cm->global_motion[frame].wmmat[2], |
| 3732 | cm->global_motion[frame].wmmat[3]); |
| 3733 | */ |
| 3734 | } |
| 3735 | } |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3736 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3737 | #if !CONFIG_OBU |
| 3738 | static void write_uncompressed_header_frame(AV1_COMP *cpi, |
| 3739 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3740 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3741 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 3742 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3743 | aom_wb_write_literal(wb, AOM_FRAME_MARKER, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3744 | |
| 3745 | write_profile(cm->profile, wb); |
| 3746 | |
Yunqing Wang | c2502b5 | 2017-07-19 17:44:18 -0700 | [diff] [blame] | 3747 | #if CONFIG_EXT_TILE |
| 3748 | aom_wb_write_literal(wb, cm->large_scale_tile, 1); |
| 3749 | #endif // CONFIG_EXT_TILE |
| 3750 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3751 | // NOTE: By default all coded frames to be used as a reference |
| 3752 | cm->is_reference_frame = 1; |
| 3753 | |
| 3754 | if (cm->show_existing_frame) { |
| 3755 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 3756 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 3757 | |
| 3758 | if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3759 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3760 | "Buffer %d does not contain a reconstructed frame", |
| 3761 | frame_to_show); |
| 3762 | } |
| 3763 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 3764 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3765 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 3766 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3767 | |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3768 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3769 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3770 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3771 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 3772 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 3773 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 3774 | /* Same logic as when when terminating the entropy coder */ |
| 3775 | /* Consider to have this logic only one place */ |
| 3776 | aom_wb_write_literal(wb, 0, 8); |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3777 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3778 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3779 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3780 | return; |
| 3781 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3782 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3783 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3784 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3785 | aom_wb_write_bit(wb, cm->frame_type); |
| 3786 | aom_wb_write_bit(wb, cm->show_frame); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3787 | if (cm->frame_type != KEY_FRAME) |
| 3788 | if (!cm->show_frame) aom_wb_write_bit(wb, cm->intra_only); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3789 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3790 | |
Pavel Frolov | 3b95c50 | 2017-10-01 21:35:24 +0300 | [diff] [blame] | 3791 | if (frame_is_intra_only(cm)) { |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3792 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3793 | write_sequence_header(cm, wb); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3794 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3795 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3796 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3797 | cm->invalid_delta_frame_id_minus1 = 0; |
| 3798 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3799 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3800 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3801 | } |
| 3802 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3803 | |
| 3804 | #if CONFIG_FRAME_SIZE |
| 3805 | int frame_size_override_flag = |
| 3806 | (cm->width != cm->seq_params.max_frame_width || |
| 3807 | cm->height != cm->seq_params.max_frame_height); |
| 3808 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 3809 | #endif |
| 3810 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3811 | if (cm->frame_type == KEY_FRAME) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3812 | write_bitdepth_colorspace_sampling(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3813 | #if CONFIG_FRAME_SIZE |
| 3814 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3815 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3816 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3817 | #endif |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 3818 | write_sb_size(cm, wb); |
| 3819 | |
Alex Converse | eb780e7 | 2016-12-13 12:46:41 -0800 | [diff] [blame] | 3820 | #if CONFIG_ANS && ANS_MAX_SYMBOLS |
| 3821 | assert(cpi->common.ans_window_size_log2 >= 8); |
| 3822 | assert(cpi->common.ans_window_size_log2 < 24); |
| 3823 | aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4); |
| 3824 | #endif // CONFIG_ANS && ANS_MAX_SYMBOLS |
hui su | 24f7b07 | 2016-10-12 11:36:24 -0700 | [diff] [blame] | 3825 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3826 | #if CONFIG_AMVR |
| 3827 | if (cm->allow_screen_content_tools) { |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3828 | if (cm->seq_force_integer_mv == 2) { |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3829 | aom_wb_write_bit(wb, 1); |
| 3830 | } else { |
| 3831 | aom_wb_write_bit(wb, 0); |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3832 | aom_wb_write_bit(wb, cm->seq_force_integer_mv); |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3833 | } |
| 3834 | } |
| 3835 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3836 | } else { |
hui su | 24f7b07 | 2016-10-12 11:36:24 -0700 | [diff] [blame] | 3837 | if (cm->intra_only) aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3838 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3839 | if (!cm->error_resilient_mode) { |
| 3840 | if (cm->intra_only) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3841 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3842 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3843 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3844 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3845 | cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 3846 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3847 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3848 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3849 | } |
| 3850 | } |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3851 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3852 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3853 | |
| 3854 | if (cm->intra_only) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3855 | write_bitdepth_colorspace_sampling(cm, wb); |
| 3856 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3857 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3858 | #if CONFIG_FRAME_SIZE |
| 3859 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3860 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3861 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3862 | #endif |
Pavel Frolov | ef4af29 | 2017-11-01 18:23:02 +0300 | [diff] [blame] | 3863 | write_sb_size(cm, wb); |
Alex Converse | eb780e7 | 2016-12-13 12:46:41 -0800 | [diff] [blame] | 3864 | |
| 3865 | #if CONFIG_ANS && ANS_MAX_SYMBOLS |
| 3866 | assert(cpi->common.ans_window_size_log2 >= 8); |
| 3867 | assert(cpi->common.ans_window_size_log2 < 24); |
| 3868 | aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4); |
| 3869 | #endif // CONFIG_ANS && ANS_MAX_SYMBOLS |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3870 | } else { |
| 3871 | MV_REFERENCE_FRAME ref_frame; |
| 3872 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3873 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3874 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3875 | if (!cpi->refresh_frame_mask) { |
| 3876 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 3877 | // will not be used as a reference |
| 3878 | cm->is_reference_frame = 0; |
| 3879 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3880 | |
| 3881 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 3882 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3883 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3884 | REF_FRAMES_LOG2); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 3885 | #if !CONFIG_FRAME_SIGN_BIAS |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3886 | aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 3887 | #endif // !CONFIG_FRAME_SIGN_BIAS |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3888 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3889 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 3890 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3891 | int frame_id_len = cm->seq_params.frame_id_length; |
| 3892 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3893 | int delta_frame_id_minus1 = |
| 3894 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 3895 | (1 << frame_id_len)) % |
| 3896 | (1 << frame_id_len)) - |
| 3897 | 1; |
| 3898 | if (delta_frame_id_minus1 < 0 || |
| 3899 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 3900 | cm->invalid_delta_frame_id_minus1 = 1; |
| 3901 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3902 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3903 | #endif // CONFIG_REFERENCE_BUFFER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3904 | } |
| 3905 | |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3906 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3907 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3908 | write_frame_size_with_refs(cpi, wb); |
| 3909 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3910 | write_frame_size(cm, frame_size_override_flag, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3911 | } |
| 3912 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3913 | write_frame_size_with_refs(cpi, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3914 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3915 | |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3916 | #if CONFIG_AMVR |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3917 | if (cm->seq_force_integer_mv == 2) { |
| 3918 | aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv); |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3919 | } |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3920 | if (cm->cur_frame_force_integer_mv) { |
| 3921 | cm->allow_high_precision_mv = 0; |
| 3922 | } else { |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3923 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3924 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3925 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3926 | } |
| 3927 | #else |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3928 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3929 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3930 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3931 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3932 | fix_interp_filter(cm, cpi->td.counts); |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 3933 | write_frame_interp_filter(cm->interp_filter, wb); |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 3934 | #if CONFIG_TEMPMV_SIGNALING |
Rupert Swarbrick | 1f990a6 | 2017-07-11 11:09:33 +0100 | [diff] [blame] | 3935 | if (frame_might_use_prev_frame_mvs(cm)) { |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 3936 | aom_wb_write_bit(wb, cm->use_prev_frame_mvs); |
| 3937 | } |
| 3938 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3939 | } |
| 3940 | } |
| 3941 | |
Jingning Han | ea255c9 | 2017-09-29 08:12:09 -0700 | [diff] [blame] | 3942 | #if CONFIG_FRAME_MARKER |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3943 | if (cm->show_frame == 0) { |
| 3944 | int arf_offset = AOMMIN( |
| 3945 | (MAX_GF_INTERVAL - 1), |
| 3946 | cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3947 | int brf_offset = |
| 3948 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 3949 | |
| 3950 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3951 | aom_wb_write_literal(wb, arf_offset, 4); |
| 3952 | } |
| 3953 | #endif |
| 3954 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3955 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3956 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3957 | cm->refresh_mask = |
| 3958 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 3959 | } |
| 3960 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3961 | |
Rupert Swarbrick | 84b05ac | 2017-10-27 18:10:53 +0100 | [diff] [blame] | 3962 | #if CONFIG_EXT_TILE |
| 3963 | const int might_bwd_adapt = |
| 3964 | !(cm->error_resilient_mode || cm->large_scale_tile); |
| 3965 | #else |
| 3966 | const int might_bwd_adapt = !cm->error_resilient_mode; |
| 3967 | #endif // CONFIG_EXT_TILE |
| 3968 | if (might_bwd_adapt) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3969 | aom_wb_write_bit( |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3970 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 3971 | } |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3972 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3973 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3974 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3975 | encode_loopfilter(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3976 | encode_quantization(cm, wb); |
| 3977 | encode_segmentation(cm, xd, wb); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3978 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3979 | int delta_q_allowed = 1; |
| 3980 | #if !CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3981 | int i; |
| 3982 | struct segmentation *const seg = &cm->seg; |
| 3983 | int segment_quantizer_active = 0; |
| 3984 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 3985 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 3986 | segment_quantizer_active = 1; |
| 3987 | } |
| 3988 | } |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3989 | delta_q_allowed = !segment_quantizer_active; |
| 3990 | #endif |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 3991 | |
Yaowu Xu | 288f816 | 2017-10-10 15:03:22 -0700 | [diff] [blame] | 3992 | if (cm->delta_q_present_flag) assert(cm->base_qindex > 0); |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3993 | // Segment quantizer and delta_q both allowed if CONFIG_EXT_DELTA_Q |
| 3994 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3995 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 3996 | if (cm->delta_q_present_flag) { |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 3997 | 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] | 3998 | xd->prev_qindex = cm->base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3999 | #if CONFIG_EXT_DELTA_Q |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4000 | assert(cm->seg.abs_delta == SEGMENT_DELTADATA); |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 4001 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
| 4002 | if (cm->delta_lf_present_flag) { |
| 4003 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2); |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 4004 | xd->prev_delta_lf_from_base = 0; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 4005 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 4006 | aom_wb_write_bit(wb, cm->delta_lf_multi); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 4007 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 4008 | xd->prev_delta_lf[lf_id] = 0; |
| 4009 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 4010 | } |
| 4011 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 4012 | } |
| 4013 | } |
| 4014 | } |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 4015 | #if CONFIG_CDEF |
| 4016 | if (!cm->all_lossless) { |
| 4017 | encode_cdef(cm, wb); |
| 4018 | } |
| 4019 | #endif |
| 4020 | #if CONFIG_LOOP_RESTORATION |
| 4021 | encode_restoration_mode(cm, wb); |
| 4022 | #endif // CONFIG_LOOP_RESTORATION |
| 4023 | write_tx_mode(cm, &cm->tx_mode, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4024 | |
| 4025 | if (cpi->allow_comp_inter_inter) { |
| 4026 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 4027 | #if !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4028 | const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE; |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 4029 | #endif // !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4030 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4031 | aom_wb_write_bit(wb, use_hybrid_pred); |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 4032 | #if !CONFIG_REF_ADAPT |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4033 | if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred); |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 4034 | #endif // !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4035 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 4036 | write_compound_tools(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4037 | |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 4038 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 4039 | |
Angie Chiang | 6dbffbf | 2017-10-06 16:59:54 -0700 | [diff] [blame] | 4040 | #if CONFIG_ADAPT_SCAN |
| 4041 | aom_wb_write_bit(wb, cm->use_adapt_scan); |
| 4042 | #endif |
| 4043 | |
Sarah Parker | f289f9f | 2017-09-12 18:50:02 -0700 | [diff] [blame] | 4044 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 4045 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4046 | write_tile_info(cm, wb); |
| 4047 | } |
| 4048 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4049 | #else |
| 4050 | // New function based on HLS R18 |
| 4051 | static void write_uncompressed_header_obu(AV1_COMP *cpi, |
| 4052 | struct aom_write_bit_buffer *wb) { |
| 4053 | AV1_COMMON *const cm = &cpi->common; |
| 4054 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 4055 | |
| 4056 | #if CONFIG_EXT_TILE |
| 4057 | aom_wb_write_literal(wb, cm->large_scale_tile, 1); |
| 4058 | #endif // CONFIG_EXT_TILE |
| 4059 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4060 | // NOTE: By default all coded frames to be used as a reference |
| 4061 | cm->is_reference_frame = 1; |
| 4062 | |
| 4063 | if (cm->show_existing_frame) { |
| 4064 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 4065 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 4066 | |
| 4067 | if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) { |
| 4068 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 4069 | "Buffer %d does not contain a reconstructed frame", |
| 4070 | frame_to_show); |
| 4071 | } |
| 4072 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 4073 | |
| 4074 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 4075 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
| 4076 | |
| 4077 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4078 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4079 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4080 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 4081 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 4082 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 4083 | /* Same logic as when when terminating the entropy coder */ |
| 4084 | /* Consider to have this logic only one place */ |
| 4085 | aom_wb_write_literal(wb, 0, 8); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4086 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4087 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4088 | |
| 4089 | return; |
| 4090 | } else { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4091 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4092 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4093 | |
| 4094 | cm->frame_type = cm->intra_only ? INTRA_ONLY_FRAME : cm->frame_type; |
| 4095 | aom_wb_write_literal(wb, cm->frame_type, 2); |
| 4096 | |
| 4097 | if (cm->intra_only) cm->frame_type = INTRA_ONLY_FRAME; |
| 4098 | |
| 4099 | aom_wb_write_bit(wb, cm->show_frame); |
| 4100 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
| 4101 | |
| 4102 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4103 | cm->invalid_delta_frame_id_minus1 = 0; |
| 4104 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4105 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4106 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4107 | } |
| 4108 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4109 | |
| 4110 | #if CONFIG_FRAME_SIZE |
| 4111 | int frame_size_override_flag = |
| 4112 | (cm->width != cm->seq_params.max_frame_width || |
| 4113 | cm->height != cm->seq_params.max_frame_height); |
| 4114 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 4115 | #endif |
| 4116 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4117 | if (cm->frame_type == KEY_FRAME) { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4118 | #if CONFIG_FRAME_SIZE |
| 4119 | write_frame_size(cm, frame_size_override_flag, wb); |
| 4120 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4121 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4122 | #endif |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 4123 | write_sb_size(cm, wb); |
| 4124 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4125 | #if CONFIG_ANS && ANS_MAX_SYMBOLS |
| 4126 | assert(cpi->common.ans_window_size_log2 >= 8); |
| 4127 | assert(cpi->common.ans_window_size_log2 < 24); |
| 4128 | aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4); |
| 4129 | #endif // CONFIG_ANS && ANS_MAX_SYMBOLS |
| 4130 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 4131 | #if CONFIG_AMVR |
| 4132 | if (cm->allow_screen_content_tools) { |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4133 | if (cm->seq_force_integer_mv == 2) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4134 | aom_wb_write_bit(wb, 1); |
| 4135 | } else { |
| 4136 | aom_wb_write_bit(wb, 0); |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4137 | aom_wb_write_bit(wb, cm->seq_force_integer_mv == 0); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4138 | } |
| 4139 | } |
| 4140 | #endif |
| 4141 | } else if (cm->frame_type == INTRA_ONLY_FRAME) { |
| 4142 | if (cm->intra_only) aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 4143 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4144 | if (!cm->error_resilient_mode) { |
| 4145 | if (cm->intra_only) { |
| 4146 | aom_wb_write_bit(wb, |
| 4147 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4148 | } |
| 4149 | } |
| 4150 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4151 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4152 | |
| 4153 | if (cm->intra_only) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4154 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4155 | #if CONFIG_FRAME_SIZE |
| 4156 | write_frame_size(cm, frame_size_override_flag, wb); |
| 4157 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4158 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4159 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4160 | |
| 4161 | #if CONFIG_ANS && ANS_MAX_SYMBOLS |
| 4162 | assert(cpi->common.ans_window_size_log2 >= 8); |
| 4163 | assert(cpi->common.ans_window_size_log2 < 24); |
| 4164 | aom_wb_write_literal(wb, cpi->common.ans_window_size_log2 - 8, 4); |
| 4165 | #endif // CONFIG_ANS && ANS_MAX_SYMBOLS |
| 4166 | } |
| 4167 | } else if (cm->frame_type == INTER_FRAME) { |
| 4168 | MV_REFERENCE_FRAME ref_frame; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4169 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4170 | if (!cm->error_resilient_mode) { |
| 4171 | aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 4172 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
| 4173 | aom_wb_write_bit(wb, |
| 4174 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4175 | } |
| 4176 | #endif |
| 4177 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4178 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
| 4179 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4180 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4181 | if (!cpi->refresh_frame_mask) { |
| 4182 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 4183 | // will not be used as a reference |
| 4184 | cm->is_reference_frame = 0; |
| 4185 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4186 | |
| 4187 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 4188 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
| 4189 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 4190 | REF_FRAMES_LOG2); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 4191 | #if !CONFIG_FRAME_SIGN_BIAS |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4192 | aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 4193 | #endif // !CONFIG_FRAME_SIGN_BIAS |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4194 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4195 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 4196 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4197 | int frame_id_len = cm->seq_params.frame_id_length; |
| 4198 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4199 | int delta_frame_id_minus1 = |
| 4200 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 4201 | (1 << frame_id_len)) % |
| 4202 | (1 << frame_id_len)) - |
| 4203 | 1; |
| 4204 | if (delta_frame_id_minus1 < 0 || |
| 4205 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 4206 | cm->invalid_delta_frame_id_minus1 = 1; |
| 4207 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4208 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4209 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4210 | } |
| 4211 | |
| 4212 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4213 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4214 | write_frame_size_with_refs(cpi, wb); |
| 4215 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4216 | write_frame_size(cm, frame_size_override_flag, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4217 | } |
| 4218 | #else |
| 4219 | write_frame_size_with_refs(cpi, wb); |
| 4220 | #endif |
| 4221 | |
| 4222 | #if CONFIG_AMVR |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4223 | if (cm->seq_force_integer_mv == 2) { |
| 4224 | aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv == 0); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4225 | } |
| 4226 | #endif |
| 4227 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
| 4228 | |
| 4229 | fix_interp_filter(cm, cpi->td.counts); |
| 4230 | write_frame_interp_filter(cm->interp_filter, wb); |
| 4231 | #if CONFIG_TEMPMV_SIGNALING |
| 4232 | if (frame_might_use_prev_frame_mvs(cm)) { |
| 4233 | aom_wb_write_bit(wb, cm->use_prev_frame_mvs); |
| 4234 | } |
| 4235 | #endif |
| 4236 | } else if (cm->frame_type == S_FRAME) { |
| 4237 | MV_REFERENCE_FRAME ref_frame; |
| 4238 | |
| 4239 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4240 | if (!cm->error_resilient_mode) { |
| 4241 | aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 4242 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
| 4243 | aom_wb_write_bit(wb, |
| 4244 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4245 | } |
| 4246 | #endif |
| 4247 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4248 | if (!cpi->refresh_frame_mask) { |
| 4249 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 4250 | // will not be used as a reference |
| 4251 | cm->is_reference_frame = 0; |
| 4252 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4253 | |
| 4254 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 4255 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
| 4256 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 4257 | REF_FRAMES_LOG2); |
| 4258 | assert(cm->ref_frame_sign_bias[ref_frame] == 0); |
| 4259 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4260 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4261 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4262 | int frame_id_len = cm->seq_params.frame_id_length; |
| 4263 | int diff_len = cm->seq_params.delta_frame_id_length; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4264 | int delta_frame_id_minus1 = |
| 4265 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 4266 | (1 << frame_id_len)) % |
| 4267 | (1 << frame_id_len)) - |
| 4268 | 1; |
| 4269 | if (delta_frame_id_minus1 < 0 || |
| 4270 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 4271 | cm->invalid_delta_frame_id_minus1 = 1; |
| 4272 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
| 4273 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4274 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4275 | } |
| 4276 | |
| 4277 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4278 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4279 | write_frame_size_with_refs(cpi, wb); |
| 4280 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4281 | write_frame_size(cm, frame_size_override_flag, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4282 | } |
| 4283 | #else |
| 4284 | write_frame_size_with_refs(cpi, wb); |
| 4285 | #endif |
| 4286 | |
| 4287 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
| 4288 | |
| 4289 | fix_interp_filter(cm, cpi->td.counts); |
| 4290 | write_frame_interp_filter(cm->interp_filter, wb); |
| 4291 | #if CONFIG_TEMPMV_SIGNALING |
| 4292 | if (frame_might_use_prev_frame_mvs(cm)) { |
| 4293 | aom_wb_write_bit(wb, cm->use_prev_frame_mvs); |
| 4294 | } |
| 4295 | #endif |
| 4296 | } |
| 4297 | |
Soo-Chul Han | ebdbcb4 | 2017-11-02 18:26:21 -0400 | [diff] [blame] | 4298 | #if CONFIG_FRAME_MARKER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4299 | if (cm->show_frame == 0) { |
| 4300 | int arf_offset = AOMMIN( |
| 4301 | (MAX_GF_INTERVAL - 1), |
| 4302 | cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4303 | int brf_offset = |
| 4304 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 4305 | |
| 4306 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4307 | aom_wb_write_literal(wb, arf_offset, 4); |
| 4308 | } |
| 4309 | #endif |
| 4310 | |
| 4311 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4312 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4313 | cm->refresh_mask = |
| 4314 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 4315 | } |
| 4316 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4317 | |
| 4318 | if (!cm->error_resilient_mode) { |
| 4319 | aom_wb_write_bit( |
| 4320 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 4321 | } |
| 4322 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4323 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
| 4324 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4325 | encode_loopfilter(cm, wb); |
| 4326 | encode_quantization(cm, wb); |
| 4327 | encode_segmentation(cm, xd, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4328 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4329 | int delta_q_allowed = 1; |
| 4330 | #if !CONFIG_EXT_DELTA_Q |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4331 | int i; |
| 4332 | struct segmentation *const seg = &cm->seg; |
| 4333 | int segment_quantizer_active = 0; |
| 4334 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 4335 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 4336 | segment_quantizer_active = 1; |
| 4337 | } |
| 4338 | } |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4339 | delta_q_allowed = !segment_quantizer_active; |
| 4340 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4341 | |
| 4342 | if (cm->delta_q_present_flag) |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4343 | assert(delta_q_allowed == 1 && cm->base_qindex > 0); |
| 4344 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4345 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 4346 | if (cm->delta_q_present_flag) { |
| 4347 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2); |
| 4348 | xd->prev_qindex = cm->base_qindex; |
| 4349 | #if CONFIG_EXT_DELTA_Q |
Rupert Swarbrick | 70f0eb3 | 2017-10-25 12:18:50 +0100 | [diff] [blame] | 4350 | assert(cm->seg.abs_delta == SEGMENT_DELTADATA); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4351 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
| 4352 | if (cm->delta_lf_present_flag) { |
| 4353 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_lf_res) - 1, 2); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 4354 | #if CONFIG_LOOPFILTER_LEVEL |
| 4355 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 4356 | xd->prev_delta_lf[lf_id] = 0; |
| 4357 | #endif // CONFIG_LOOPFILTER_LEVEL |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4358 | xd->prev_delta_lf_from_base = 0; |
| 4359 | } |
| 4360 | #endif // CONFIG_EXT_DELTA_Q |
| 4361 | } |
| 4362 | } |
| 4363 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4364 | #if CONFIG_CDEF |
| 4365 | if (!cm->all_lossless) { |
| 4366 | encode_cdef(cm, wb); |
| 4367 | } |
| 4368 | #endif |
| 4369 | #if CONFIG_LOOP_RESTORATION |
| 4370 | encode_restoration_mode(cm, wb); |
| 4371 | #endif // CONFIG_LOOP_RESTORATION |
| 4372 | write_tx_mode(cm, &cm->tx_mode, wb); |
| 4373 | |
| 4374 | if (cpi->allow_comp_inter_inter) { |
| 4375 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
| 4376 | #if !CONFIG_REF_ADAPT |
| 4377 | const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE; |
| 4378 | #endif // !CONFIG_REF_ADAPT |
| 4379 | |
| 4380 | aom_wb_write_bit(wb, use_hybrid_pred); |
| 4381 | #if !CONFIG_REF_ADAPT |
| 4382 | if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred); |
| 4383 | #endif // !CONFIG_REF_ADAPT |
| 4384 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4385 | write_compound_tools(cm, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4386 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4387 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4388 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4389 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4390 | |
| 4391 | write_tile_info(cm, wb); |
| 4392 | } |
| 4393 | #endif // CONFIG_OBU |
| 4394 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4395 | static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data) { |
| 4396 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4397 | FRAME_CONTEXT *const fc = cm->fc; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4398 | aom_writer *header_bc; |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4399 | |
| 4400 | #if !CONFIG_NEW_MULTISYMBOL || CONFIG_COMPOUND_SINGLEREF |
Thomas Davies | 599395e | 2017-07-21 18:02:48 +0100 | [diff] [blame] | 4401 | FRAME_COUNTS *counts = cpi->td.counts; |
Thomas Davies | 894cc81 | 2017-06-22 17:51:33 +0100 | [diff] [blame] | 4402 | #endif |
Thomas | 9ac5508 | 2016-09-23 18:04:17 +0100 | [diff] [blame] | 4403 | |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4404 | const int probwt = cm->num_tg; |
Thomas Davies | 04e5aa7 | 2017-06-28 14:36:39 +0100 | [diff] [blame] | 4405 | (void)probwt; |
Thomas Davies | 04e5aa7 | 2017-06-28 14:36:39 +0100 | [diff] [blame] | 4406 | (void)fc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4407 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4408 | aom_writer real_header_bc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4409 | header_bc = &real_header_bc; |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 4410 | #if CONFIG_ANS |
| 4411 | header_bc->size = 1 << cpi->common.ans_window_size_log2; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4412 | #endif |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 4413 | aom_start_encode(header_bc, data); |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 4414 | |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 4415 | #if CONFIG_RECT_TX_EXT |
Yue Chen | 56e226e | 2017-05-02 16:21:40 -0700 | [diff] [blame] | 4416 | if (cm->tx_mode == TX_MODE_SELECT) |
| 4417 | av1_cond_prob_diff_update(header_bc, &cm->fc->quarter_tx_size_prob, |
| 4418 | cm->counts.quarter_tx_size, probwt); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 4419 | #endif |
Angie Chiang | 800df03 | 2017-03-22 11:14:12 -0700 | [diff] [blame] | 4420 | |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 4421 | #if !CONFIG_NEW_MULTISYMBOL |
David Barker | 16c64e3 | 2017-08-23 16:54:59 +0100 | [diff] [blame] | 4422 | if (cm->tx_mode == TX_MODE_SELECT) |
| 4423 | update_txfm_partition_probs(cm, header_bc, counts, probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4424 | #endif |
| 4425 | |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 4426 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4427 | update_skip_probs(cm, header_bc, counts); |
Cheng Chen | 0a7f2f5 | 2017-10-10 15:16:09 -0700 | [diff] [blame] | 4428 | #if CONFIG_JNT_COMP |
| 4429 | for (int k = 0; k < COMP_INDEX_CONTEXTS; ++k) |
| 4430 | av1_cond_prob_diff_update(header_bc, &cm->fc->compound_index_probs[k], |
| 4431 | counts->compound_index[k], probwt); |
| 4432 | #endif // CONFIG_JNT_COMP |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 4433 | #endif |
hui su | 9aa9749 | 2017-01-26 16:46:01 -0800 | [diff] [blame] | 4434 | |
Debargha Mukherjee | 801cc92 | 2017-09-22 17:22:50 -0700 | [diff] [blame] | 4435 | if (!frame_is_intra_only(cm)) { |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 4436 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4437 | update_inter_mode_probs(cm, header_bc, counts); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 4438 | #endif |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 4439 | if (cm->reference_mode != COMPOUND_REFERENCE && |
| 4440 | cm->allow_interintra_compound) { |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 4441 | #if !CONFIG_NEW_MULTISYMBOL |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4442 | for (int i = 0; i < BLOCK_SIZE_GROUPS; i++) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4443 | if (is_interintra_allowed_bsize_group(i)) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4444 | av1_cond_prob_diff_update(header_bc, &fc->interintra_prob[i], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4445 | cm->counts.interintra[i], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4446 | } |
| 4447 | } |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 4448 | #endif |
Debargha Mukherjee | 371968c | 2017-10-29 12:30:04 -0700 | [diff] [blame] | 4449 | #if !CONFIG_NEW_MULTISYMBOL |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 4450 | #if CONFIG_EXT_PARTITION_TYPES |
| 4451 | int block_sizes_to_update = BLOCK_SIZES_ALL; |
| 4452 | #else |
| 4453 | int block_sizes_to_update = BLOCK_SIZES; |
| 4454 | #endif |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4455 | for (int i = 0; i < block_sizes_to_update; i++) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4456 | if (is_interintra_allowed_bsize(i) && is_interintra_wedge_used(i)) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4457 | av1_cond_prob_diff_update(header_bc, &fc->wedge_interintra_prob[i], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4458 | cm->counts.wedge_interintra[i], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4459 | } |
Debargha Mukherjee | 371968c | 2017-10-29 12:30:04 -0700 | [diff] [blame] | 4460 | #endif // !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4461 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4462 | |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 4463 | #if !CONFIG_NEW_MULTISYMBOL |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4464 | for (int i = 0; i < INTRA_INTER_CONTEXTS; i++) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4465 | av1_cond_prob_diff_update(header_bc, &fc->intra_inter_prob[i], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4466 | counts->intra_inter[i], probwt); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 4467 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4468 | |
Thomas Davies | 860def6 | 2017-06-14 10:00:03 +0100 | [diff] [blame] | 4469 | #if !CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4470 | if (cpi->allow_comp_inter_inter) { |
| 4471 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
| 4472 | if (use_hybrid_pred) |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4473 | for (int i = 0; i < COMP_INTER_CONTEXTS; i++) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4474 | av1_cond_prob_diff_update(header_bc, &fc->comp_inter_prob[i], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4475 | counts->comp_inter[i], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4476 | } |
| 4477 | |
| 4478 | if (cm->reference_mode != COMPOUND_REFERENCE) { |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4479 | for (int i = 0; i < REF_CONTEXTS; i++) { |
| 4480 | for (int j = 0; j < (SINGLE_REFS - 1); j++) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4481 | av1_cond_prob_diff_update(header_bc, &fc->single_ref_prob[i][j], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4482 | counts->single_ref[i][j], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4483 | } |
| 4484 | } |
| 4485 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 4486 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4487 | if (cm->reference_mode != SINGLE_REFERENCE) { |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 4488 | #if CONFIG_EXT_COMP_REFS |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4489 | for (int i = 0; i < COMP_REF_TYPE_CONTEXTS; i++) |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 4490 | av1_cond_prob_diff_update(header_bc, &fc->comp_ref_type_prob[i], |
| 4491 | counts->comp_ref_type[i], probwt); |
| 4492 | |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4493 | for (int i = 0; i < UNI_COMP_REF_CONTEXTS; i++) |
| 4494 | for (int j = 0; j < (UNIDIR_COMP_REFS - 1); j++) |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 4495 | av1_cond_prob_diff_update(header_bc, &fc->uni_comp_ref_prob[i][j], |
| 4496 | counts->uni_comp_ref[i][j], probwt); |
| 4497 | #endif // CONFIG_EXT_COMP_REFS |
| 4498 | |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4499 | for (int i = 0; i < REF_CONTEXTS; i++) { |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4500 | for (int j = 0; j < (FWD_REFS - 1); j++) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4501 | av1_cond_prob_diff_update(header_bc, &fc->comp_ref_prob[i][j], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4502 | counts->comp_ref[i][j], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4503 | } |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4504 | for (int j = 0; j < (BWD_REFS - 1); j++) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4505 | av1_cond_prob_diff_update(header_bc, &fc->comp_bwdref_prob[i][j], |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4506 | counts->comp_bwdref[i][j], probwt); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4507 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4508 | } |
| 4509 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 4510 | #endif // CONFIG_NEW_MULTISYMBOL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4511 | |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 4512 | #if CONFIG_COMPOUND_SINGLEREF |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4513 | for (int i = 0; i < COMP_INTER_MODE_CONTEXTS; i++) |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 4514 | av1_cond_prob_diff_update(header_bc, &fc->comp_inter_mode_prob[i], |
| 4515 | counts->comp_inter_mode[i], probwt); |
Sebastien Alaiwan | 0bdea0d | 2017-10-02 15:15:05 +0200 | [diff] [blame] | 4516 | #endif // CONFIG_COMPOUND_SINGLEREF |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 4517 | |
Thomas Davies | 599395e | 2017-07-21 18:02:48 +0100 | [diff] [blame] | 4518 | #if !CONFIG_NEW_MULTISYMBOL |
Sebastien Alaiwan | e140c50 | 2017-04-27 09:52:34 +0200 | [diff] [blame] | 4519 | av1_write_nmv_probs(cm, cm->allow_high_precision_mv, header_bc, counts->mv); |
Thomas Davies | 599395e | 2017-07-21 18:02:48 +0100 | [diff] [blame] | 4520 | #endif |
Sarah Parker | 689b0ca | 2016-10-11 12:06:33 -0700 | [diff] [blame] | 4521 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4522 | aom_stop_encode(header_bc); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4523 | assert(header_bc->pos <= 0xffff); |
| 4524 | return header_bc->pos; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4525 | } |
| 4526 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4527 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4528 | static int choose_size_bytes(uint32_t size, int spare_msbs) { |
| 4529 | // Choose the number of bytes required to represent size, without |
| 4530 | // using the 'spare_msbs' number of most significant bits. |
| 4531 | |
| 4532 | // Make sure we will fit in 4 bytes to start with.. |
| 4533 | if (spare_msbs > 0 && size >> (32 - spare_msbs) != 0) return -1; |
| 4534 | |
| 4535 | // Normalise to 32 bits |
| 4536 | size <<= spare_msbs; |
| 4537 | |
| 4538 | if (size >> 24 != 0) |
| 4539 | return 4; |
| 4540 | else if (size >> 16 != 0) |
| 4541 | return 3; |
| 4542 | else if (size >> 8 != 0) |
| 4543 | return 2; |
| 4544 | else |
| 4545 | return 1; |
| 4546 | } |
| 4547 | |
| 4548 | static void mem_put_varsize(uint8_t *const dst, const int sz, const int val) { |
| 4549 | switch (sz) { |
| 4550 | case 1: dst[0] = (uint8_t)(val & 0xff); break; |
| 4551 | case 2: mem_put_le16(dst, val); break; |
| 4552 | case 3: mem_put_le24(dst, val); break; |
| 4553 | case 4: mem_put_le32(dst, val); break; |
James Zern | 06c372d | 2017-04-20 16:08:29 -0700 | [diff] [blame] | 4554 | default: assert(0 && "Invalid size"); break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4555 | } |
| 4556 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4557 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4558 | static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4559 | const uint32_t data_size, const uint32_t max_tile_size, |
| 4560 | const uint32_t max_tile_col_size, |
| 4561 | int *const tile_size_bytes, |
| 4562 | int *const tile_col_size_bytes) { |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4563 | // Choose the tile size bytes (tsb) and tile column size bytes (tcsb) |
| 4564 | int tsb; |
| 4565 | int tcsb; |
| 4566 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4567 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4568 | if (cm->large_scale_tile) { |
| 4569 | // The top bit in the tile size field indicates tile copy mode, so we |
| 4570 | // have 1 less bit to code the tile size |
| 4571 | tsb = choose_size_bytes(max_tile_size, 1); |
| 4572 | tcsb = choose_size_bytes(max_tile_col_size, 0); |
| 4573 | } else { |
| 4574 | #endif // CONFIG_EXT_TILE |
| 4575 | tsb = choose_size_bytes(max_tile_size, 0); |
| 4576 | tcsb = 4; // This is ignored |
| 4577 | (void)max_tile_col_size; |
| 4578 | #if CONFIG_EXT_TILE |
| 4579 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4580 | #endif // CONFIG_EXT_TILE |
| 4581 | |
| 4582 | assert(tsb > 0); |
| 4583 | assert(tcsb > 0); |
| 4584 | |
| 4585 | *tile_size_bytes = tsb; |
| 4586 | *tile_col_size_bytes = tcsb; |
| 4587 | |
| 4588 | if (tsb == 4 && tcsb == 4) { |
| 4589 | return data_size; |
| 4590 | } else { |
| 4591 | uint32_t wpos = 0; |
| 4592 | uint32_t rpos = 0; |
| 4593 | |
| 4594 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4595 | if (cm->large_scale_tile) { |
| 4596 | int tile_row; |
| 4597 | int tile_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4598 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4599 | for (tile_col = 0; tile_col < cm->tile_cols; tile_col++) { |
| 4600 | // All but the last column has a column header |
| 4601 | if (tile_col < cm->tile_cols - 1) { |
| 4602 | uint32_t tile_col_size = mem_get_le32(dst + rpos); |
| 4603 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4604 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4605 | // Adjust the tile column size by the number of bytes removed |
| 4606 | // from the tile size fields. |
| 4607 | tile_col_size -= (4 - tsb) * cm->tile_rows; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4608 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4609 | mem_put_varsize(dst + wpos, tcsb, tile_col_size); |
| 4610 | wpos += tcsb; |
| 4611 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4612 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4613 | for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) { |
| 4614 | // All, including the last row has a header |
| 4615 | uint32_t tile_header = mem_get_le32(dst + rpos); |
| 4616 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4617 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4618 | // If this is a copy tile, we need to shift the MSB to the |
| 4619 | // top bit of the new width, and there is no data to copy. |
| 4620 | if (tile_header >> 31 != 0) { |
| 4621 | if (tsb < 4) tile_header >>= 32 - 8 * tsb; |
| 4622 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4623 | wpos += tsb; |
| 4624 | } else { |
| 4625 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4626 | wpos += tsb; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4627 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4628 | memmove(dst + wpos, dst + rpos, tile_header); |
| 4629 | rpos += tile_header; |
| 4630 | wpos += tile_header; |
| 4631 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4632 | } |
| 4633 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4634 | } else { |
| 4635 | #endif // CONFIG_EXT_TILE |
| 4636 | const int n_tiles = cm->tile_cols * cm->tile_rows; |
| 4637 | int n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4638 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4639 | for (n = 0; n < n_tiles; n++) { |
| 4640 | int tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4641 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4642 | if (n == n_tiles - 1) { |
| 4643 | tile_size = data_size - rpos; |
| 4644 | } else { |
| 4645 | tile_size = mem_get_le32(dst + rpos); |
| 4646 | rpos += 4; |
| 4647 | mem_put_varsize(dst + wpos, tsb, tile_size); |
| 4648 | wpos += tsb; |
| 4649 | } |
| 4650 | |
| 4651 | memmove(dst + wpos, dst + rpos, tile_size); |
| 4652 | |
| 4653 | rpos += tile_size; |
| 4654 | wpos += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4655 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4656 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4657 | } |
| 4658 | #endif // CONFIG_EXT_TILE |
| 4659 | |
| 4660 | assert(rpos > wpos); |
| 4661 | assert(rpos == data_size); |
| 4662 | |
| 4663 | return wpos; |
| 4664 | } |
| 4665 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4666 | #endif |
| 4667 | |
| 4668 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4669 | |
| 4670 | uint32_t write_obu_header(OBU_TYPE obu_type, int obu_extension, |
| 4671 | uint8_t *const dst) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4672 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4673 | uint32_t size = 0; |
| 4674 | |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4675 | // first bit is obu_forbidden_bit according to R19 |
| 4676 | aom_wb_write_literal(&wb, 0, 1); |
| 4677 | aom_wb_write_literal(&wb, (int)obu_type, 4); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4678 | aom_wb_write_literal(&wb, 0, 2); |
| 4679 | aom_wb_write_literal(&wb, obu_extension ? 1 : 0, 1); |
| 4680 | if (obu_extension) { |
| 4681 | aom_wb_write_literal(&wb, obu_extension & 0xFF, 8); |
| 4682 | } |
| 4683 | |
| 4684 | size = aom_wb_bytes_written(&wb); |
| 4685 | return size; |
| 4686 | } |
| 4687 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4688 | static uint32_t write_sequence_header_obu(AV1_COMP *cpi, uint8_t *const dst) { |
| 4689 | AV1_COMMON *const cm = &cpi->common; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4690 | SequenceHeader *const seq_params = &cm->seq_params; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4691 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4692 | uint32_t size = 0; |
| 4693 | |
| 4694 | write_profile(cm->profile, &wb); |
| 4695 | |
| 4696 | aom_wb_write_literal(&wb, 0, 4); |
| 4697 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4698 | #if CONFIG_FRAME_SIZE |
| 4699 | int num_bits_width = 16; |
| 4700 | int num_bits_height = 16; |
| 4701 | int max_frame_width = cm->width; |
| 4702 | int max_frame_height = cm->height; |
| 4703 | |
| 4704 | seq_params->num_bits_width = num_bits_width; |
| 4705 | seq_params->num_bits_height = num_bits_height; |
| 4706 | seq_params->max_frame_width = max_frame_width; |
| 4707 | seq_params->max_frame_height = max_frame_height; |
| 4708 | |
| 4709 | aom_wb_write_literal(&wb, num_bits_width - 1, 4); |
| 4710 | aom_wb_write_literal(&wb, num_bits_height - 1, 4); |
| 4711 | aom_wb_write_literal(&wb, max_frame_width - 1, num_bits_width); |
| 4712 | aom_wb_write_literal(&wb, max_frame_height - 1, num_bits_height); |
| 4713 | #endif |
| 4714 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4715 | seq_params->frame_id_numbers_present_flag = FRAME_ID_NUMBERS_PRESENT_FLAG; |
| 4716 | aom_wb_write_literal(&wb, seq_params->frame_id_numbers_present_flag, 1); |
| 4717 | if (seq_params->frame_id_numbers_present_flag) { |
Sebastien Alaiwan | d418f68 | 2017-10-19 15:06:52 +0200 | [diff] [blame] | 4718 | seq_params->frame_id_length = FRAME_ID_LENGTH; |
| 4719 | seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH; |
Frederic Barbier | 4d5d90e | 2017-10-13 09:22:33 +0200 | [diff] [blame] | 4720 | // We must always have delta_frame_id_length < frame_id_length, |
| 4721 | // in order for a frame to be referenced with a unique delta. |
| 4722 | // Avoid wasting bits by using a coding that enforces this restriction. |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4723 | 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] | 4724 | aom_wb_write_literal( |
| 4725 | &wb, |
| 4726 | seq_params->frame_id_length - seq_params->delta_frame_id_length - 1, 3); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4727 | } |
| 4728 | |
| 4729 | // color_config |
| 4730 | write_bitdepth_colorspace_sampling(cm, &wb); |
| 4731 | |
| 4732 | size = aom_wb_bytes_written(&wb); |
| 4733 | return size; |
| 4734 | } |
| 4735 | |
| 4736 | static uint32_t write_frame_header_obu(AV1_COMP *cpi, uint8_t *const dst) { |
| 4737 | AV1_COMMON *const cm = &cpi->common; |
| 4738 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4739 | uint32_t total_size = 0; |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4740 | uint32_t compressed_hdr_size, uncompressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4741 | |
| 4742 | write_uncompressed_header_obu(cpi, &wb); |
| 4743 | |
| 4744 | if (cm->show_existing_frame) { |
| 4745 | total_size = aom_wb_bytes_written(&wb); |
| 4746 | return total_size; |
| 4747 | } |
| 4748 | |
| 4749 | // write the tile length code (Always 4 bytes for now) |
| 4750 | aom_wb_write_literal(&wb, 3, 2); |
| 4751 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4752 | if (!use_compressed_header(cm)) { |
| 4753 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 4754 | compressed_hdr_size = 0; |
| 4755 | } else { |
| 4756 | // placeholder for the compressed header length |
| 4757 | struct aom_write_bit_buffer compr_hdr_len_wb = wb; |
| 4758 | aom_wb_write_literal(&wb, 0, 16); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4759 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4760 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 4761 | compressed_hdr_size = |
| 4762 | write_compressed_header(cpi, dst + uncompressed_hdr_size); |
| 4763 | aom_wb_overwrite_literal(&compr_hdr_len_wb, (int)(compressed_hdr_size), 16); |
| 4764 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4765 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4766 | total_size = uncompressed_hdr_size + compressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4767 | return total_size; |
| 4768 | } |
| 4769 | |
| 4770 | static uint32_t write_tile_group_header(uint8_t *const dst, int startTile, |
| 4771 | int endTile, int tiles_log2) { |
| 4772 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4773 | uint32_t size = 0; |
| 4774 | |
| 4775 | aom_wb_write_literal(&wb, startTile, tiles_log2); |
| 4776 | aom_wb_write_literal(&wb, endTile, tiles_log2); |
| 4777 | |
| 4778 | size = aom_wb_bytes_written(&wb); |
| 4779 | return size; |
| 4780 | } |
| 4781 | |
| 4782 | static uint32_t write_tiles_in_tg_obus(AV1_COMP *const cpi, uint8_t *const dst, |
| 4783 | unsigned int *max_tile_size, |
| 4784 | unsigned int *max_tile_col_size, |
| 4785 | uint8_t *const frame_header_obu_location, |
| 4786 | uint32_t frame_header_obu_size, |
| 4787 | int insert_frame_header_obu_flag) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4788 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4789 | aom_writer mode_bc; |
| 4790 | int tile_row, tile_col; |
| 4791 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
| 4792 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
| 4793 | uint32_t total_size = 0; |
| 4794 | const int tile_cols = cm->tile_cols; |
| 4795 | const int tile_rows = cm->tile_rows; |
| 4796 | unsigned int tile_size = 0; |
| 4797 | const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; |
| 4798 | // Fixed size tile groups for the moment |
| 4799 | const int num_tg_hdrs = cm->num_tg; |
| 4800 | const int tg_size = |
| 4801 | #if CONFIG_EXT_TILE |
| 4802 | (cm->large_scale_tile) |
| 4803 | ? 1 |
| 4804 | : |
| 4805 | #endif // CONFIG_EXT_TILE |
| 4806 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
| 4807 | int tile_count = 0; |
| 4808 | int curr_tg_data_size = 0; |
| 4809 | uint8_t *data = dst; |
| 4810 | int new_tg = 1; |
| 4811 | #if CONFIG_EXT_TILE |
| 4812 | const int have_tiles = tile_cols * tile_rows > 1; |
| 4813 | #endif |
| 4814 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4815 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4816 | cm->largest_tile_id = 0; |
| 4817 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4818 | *max_tile_size = 0; |
| 4819 | *max_tile_col_size = 0; |
| 4820 | |
| 4821 | #if CONFIG_EXT_TILE |
| 4822 | if (cm->large_scale_tile) { |
| 4823 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4824 | TileInfo tile_info; |
| 4825 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4826 | const uint32_t col_offset = total_size; |
| 4827 | |
| 4828 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4829 | |
| 4830 | // The last column does not have a column header |
| 4831 | if (!is_last_col) total_size += 4; |
| 4832 | |
| 4833 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4834 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4835 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4836 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4837 | const int data_offset = have_tiles ? 4 : 0; |
| 4838 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4839 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4840 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4841 | |
| 4842 | buf->data = dst + total_size; |
| 4843 | |
| 4844 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 4845 | // even for the last one, unless no tiling is used at all. |
| 4846 | total_size += data_offset; |
| 4847 | // Initialise tile context from the frame context |
| 4848 | this_tile->tctx = *cm->fc; |
| 4849 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4850 | #if CONFIG_ANS |
| 4851 | mode_bc.size = 1 << cpi->common.ans_window_size_log2; |
| 4852 | #endif |
| 4853 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 4854 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 4855 | assert(tok == tok_end); |
| 4856 | aom_stop_encode(&mode_bc); |
| 4857 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4858 | buf->size = tile_size; |
| 4859 | |
| 4860 | // 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] | 4861 | if (tile_size > *max_tile_size) { |
| 4862 | *max_tile_size = tile_size; |
| 4863 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4864 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 4865 | #endif |
| 4866 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4867 | |
| 4868 | if (have_tiles) { |
| 4869 | // tile header: size of this tile, or copy offset |
| 4870 | uint32_t tile_header = tile_size; |
| 4871 | const int tile_copy_mode = |
| 4872 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 4873 | ? 1 |
| 4874 | : 0; |
| 4875 | |
| 4876 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 4877 | // Very low chances to have copy tiles on the key frames, so don't |
| 4878 | // search on key frames to reduce unnecessary search. |
| 4879 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 4880 | const int idendical_tile_offset = |
| 4881 | find_identical_tile(tile_row, tile_col, tile_buffers); |
| 4882 | |
| 4883 | if (idendical_tile_offset > 0) { |
| 4884 | tile_size = 0; |
| 4885 | tile_header = idendical_tile_offset | 0x80; |
| 4886 | tile_header <<= 24; |
| 4887 | } |
| 4888 | } |
| 4889 | |
| 4890 | mem_put_le32(buf->data, tile_header); |
| 4891 | } |
| 4892 | |
| 4893 | total_size += tile_size; |
| 4894 | } |
| 4895 | |
| 4896 | if (!is_last_col) { |
| 4897 | uint32_t col_size = total_size - col_offset - 4; |
| 4898 | mem_put_le32(dst + col_offset, col_size); |
| 4899 | |
| 4900 | // If it is not final packing, record the maximum tile column size we |
| 4901 | // see, otherwise, check if the tile size is out of the range. |
| 4902 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 4903 | } |
| 4904 | } |
| 4905 | } else { |
| 4906 | #endif // CONFIG_EXT_TILE |
| 4907 | |
| 4908 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4909 | TileInfo tile_info; |
| 4910 | const int is_last_row = (tile_row == tile_rows - 1); |
| 4911 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4912 | |
| 4913 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4914 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4915 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4916 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4917 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4918 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4919 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4920 | const int is_last_tile = is_last_col && is_last_row; |
| 4921 | int is_last_tile_in_tg = 0; |
| 4922 | |
| 4923 | if (new_tg) { |
| 4924 | if (insert_frame_header_obu_flag && tile_idx) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4925 | // insert a copy of frame header OBU (including |
| 4926 | // PRE_OBU_SIZE_BYTES-byte size), |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4927 | // except before the first tile group |
| 4928 | data = dst + total_size; |
| 4929 | memmove(data, frame_header_obu_location, frame_header_obu_size); |
| 4930 | total_size += frame_header_obu_size; |
| 4931 | } |
| 4932 | data = dst + total_size; |
| 4933 | // A new tile group begins at this tile. Write the obu header and |
| 4934 | // tile group header |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4935 | curr_tg_data_size = |
| 4936 | write_obu_header(OBU_TILE_GROUP, 0, data + PRE_OBU_SIZE_BYTES); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4937 | if (n_log2_tiles) |
| 4938 | curr_tg_data_size += write_tile_group_header( |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4939 | data + curr_tg_data_size + PRE_OBU_SIZE_BYTES, tile_idx, |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4940 | AOMMIN(tile_idx + tg_size - 1, tile_cols * tile_rows - 1), |
| 4941 | n_log2_tiles); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4942 | total_size += curr_tg_data_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4943 | new_tg = 0; |
| 4944 | tile_count = 0; |
| 4945 | } |
| 4946 | tile_count++; |
| 4947 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4948 | |
| 4949 | if (tile_count == tg_size || tile_idx == (tile_cols * tile_rows - 1)) { |
| 4950 | is_last_tile_in_tg = 1; |
| 4951 | new_tg = 1; |
| 4952 | } else { |
| 4953 | is_last_tile_in_tg = 0; |
| 4954 | } |
| 4955 | |
| 4956 | #if CONFIG_DEPENDENT_HORZTILES |
| 4957 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
| 4958 | #endif |
| 4959 | buf->data = dst + total_size; |
| 4960 | |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4961 | // The last tile of the tile group does not have a header. |
| 4962 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4963 | if (!is_last_tile_in_tg) total_size += 4; |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4964 | #else |
| 4965 | total_size += 4; |
| 4966 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4967 | |
| 4968 | // Initialise tile context from the frame context |
| 4969 | this_tile->tctx = *cm->fc; |
| 4970 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4971 | #if CONFIG_ANS |
| 4972 | mode_bc.size = 1 << cpi->common.ans_window_size_log2; |
| 4973 | #endif // CONFIG_ANS |
Soo-Chul Han | 13f0d9c | 2017-10-22 21:55:52 -0400 | [diff] [blame] | 4974 | #if CONFIG_LOOP_RESTORATION |
| 4975 | for (int p = 0; p < MAX_MB_PLANE; ++p) { |
| 4976 | set_default_wiener(cpi->td.mb.e_mbd.wiener_info + p); |
| 4977 | set_default_sgrproj(cpi->td.mb.e_mbd.sgrproj_info + p); |
| 4978 | } |
| 4979 | #endif // CONFIG_LOOP_RESTORATION |
| 4980 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4981 | aom_start_encode(&mode_bc, dst + total_size); |
| 4982 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 4983 | #if !CONFIG_LV_MAP |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4984 | assert(tok == tok_end); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4985 | #endif // !CONFIG_LV_MAP |
| 4986 | aom_stop_encode(&mode_bc); |
| 4987 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4988 | assert(tile_size > 0); |
| 4989 | |
| 4990 | curr_tg_data_size += (tile_size + (is_last_tile_in_tg ? 0 : 4)); |
| 4991 | buf->size = tile_size; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4992 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4993 | if (tile_size > *max_tile_size) { |
| 4994 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 4995 | } |
| 4996 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4997 | if (!is_last_tile) { |
| 4998 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 4999 | } |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 5000 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5001 | if (!is_last_tile_in_tg) { |
| 5002 | // size of this tile |
| 5003 | mem_put_le32(buf->data, tile_size); |
| 5004 | } else { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5005 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5006 | // write current tile group size |
| 5007 | mem_put_le32(data, curr_tg_data_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5008 | #else |
| 5009 | mem_put_le32(buf->data, tile_size); |
| 5010 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | total_size += tile_size; |
| 5014 | } |
| 5015 | } |
| 5016 | #if CONFIG_EXT_TILE |
| 5017 | } |
| 5018 | #endif // CONFIG_EXT_TILE |
| 5019 | return (uint32_t)total_size; |
| 5020 | } |
| 5021 | |
| 5022 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 5023 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 5024 | void 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] | 5025 | uint8_t *data = dst; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5026 | uint32_t data_size; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 5027 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5028 | AV1_COMMON *const cm = &cpi->common; |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 5029 | uint32_t compressed_hdr_size = 0; |
| 5030 | uint32_t uncompressed_hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 5031 | struct aom_write_bit_buffer saved_wb; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 5032 | struct aom_write_bit_buffer wb = { data, 0 }; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5033 | const int have_tiles = cm->tile_cols * cm->tile_rows > 1; |
| 5034 | int tile_size_bytes; |
| 5035 | int tile_col_size_bytes; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 5036 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 5037 | unsigned int max_tile_size; |
| 5038 | unsigned int max_tile_col_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5039 | #if CONFIG_OBU |
| 5040 | #if !CONFIG_EXT_TILE |
| 5041 | AV1_COMMON *const cm = &cpi->common; |
| 5042 | #endif |
| 5043 | uint32_t obu_size; |
| 5044 | uint8_t *frame_header_location; |
| 5045 | uint32_t frame_header_size; |
| 5046 | #endif |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 5047 | |
Angie Chiang | b11aedf | 2017-03-10 17:31:46 -0800 | [diff] [blame] | 5048 | #if CONFIG_BITSTREAM_DEBUG |
| 5049 | bitstream_queue_reset_write(); |
| 5050 | #endif |
| 5051 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5052 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5053 | // The TD is now written outside the frame encode loop |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5054 | |
| 5055 | // write sequence header obu if KEY_FRAME, preceded by 4-byte size |
| 5056 | if (cm->frame_type == KEY_FRAME) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5057 | obu_size = |
| 5058 | write_obu_header(OBU_SEQUENCE_HEADER, 0, data + PRE_OBU_SIZE_BYTES); |
| 5059 | obu_size += |
| 5060 | write_sequence_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size); |
| 5061 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5062 | mem_put_le32(data, obu_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5063 | #endif |
| 5064 | data += obu_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5065 | } |
| 5066 | |
| 5067 | // write frame header obu, preceded by 4-byte size |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5068 | frame_header_location = data + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5069 | obu_size = write_obu_header(OBU_FRAME_HEADER, 0, frame_header_location); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5070 | frame_header_size = |
| 5071 | write_frame_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5072 | obu_size += frame_header_size; |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5073 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5074 | mem_put_le32(data, obu_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5075 | #endif |
| 5076 | data += obu_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5077 | |
| 5078 | if (cm->show_existing_frame) { |
| 5079 | data_size = 0; |
| 5080 | } else { |
| 5081 | // Each tile group obu will be preceded by 4-byte size of the tile group |
| 5082 | // obu |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5083 | data_size = write_tiles_in_tg_obus( |
| 5084 | cpi, data, &max_tile_size, &max_tile_col_size, |
| 5085 | frame_header_location - PRE_OBU_SIZE_BYTES, |
| 5086 | obu_size + PRE_OBU_SIZE_BYTES, 1 /* cm->error_resilient_mode */); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5087 | } |
| 5088 | |
| 5089 | #endif |
| 5090 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5091 | #if CONFIG_EXT_TILE |
| 5092 | if (cm->large_scale_tile) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5093 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5094 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 5095 | #else |
| 5096 | write_uncompressed_header_obu(cpi, &wb); |
| 5097 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5098 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5099 | if (cm->show_existing_frame) { |
| 5100 | *size = aom_wb_bytes_written(&wb); |
| 5101 | return; |
| 5102 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5103 | |
| 5104 | // We do not know these in advance. Output placeholder bit. |
| 5105 | saved_wb = wb; |
| 5106 | // Write tile size magnitudes |
| 5107 | if (have_tiles) { |
| 5108 | // Note that the last item in the uncompressed header is the data |
| 5109 | // describing tile configuration. |
| 5110 | // Number of bytes in tile column size - 1 |
| 5111 | aom_wb_write_literal(&wb, 0, 2); |
| 5112 | |
| 5113 | // Number of bytes in tile size - 1 |
| 5114 | aom_wb_write_literal(&wb, 0, 2); |
| 5115 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5116 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 5117 | if (!use_compressed_header(cm)) { |
| 5118 | uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb); |
| 5119 | aom_clear_system_state(); |
| 5120 | compressed_hdr_size = 0; |
| 5121 | } else { |
| 5122 | // Size of compressed header |
| 5123 | aom_wb_write_literal(&wb, 0, 16); |
| 5124 | uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb); |
| 5125 | aom_clear_system_state(); |
| 5126 | // Write the compressed header |
| 5127 | compressed_hdr_size = |
| 5128 | write_compressed_header(cpi, data + uncompressed_hdr_size); |
| 5129 | } |
| 5130 | data += uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5131 | |
| 5132 | // Write the encoded tile data |
| 5133 | data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size); |
| 5134 | } else { |
| 5135 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 5136 | #if !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5137 | 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] | 5138 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5139 | #if CONFIG_EXT_TILE |
| 5140 | } |
| 5141 | #endif // CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5142 | #if CONFIG_EXT_TILE |
| 5143 | if (cm->large_scale_tile) { |
| 5144 | if (have_tiles) { |
| 5145 | data_size = |
| 5146 | remux_tiles(cm, data, data_size, max_tile_size, max_tile_col_size, |
| 5147 | &tile_size_bytes, &tile_col_size_bytes); |
| 5148 | } |
| 5149 | |
| 5150 | data += data_size; |
| 5151 | |
| 5152 | // Now fill in the gaps in the uncompressed header. |
| 5153 | if (have_tiles) { |
| 5154 | assert(tile_col_size_bytes >= 1 && tile_col_size_bytes <= 4); |
| 5155 | aom_wb_write_literal(&saved_wb, tile_col_size_bytes - 1, 2); |
| 5156 | |
| 5157 | assert(tile_size_bytes >= 1 && tile_size_bytes <= 4); |
| 5158 | aom_wb_write_literal(&saved_wb, tile_size_bytes - 1, 2); |
| 5159 | } |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 5160 | // TODO(jbb): Figure out what to do if compressed_hdr_size > 16 bits. |
| 5161 | assert(compressed_hdr_size <= 0xffff); |
Rupert Swarbrick | 5368590 | 2017-10-27 13:35:19 +0100 | [diff] [blame] | 5162 | // Fill in the compressed header size (but only if we're using one) |
| 5163 | if (use_compressed_header(cm)) { |
| 5164 | aom_wb_write_literal(&saved_wb, compressed_hdr_size, 16); |
| 5165 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 5166 | } else { |
| 5167 | #endif // CONFIG_EXT_TILE |
| 5168 | data += data_size; |
| 5169 | #if CONFIG_EXT_TILE |
| 5170 | } |
| 5171 | #endif // CONFIG_EXT_TILE |
Alex Converse | b0bbd60 | 2016-10-21 14:15:06 -0700 | [diff] [blame] | 5172 | #if CONFIG_ANS && ANS_REVERSE |
| 5173 | // Avoid aliasing the superframe index |
| 5174 | *data++ = 0; |
| 5175 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 5176 | *size = data - dst; |
| 5177 | } |