Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <assert.h> |
| 13 | #include <limits.h> |
| 14 | #include <stdio.h> |
| 15 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 16 | #include "aom/aom_encoder.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 17 | #include "aom_dsp/aom_dsp_common.h" |
Debargha Mukherjee | 47748b5 | 2017-03-24 12:20:49 -0700 | [diff] [blame] | 18 | #include "aom_dsp/binary_codes_writer.h" |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 19 | #include "aom_dsp/bitwriter_buffer.h" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 20 | #include "aom_mem/aom_mem.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 21 | #include "aom_ports/mem_ops.h" |
| 22 | #include "aom_ports/system_state.h" |
Angie Chiang | 6062a8b | 2016-09-21 16:01:04 -0700 | [diff] [blame] | 23 | #if CONFIG_BITSTREAM_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 24 | #include "aom_util/debug_util.h" |
Angie Chiang | 6062a8b | 2016-09-21 16:01:04 -0700 | [diff] [blame] | 25 | #endif // CONFIG_BITSTREAM_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 26 | |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 27 | #include "av1/common/cdef.h" |
Luc Trudeau | d183b64 | 2017-11-28 11:42:37 -0500 | [diff] [blame] | 28 | #if CONFIG_CFL |
| 29 | #include "av1/common/cfl.h" |
| 30 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 31 | #include "av1/common/entropy.h" |
| 32 | #include "av1/common/entropymode.h" |
| 33 | #include "av1/common/entropymv.h" |
| 34 | #include "av1/common/mvref_common.h" |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 35 | #include "av1/common/odintrin.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 36 | #include "av1/common/pred_common.h" |
| 37 | #include "av1/common/reconinter.h" |
hui su | 45dc597 | 2016-12-08 17:42:50 -0800 | [diff] [blame] | 38 | #if CONFIG_EXT_INTRA |
| 39 | #include "av1/common/reconintra.h" |
| 40 | #endif // CONFIG_EXT_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 41 | #include "av1/common/seg_common.h" |
| 42 | #include "av1/common/tile_common.h" |
| 43 | |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 44 | #if CONFIG_LV_MAP |
| 45 | #include "av1/encoder/encodetxb.h" |
| 46 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 47 | #include "av1/encoder/bitstream.h" |
| 48 | #include "av1/encoder/cost.h" |
| 49 | #include "av1/encoder/encodemv.h" |
| 50 | #include "av1/encoder/mcomp.h" |
Urvang Joshi | c6300aa | 2017-06-01 14:46:23 -0700 | [diff] [blame] | 51 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 52 | #include "av1/encoder/palette.h" |
Urvang Joshi | c6300aa | 2017-06-01 14:46:23 -0700 | [diff] [blame] | 53 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 54 | #include "av1/encoder/segmentation.h" |
| 55 | #include "av1/encoder/subexp.h" |
| 56 | #include "av1/encoder/tokenize.h" |
| 57 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 58 | #define ENC_MISMATCH_DEBUG 0 |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 59 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 60 | static INLINE void write_uniform(aom_writer *w, int n, int v) { |
hui su | 3749929 | 2017-04-26 09:49:53 -0700 | [diff] [blame] | 61 | const int l = get_unsigned_bits(n); |
| 62 | const int m = (1 << l) - n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 63 | if (l == 0) return; |
| 64 | if (v < m) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 65 | aom_write_literal(w, v, l - 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 66 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 67 | aom_write_literal(w, m + ((v - m) >> 1), l - 1); |
| 68 | aom_write_literal(w, (v - m) & 1, 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 69 | } |
| 70 | } |
| 71 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 72 | static struct av1_token interintra_mode_encodings[INTERINTRA_MODES]; |
Cheng Chen | 2ef24ea | 2017-11-29 12:22:24 -0800 | [diff] [blame] | 73 | #if CONFIG_JNT_COMP |
| 74 | static struct av1_token compound_type_encodings[COMPOUND_TYPES - 1]; |
| 75 | #else |
Sarah Parker | 6fddd18 | 2016-11-10 20:57:20 -0800 | [diff] [blame] | 76 | static struct av1_token compound_type_encodings[COMPOUND_TYPES]; |
Cheng Chen | 2ef24ea | 2017-11-29 12:22:24 -0800 | [diff] [blame] | 77 | #endif // CONFIG_JNT_COMP |
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); |
Sarah Parker | 6fddd18 | 2016-11-10 20:57:20 -0800 | [diff] [blame] | 103 | av1_tokens_from_tree(compound_type_encodings, av1_compound_type_tree); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 106 | static void write_intra_mode_kf(const AV1_COMMON *cm, FRAME_CONTEXT *frame_ctx, |
| 107 | const MODE_INFO *mi, const MODE_INFO *above_mi, |
| 108 | const MODE_INFO *left_mi, int block, |
| 109 | PREDICTION_MODE mode, aom_writer *w) { |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 110 | #if CONFIG_INTRABC |
| 111 | assert(!is_intrabc_block(&mi->mbmi)); |
| 112 | #endif // CONFIG_INTRABC |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 113 | aom_write_symbol(w, mode, |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 114 | get_y_mode_cdf(frame_ctx, mi, above_mi, left_mi, block), |
| 115 | INTRA_MODES); |
| 116 | (void)cm; |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 117 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 118 | |
Thomas Davies | 1de6c88 | 2017-01-11 17:47:49 +0000 | [diff] [blame] | 119 | static void write_inter_mode(aom_writer *w, PREDICTION_MODE mode, |
Zoe Liu | 7f24e1b | 2017-03-17 17:42:05 -0700 | [diff] [blame] | 120 | FRAME_CONTEXT *ec_ctx, const int16_t mode_ctx) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 121 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 122 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 123 | aom_write_symbol(w, mode != NEWMV, ec_ctx->newmv_cdf[newmv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 124 | |
Jingning Han | f2b87bd | 2017-05-18 16:27:30 -0700 | [diff] [blame] | 125 | if (mode != NEWMV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 126 | if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 127 | assert(mode == GLOBALMV); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 128 | return; |
| 129 | } |
| 130 | |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 131 | const int16_t zeromv_ctx = |
| 132 | (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 133 | aom_write_symbol(w, mode != GLOBALMV, ec_ctx->zeromv_cdf[zeromv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 134 | |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 135 | if (mode != GLOBALMV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 136 | int16_t refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 137 | |
| 138 | if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6; |
| 139 | if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7; |
| 140 | if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8; |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 141 | aom_write_symbol(w, mode != NEARESTMV, ec_ctx->refmv_cdf[refmv_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 142 | } |
| 143 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 146 | 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] | 147 | const MB_MODE_INFO_EXT *mbmi_ext, aom_writer *w) { |
| 148 | uint8_t ref_frame_type = av1_ref_frame_type(mbmi->ref_frame); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 149 | |
| 150 | assert(mbmi->ref_mv_idx < 3); |
| 151 | |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 152 | const int new_mv = mbmi->mode == NEWMV || mbmi->mode == NEW_NEWMV; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 153 | if (new_mv) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 154 | int idx; |
| 155 | for (idx = 0; idx < 2; ++idx) { |
Jingning Han | b56b71a | 2017-12-04 09:14:13 -0800 | [diff] [blame] | 156 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1 || |
| 157 | CONFIG_OPT_REF_MV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 158 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 159 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 160 | |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 161 | aom_write_symbol(w, mbmi->ref_mv_idx != idx, ec_ctx->drl_cdf[drl_ctx], |
| 162 | 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 163 | if (mbmi->ref_mv_idx == idx) return; |
| 164 | } |
| 165 | } |
| 166 | return; |
| 167 | } |
| 168 | |
David Barker | 3dfba99 | 2017-04-03 16:10:09 +0100 | [diff] [blame] | 169 | if (have_nearmv_in_inter_mode(mbmi->mode)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 170 | int idx; |
| 171 | // TODO(jingning): Temporary solution to compensate the NEARESTMV offset. |
| 172 | for (idx = 1; idx < 3; ++idx) { |
Jingning Han | b56b71a | 2017-12-04 09:14:13 -0800 | [diff] [blame] | 173 | if (mbmi_ext->ref_mv_count[ref_frame_type] > idx + 1 || |
| 174 | CONFIG_OPT_REF_MV) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 175 | uint8_t drl_ctx = |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 176 | av1_drl_ctx(mbmi_ext->ref_mv_stack[ref_frame_type], idx); |
Thomas Davies | 149eda5 | 2017-06-12 18:11:55 +0100 | [diff] [blame] | 177 | aom_write_symbol(w, mbmi->ref_mv_idx != (idx - 1), |
| 178 | ec_ctx->drl_cdf[drl_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 179 | if (mbmi->ref_mv_idx == (idx - 1)) return; |
| 180 | } |
| 181 | } |
| 182 | return; |
| 183 | } |
| 184 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 185 | |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 186 | static void write_inter_compound_mode(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 187 | aom_writer *w, PREDICTION_MODE mode, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 188 | const int16_t mode_ctx) { |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 189 | assert(is_inter_compound_mode(mode)); |
Thomas Davies | 8c08a33 | 2017-06-26 17:30:34 +0100 | [diff] [blame] | 190 | (void)cm; |
| 191 | aom_write_symbol(w, INTER_COMPOUND_OFFSET(mode), |
| 192 | xd->tile_ctx->inter_compound_mode_cdf[mode_ctx], |
| 193 | INTER_COMPOUND_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 194 | } |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 195 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 196 | 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] | 197 | int max) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 198 | aom_wb_write_literal(wb, data, get_unsigned_bits(max)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 199 | } |
| 200 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 201 | static void write_tx_size_vartx(const AV1_COMMON *cm, MACROBLOCKD *xd, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 202 | const MB_MODE_INFO *mbmi, TX_SIZE tx_size, |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 203 | int depth, int blk_row, int blk_col, |
| 204 | aom_writer *w) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 205 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 206 | (void)cm; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 207 | const int tx_row = blk_row >> 1; |
| 208 | const int tx_col = blk_col >> 1; |
Jingning Han | f65b870 | 2016-10-31 12:13:20 -0700 | [diff] [blame] | 209 | const int max_blocks_high = max_block_high(xd, mbmi->sb_type, 0); |
| 210 | const int max_blocks_wide = max_block_wide(xd, mbmi->sb_type, 0); |
| 211 | |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 212 | int ctx = txfm_partition_context(xd->above_txfm_context + blk_col, |
| 213 | xd->left_txfm_context + blk_row, |
Jingning Han | c8b8936 | 2016-11-01 10:28:53 -0700 | [diff] [blame] | 214 | mbmi->sb_type, tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 215 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 216 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 217 | |
Jingning Han | 571189c | 2016-10-24 10:38:43 -0700 | [diff] [blame] | 218 | if (depth == MAX_VARTX_DEPTH) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 219 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 220 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Jingning Han | 94d5bfc | 2016-10-21 10:14:36 -0700 | [diff] [blame] | 221 | return; |
| 222 | } |
| 223 | |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 224 | const int write_txfm_partition = |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 225 | tx_size == mbmi->inter_tx_size[tx_row][tx_col]; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 226 | if (write_txfm_partition) { |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 227 | aom_write_symbol(w, 0, ec_ctx->txfm_partition_cdf[ctx], 2); |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 228 | |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 229 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 230 | xd->left_txfm_context + blk_row, tx_size, tx_size); |
Yue Chen | d6bdd46 | 2017-07-19 16:05:43 -0700 | [diff] [blame] | 231 | // TODO(yuec): set correct txfm partition update for qttx |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 232 | } else { |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 233 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 234 | const int bsw = tx_size_wide_unit[sub_txs]; |
| 235 | const int bsh = tx_size_high_unit[sub_txs]; |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 236 | |
Thomas Davies | 985bfc3 | 2017-06-27 16:51:26 +0100 | [diff] [blame] | 237 | aom_write_symbol(w, 1, ec_ctx->txfm_partition_cdf[ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 238 | |
David Barker | 16c64e3 | 2017-08-23 16:54:59 +0100 | [diff] [blame] | 239 | if (sub_txs == TX_4X4) { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 240 | txfm_partition_update(xd->above_txfm_context + blk_col, |
| 241 | xd->left_txfm_context + blk_row, sub_txs, tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 242 | return; |
| 243 | } |
| 244 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 245 | assert(bsw > 0 && bsh > 0); |
| 246 | for (int row = 0; row < tx_size_high_unit[tx_size]; row += bsh) |
| 247 | for (int col = 0; col < tx_size_wide_unit[tx_size]; col += bsw) { |
| 248 | int offsetr = blk_row + row; |
| 249 | int offsetc = blk_col + col; |
| 250 | write_tx_size_vartx(cm, xd, mbmi, sub_txs, depth + 1, offsetr, offsetc, |
| 251 | w); |
| 252 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 253 | } |
| 254 | } |
| 255 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 256 | static void write_selected_tx_size(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 257 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 258 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 259 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 260 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 261 | (void)cm; |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 262 | if (block_signals_txsize(bsize)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 263 | const TX_SIZE tx_size = mbmi->tx_size; |
Urvang Joshi | ab8840e | 2017-10-06 16:38:24 -0700 | [diff] [blame] | 264 | const int tx_size_ctx = get_tx_size_context(xd); |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 265 | const int32_t tx_size_cat = intra_tx_size_cat_lookup[bsize]; |
Debargha Mukherjee | 0fa057f | 2017-12-06 17:06:29 -0800 | [diff] [blame] | 266 | const int depth = tx_size_to_depth(tx_size, bsize, 0); |
| 267 | const int max_depths = bsize_to_max_depth(bsize, 0); |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 268 | |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 269 | assert(depth >= 0 && depth <= max_depths); |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 270 | assert(!is_inter_block(mbmi)); |
Yue Chen | 49587a7 | 2016-09-28 17:09:47 -0700 | [diff] [blame] | 271 | 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] | 272 | |
Thomas Davies | 15580c5 | 2017-03-09 13:53:42 +0000 | [diff] [blame] | 273 | aom_write_symbol(w, depth, ec_ctx->tx_size_cdf[tx_size_cat][tx_size_ctx], |
Debargha Mukherjee | 6147b1b | 2017-11-08 08:31:09 -0800 | [diff] [blame] | 274 | max_depths + 1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 278 | static int write_skip(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 279 | int segment_id, const MODE_INFO *mi, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 280 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { |
| 281 | return 1; |
| 282 | } else { |
| 283 | const int skip = mi->mbmi.skip; |
Zoe Liu | e646daa | 2017-10-17 15:28:46 -0700 | [diff] [blame] | 284 | const int ctx = av1_get_skip_context(xd); |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 285 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | 61e3e37 | 2017-04-04 16:10:23 +0100 | [diff] [blame] | 286 | aom_write_symbol(w, skip, ec_ctx->skip_cdfs[ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 287 | return skip; |
| 288 | } |
| 289 | } |
| 290 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 291 | #if CONFIG_EXT_SKIP |
| 292 | static int write_skip_mode(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 293 | int segment_id, const MODE_INFO *mi, aom_writer *w) { |
| 294 | if (!cm->skip_mode_flag) return 0; |
| 295 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) { |
| 296 | return 0; |
| 297 | } |
| 298 | const int skip_mode = mi->mbmi.skip_mode; |
| 299 | if (!is_comp_ref_allowed(mi->mbmi.sb_type)) { |
| 300 | assert(!skip_mode); |
| 301 | return 0; |
| 302 | } |
| 303 | const int ctx = av1_get_skip_mode_context(xd); |
| 304 | aom_write_symbol(w, skip_mode, xd->tile_ctx->skip_mode_cdfs[ctx], 2); |
| 305 | return skip_mode; |
| 306 | } |
| 307 | #endif // CONFIG_EXT_SKIP |
| 308 | |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 309 | static void write_is_inter(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 310 | int segment_id, aom_writer *w, const int is_inter) { |
| 311 | if (!segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
Yue Chen | 170678a | 2017-10-17 13:43:10 -0700 | [diff] [blame] | 312 | const int ctx = av1_get_intra_inter_context(xd); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 313 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 314 | aom_write_symbol(w, is_inter, ec_ctx->intra_inter_cdf[ctx], 2); |
Thomas Davies | f6ad935 | 2017-04-19 11:38:06 +0100 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 318 | static void write_motion_mode(const AV1_COMMON *cm, MACROBLOCKD *xd, |
| 319 | const MODE_INFO *mi, aom_writer *w) { |
Sarah Parker | 19234cc | 2017-03-10 16:43:25 -0800 | [diff] [blame] | 320 | const MB_MODE_INFO *mbmi = &mi->mbmi; |
Thomas Davies | d9b5726 | 2017-06-27 17:43:25 +0100 | [diff] [blame] | 321 | |
Sebastien Alaiwan | 4879580 | 2017-10-30 12:07:13 +0100 | [diff] [blame] | 322 | MOTION_MODE last_motion_mode_allowed = |
Sebastien Alaiwan | 1f56b8e | 2017-10-31 17:37:16 +0100 | [diff] [blame] | 323 | motion_mode_allowed(0, cm->global_motion, xd, mi); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 324 | switch (last_motion_mode_allowed) { |
| 325 | case SIMPLE_TRANSLATION: break; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 326 | case OBMC_CAUSAL: |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 327 | aom_write_symbol(w, mbmi->motion_mode == OBMC_CAUSAL, |
| 328 | xd->tile_ctx->obmc_cdf[mbmi->sb_type], 2); |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 329 | break; |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 330 | default: |
Yunqing Wang | 3afbf3f | 2017-11-21 20:16:18 -0800 | [diff] [blame] | 331 | #if CONFIG_EXT_WARPED_MOTION |
| 332 | { |
| 333 | int wm_ctx = 0; |
| 334 | if (mbmi->wm_ctx != -1) { |
| 335 | wm_ctx = 1; |
| 336 | if (mbmi->mode == NEARESTMV) wm_ctx = 2; |
| 337 | } |
| 338 | aom_write_symbol(w, mbmi->motion_mode, |
| 339 | xd->tile_ctx->motion_mode_cdf[wm_ctx][mbmi->sb_type], |
| 340 | MOTION_MODES); |
| 341 | } |
| 342 | #else |
Rupert Swarbrick | cf77276 | 2017-11-03 16:41:07 +0000 | [diff] [blame] | 343 | aom_write_symbol(w, mbmi->motion_mode, |
| 344 | xd->tile_ctx->motion_mode_cdf[mbmi->sb_type], |
| 345 | MOTION_MODES); |
Yunqing Wang | 3afbf3f | 2017-11-21 20:16:18 -0800 | [diff] [blame] | 346 | #endif // CONFIG_EXT_WARPED_MOTION |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 347 | } |
Yue Chen | 69f18e1 | 2016-09-08 14:48:15 -0700 | [diff] [blame] | 348 | } |
Wei-Ting Lin | 85a8f70 | 2017-06-22 13:55:15 -0700 | [diff] [blame] | 349 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 350 | static void write_delta_qindex(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 351 | int delta_qindex, aom_writer *w) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 352 | int sign = delta_qindex < 0; |
| 353 | int abs = sign ? -delta_qindex : delta_qindex; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 354 | int rem_bits, thr; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 355 | int smallval = abs < DELTA_Q_SMALL ? 1 : 0; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 356 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 357 | (void)cm; |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 358 | |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 359 | aom_write_symbol(w, AOMMIN(abs, DELTA_Q_SMALL), ec_ctx->delta_q_cdf, |
| 360 | DELTA_Q_PROBS + 1); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 361 | |
| 362 | if (!smallval) { |
| 363 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 364 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 365 | aom_write_literal(w, rem_bits - 1, 3); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 366 | aom_write_literal(w, abs - thr, rem_bits); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 367 | } |
| 368 | if (abs > 0) { |
| 369 | aom_write_bit(w, sign); |
| 370 | } |
| 371 | } |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 372 | |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 373 | #if CONFIG_EXT_DELTA_Q |
| 374 | static void write_delta_lflevel(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 375 | #if CONFIG_LOOPFILTER_LEVEL |
| 376 | int lf_id, |
| 377 | #endif |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 378 | int delta_lflevel, aom_writer *w) { |
| 379 | int sign = delta_lflevel < 0; |
| 380 | int abs = sign ? -delta_lflevel : delta_lflevel; |
| 381 | int rem_bits, thr; |
| 382 | int smallval = abs < DELTA_LF_SMALL ? 1 : 0; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 383 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 384 | (void)cm; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 385 | |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 386 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 387 | if (cm->delta_lf_multi) { |
| 388 | assert(lf_id >= 0 && lf_id < FRAME_LF_COUNT); |
| 389 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), |
| 390 | ec_ctx->delta_lf_multi_cdf[lf_id], DELTA_LF_PROBS + 1); |
| 391 | } else { |
| 392 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 393 | DELTA_LF_PROBS + 1); |
| 394 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 395 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 396 | aom_write_symbol(w, AOMMIN(abs, DELTA_LF_SMALL), ec_ctx->delta_lf_cdf, |
| 397 | DELTA_LF_PROBS + 1); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 398 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 399 | |
| 400 | if (!smallval) { |
| 401 | rem_bits = OD_ILOG_NZ(abs - 1) - 1; |
| 402 | thr = (1 << rem_bits) + 1; |
Thomas Davies | 3b93e8e | 2017-09-20 09:59:07 +0100 | [diff] [blame] | 403 | aom_write_literal(w, rem_bits - 1, 3); |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 404 | aom_write_literal(w, abs - thr, rem_bits); |
| 405 | } |
| 406 | if (abs > 0) { |
| 407 | aom_write_bit(w, sign); |
| 408 | } |
| 409 | } |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 410 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 411 | |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 412 | static void pack_map_tokens(aom_writer *w, const TOKENEXTRA **tp, int n, |
| 413 | int num) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 414 | const TOKENEXTRA *p = *tp; |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 415 | write_uniform(w, n, p->token); // The first color index. |
| 416 | ++p; |
| 417 | --num; |
| 418 | for (int i = 0; i < num; ++i) { |
Sarah Parker | 0cf4d9f | 2017-08-18 13:09:14 -0700 | [diff] [blame] | 419 | aom_write_symbol(w, p->token, p->color_map_cdf, n); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 420 | ++p; |
| 421 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 422 | *tp = p; |
| 423 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 424 | |
James Zern | 35545dd | 2017-08-25 18:48:02 -0700 | [diff] [blame] | 425 | #if !CONFIG_LV_MAP |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 426 | static INLINE void write_coeff_extra(const aom_cdf_prob *const *cdf, int val, |
| 427 | int n, aom_writer *w) { |
| 428 | // Code the extra bits from LSB to MSB in groups of 4 |
| 429 | int i = 0; |
| 430 | int count = 0; |
| 431 | while (count < n) { |
| 432 | const int size = AOMMIN(n - count, 4); |
| 433 | const int mask = (1 << size) - 1; |
| 434 | aom_write_cdf(w, val & mask, cdf[i++], 1 << size); |
| 435 | val >>= size; |
| 436 | count += size; |
| 437 | } |
| 438 | } |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 439 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 440 | static void pack_mb_tokens(aom_writer *w, const TOKENEXTRA **tp, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 441 | const TOKENEXTRA *const stop, |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 442 | aom_bit_depth_t bit_depth, const TX_SIZE tx_size, |
| 443 | TOKEN_STATS *token_stats) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 444 | const TOKENEXTRA *p = *tp; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 445 | int count = 0; |
Urvang Joshi | 8089315 | 2017-10-27 11:51:14 -0700 | [diff] [blame] | 446 | const int seg_eob = av1_get_max_eob(tx_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 447 | |
| 448 | while (p < stop && p->token != EOSB_TOKEN) { |
Urvang Joshi | 454280d | 2016-10-14 16:51:44 -0700 | [diff] [blame] | 449 | const int token = p->token; |
Yaowu Xu | abe5215 | 2017-10-20 14:37:54 -0700 | [diff] [blame] | 450 | const int8_t eob_val = p->eob_val; |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 451 | if (token == BLOCK_Z_TOKEN) { |
Thomas Davies | 1c05c63 | 2017-03-15 09:58:34 +0000 | [diff] [blame] | 452 | aom_write_symbol(w, 0, *p->head_cdf, HEAD_TOKENS + 1); |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 453 | p++; |
Jingning Han | 0481e8b | 2017-05-27 08:10:17 -0700 | [diff] [blame] | 454 | break; |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 455 | continue; |
| 456 | } |
Yaowu Xu | c8ab0bc | 2017-04-11 21:53:22 -0700 | [diff] [blame] | 457 | |
| 458 | const av1_extra_bit *const extra_bits = &av1_extra_bits[token]; |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 459 | if (eob_val == LAST_EOB) { |
Thomas Davies | 04bdd52 | 2017-03-13 22:34:14 +0000 | [diff] [blame] | 460 | // Just code a flag indicating whether the value is >1 or 1. |
| 461 | aom_write_bit(w, token != ONE_TOKEN); |
| 462 | } else { |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 463 | 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] | 464 | 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] | 465 | } |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 466 | if (token > ONE_TOKEN) { |
Thomas Davies | 1c05c63 | 2017-03-15 09:58:34 +0000 | [diff] [blame] | 467 | aom_write_symbol(w, token - TWO_TOKEN, *p->tail_cdf, TAIL_TOKENS); |
Alex Converse | dc62b09 | 2016-10-11 16:50:56 -0700 | [diff] [blame] | 468 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 469 | |
Alex Converse | d8fdfaa | 2016-07-26 16:27:51 -0700 | [diff] [blame] | 470 | if (extra_bits->base_val) { |
| 471 | const int bit_string = p->extra; |
| 472 | 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] | 473 | const int is_cat6 = (extra_bits->base_val == CAT6_MIN_VAL); |
Thomas Davies | fc1598a | 2017-01-13 17:07:25 +0000 | [diff] [blame] | 474 | // be written excluding |
| 475 | // the sign bit. |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 476 | int skip_bits = is_cat6 |
Alex Converse | da3d94f | 2017-03-15 14:54:29 -0700 | [diff] [blame] | 477 | ? (int)sizeof(av1_cat6_prob) - |
| 478 | av1_get_cat6_extrabits_size(tx_size, bit_depth) |
| 479 | : 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 480 | |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 481 | assert(!(bit_string >> (bit_string_length - skip_bits + 1))); |
| 482 | if (bit_string_length > 0) |
Thomas Davies | 9b8393f | 2017-03-21 11:04:08 +0000 | [diff] [blame] | 483 | write_coeff_extra(extra_bits->cdf, bit_string >> 1, |
| 484 | bit_string_length - skip_bits, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 485 | |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 486 | aom_write_bit_record(w, bit_string & 1, token_stats); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 487 | } |
| 488 | ++p; |
| 489 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 490 | ++count; |
Jingning Han | 24b15c9 | 2017-05-17 15:56:48 -0700 | [diff] [blame] | 491 | if (eob_val == EARLY_EOB || count == seg_eob) break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | *tp = p; |
| 495 | } |
Angie Chiang | c8af611 | 2017-03-16 16:11:22 -0700 | [diff] [blame] | 496 | #endif // !CONFIG_LV_MAP |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 497 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 498 | #if CONFIG_LV_MAP |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 499 | 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] | 500 | const TOKENEXTRA **tp, |
Jingning Han | a228569 | 2017-10-25 15:14:31 -0700 | [diff] [blame] | 501 | const TOKENEXTRA *const tok_end, MACROBLOCKD *xd, |
| 502 | MB_MODE_INFO *mbmi, int plane, |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 503 | BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth, |
| 504 | int block, int blk_row, int blk_col, |
| 505 | TX_SIZE tx_size, TOKEN_STATS *token_stats) { |
| 506 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 507 | const BLOCK_SIZE bsize = txsize_to_bsize[tx_size]; |
| 508 | const int tx_row = blk_row >> (1 - pd->subsampling_y); |
| 509 | const int tx_col = blk_col >> (1 - pd->subsampling_x); |
| 510 | TX_SIZE plane_tx_size; |
| 511 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
| 512 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
| 513 | |
| 514 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 515 | |
| 516 | plane_tx_size = |
| 517 | plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0] |
| 518 | : mbmi->inter_tx_size[tx_row][tx_col]; |
| 519 | |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 520 | if (tx_size == plane_tx_size |
| 521 | #if DISABLE_VARTX_FOR_CHROMA |
| 522 | || pd->subsampling_x || pd->subsampling_y |
| 523 | #endif // DISABLE_VARTX_FOR_CHROMA |
| 524 | ) { |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 525 | TOKEN_STATS tmp_token_stats; |
| 526 | init_token_stats(&tmp_token_stats); |
| 527 | |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 528 | tran_low_t *tcoeff = BLOCK_OFFSET(x->mbmi_ext->tcoeff[plane], block); |
| 529 | uint16_t eob = x->mbmi_ext->eobs[plane][block]; |
| 530 | TXB_CTX txb_ctx = { x->mbmi_ext->txb_skip_ctx[plane][block], |
| 531 | x->mbmi_ext->dc_sign_ctx[plane][block] }; |
Jingning Han | 7eab9ff | 2017-07-06 10:12:54 -0700 | [diff] [blame] | 532 | av1_write_coeffs_txb(cm, xd, w, blk_row, blk_col, block, plane, tx_size, |
| 533 | tcoeff, eob, &txb_ctx); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 534 | #if CONFIG_RD_DEBUG |
| 535 | token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost; |
| 536 | token_stats->cost += tmp_token_stats.cost; |
| 537 | #endif |
| 538 | } else { |
| 539 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 540 | const int bsw = tx_size_wide_unit[sub_txs]; |
| 541 | const int bsh = tx_size_high_unit[sub_txs]; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 542 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 543 | assert(bsw > 0 && bsh > 0); |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 544 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 545 | for (int r = 0; r < tx_size_high_unit[tx_size]; r += bsh) { |
| 546 | for (int c = 0; c < tx_size_wide_unit[tx_size]; c += bsw) { |
| 547 | const int offsetr = blk_row + r; |
| 548 | const int offsetc = blk_col + c; |
| 549 | const int step = bsh * bsw; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 550 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 551 | if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 552 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 553 | pack_txb_tokens(w, cm, x, tp, tok_end, xd, mbmi, plane, plane_bsize, |
| 554 | bit_depth, block, offsetr, offsetc, sub_txs, |
| 555 | token_stats); |
| 556 | block += step; |
| 557 | } |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 558 | } |
| 559 | } |
| 560 | } |
| 561 | #else // CONFIG_LV_MAP |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 562 | static void pack_txb_tokens(aom_writer *w, const TOKENEXTRA **tp, |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 563 | const TOKENEXTRA *const tok_end, MACROBLOCKD *xd, |
| 564 | MB_MODE_INFO *mbmi, int plane, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 565 | BLOCK_SIZE plane_bsize, aom_bit_depth_t bit_depth, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 566 | int block, int blk_row, int blk_col, |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 567 | TX_SIZE tx_size, TOKEN_STATS *token_stats) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 568 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 569 | const BLOCK_SIZE bsize = txsize_to_bsize[tx_size]; |
| 570 | const int tx_row = blk_row >> (1 - pd->subsampling_y); |
| 571 | const int tx_col = blk_col >> (1 - pd->subsampling_x); |
| 572 | TX_SIZE plane_tx_size; |
Jingning Han | f65b870 | 2016-10-31 12:13:20 -0700 | [diff] [blame] | 573 | const int max_blocks_high = max_block_high(xd, plane_bsize, plane); |
| 574 | const int max_blocks_wide = max_block_wide(xd, plane_bsize, plane); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 575 | |
| 576 | if (blk_row >= max_blocks_high || blk_col >= max_blocks_wide) return; |
| 577 | |
Debargha Mukherjee | 2f12340 | 2016-08-30 17:43:38 -0700 | [diff] [blame] | 578 | plane_tx_size = |
| 579 | plane ? uv_txsize_lookup[bsize][mbmi->inter_tx_size[tx_row][tx_col]][0][0] |
| 580 | : mbmi->inter_tx_size[tx_row][tx_col]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 581 | |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 582 | if (tx_size == plane_tx_size |
| 583 | #if DISABLE_VARTX_FOR_CHROMA |
| 584 | || pd->subsampling_x || pd->subsampling_y |
| 585 | #endif // DISABLE_VARTX_FOR_CHROMA |
| 586 | ) { |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 587 | TOKEN_STATS tmp_token_stats; |
| 588 | init_token_stats(&tmp_token_stats); |
Sebastien Alaiwan | 9f001f3 | 2017-11-28 16:32:33 +0100 | [diff] [blame] | 589 | pack_mb_tokens(w, tp, tok_end, bit_depth, tx_size, &tmp_token_stats); |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 590 | #if CONFIG_RD_DEBUG |
| 591 | token_stats->txb_coeff_cost_map[blk_row][blk_col] = tmp_token_stats.cost; |
| 592 | token_stats->cost += tmp_token_stats.cost; |
| 593 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 594 | } else { |
Jingning Han | 1807fdc | 2016-11-08 15:17:58 -0800 | [diff] [blame] | 595 | const TX_SIZE sub_txs = sub_tx_size_map[tx_size]; |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 596 | const int bsw = tx_size_wide_unit[sub_txs]; |
| 597 | const int bsh = tx_size_high_unit[sub_txs]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 598 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 599 | assert(bsw > 0 && bsh > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 600 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 601 | for (int r = 0; r < tx_size_high_unit[tx_size]; r += bsh) { |
| 602 | for (int c = 0; c < tx_size_wide_unit[tx_size]; c += bsw) { |
| 603 | const int offsetr = blk_row + r; |
| 604 | const int offsetc = blk_col + c; |
| 605 | const int step = bsh * bsw; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 606 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 607 | if (offsetr >= max_blocks_high || offsetc >= max_blocks_wide) continue; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 608 | |
Yue Chen | 0797a20 | 2017-10-27 17:24:56 -0700 | [diff] [blame] | 609 | pack_txb_tokens(w, tp, tok_end, xd, mbmi, plane, plane_bsize, bit_depth, |
| 610 | block, offsetr, offsetc, sub_txs, token_stats); |
| 611 | block += step; |
| 612 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 613 | } |
| 614 | } |
| 615 | } |
Jingning Han | 4fe5f67 | 2017-05-19 15:46:07 -0700 | [diff] [blame] | 616 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 617 | |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 618 | #if CONFIG_Q_SEGMENTATION |
| 619 | static int neg_interleave(int x, int ref, int max) { |
| 620 | const int diff = x - ref; |
| 621 | if (!ref) return x; |
| 622 | if (ref >= (max - 1)) return -diff; |
| 623 | if (2 * ref < max) { |
| 624 | if (abs(diff) <= ref) { |
| 625 | if (diff > 0) |
| 626 | return (diff << 1) - 1; |
| 627 | else |
| 628 | return ((-diff) << 1); |
| 629 | } |
| 630 | return x; |
| 631 | } else { |
| 632 | if (abs(diff) < (max - ref)) { |
| 633 | if (diff > 0) |
| 634 | return (diff << 1) - 1; |
| 635 | else |
| 636 | return ((-diff) << 1); |
| 637 | } |
| 638 | return (max - x) - 1; |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | static void write_q_segment_id(const AV1_COMMON *cm, int skip, |
| 643 | const MB_MODE_INFO *const mbmi, aom_writer *w, |
| 644 | const struct segmentation *seg, |
| 645 | struct segmentation_probs *segp, |
| 646 | BLOCK_SIZE bsize, int mi_row, int mi_col) { |
| 647 | int prev_ul = 0; /* Top left segment_id */ |
| 648 | int prev_l = 0; /* Current left segment_id */ |
| 649 | int prev_u = 0; /* Current top segment_id */ |
| 650 | |
| 651 | if (!seg->q_lvls) return; |
| 652 | |
| 653 | MODE_INFO *const mi = cm->mi + mi_row * cm->mi_stride + mi_col; |
| 654 | int tinfo = mi->mbmi.boundary_info; |
| 655 | int above = (!(tinfo & TILE_ABOVE_BOUNDARY)) && ((mi_row - 1) >= 0); |
| 656 | int left = (!(tinfo & TILE_LEFT_BOUNDARY)) && ((mi_col - 1) >= 0); |
| 657 | |
| 658 | if (above && left) |
| 659 | prev_ul = |
| 660 | get_segment_id(cm, cm->q_seg_map, BLOCK_4X4, mi_row - 1, mi_col - 1); |
| 661 | |
| 662 | if (above) |
| 663 | prev_u = get_segment_id(cm, cm->q_seg_map, BLOCK_4X4, mi_row - 1, mi_col); |
| 664 | |
| 665 | if (left) |
| 666 | prev_l = get_segment_id(cm, cm->q_seg_map, BLOCK_4X4, mi_row, mi_col - 1); |
| 667 | |
| 668 | int cdf_num = pick_q_seg_cdf(prev_ul, prev_u, prev_l); |
| 669 | int pred = pick_q_seg_pred(prev_ul, prev_u, prev_l); |
| 670 | |
| 671 | if (skip) { |
| 672 | set_q_segment_id(cm, cm->q_seg_map, mbmi->sb_type, mi_row, mi_col, pred); |
| 673 | return; |
| 674 | } |
| 675 | |
| 676 | int coded_id = neg_interleave(mbmi->q_segment_id, pred, seg->q_lvls); |
| 677 | |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 678 | aom_cdf_prob *pred_cdf = segp->q_seg_cdf[cdf_num]; |
| 679 | aom_write_symbol(w, coded_id, pred_cdf, 8); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 680 | |
| 681 | set_q_segment_id(cm, cm->q_seg_map, bsize, mi_row, mi_col, |
| 682 | mbmi->q_segment_id); |
| 683 | } |
| 684 | #endif |
| 685 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 686 | static void write_segment_id(aom_writer *w, const struct segmentation *seg, |
Thomas | 9ac5508 | 2016-09-23 18:04:17 +0100 | [diff] [blame] | 687 | struct segmentation_probs *segp, int segment_id) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 688 | if (seg->enabled && seg->update_map) { |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 689 | aom_write_symbol(w, segment_id, segp->tree_cdf, MAX_SEGMENTS); |
Nathan E. Egge | f627e58 | 2016-08-19 20:06:51 -0400 | [diff] [blame] | 690 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 691 | } |
| 692 | |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 693 | #define WRITE_REF_BIT(bname, pname) \ |
Thomas Davies | 894cc81 | 2017-06-22 17:51:33 +0100 | [diff] [blame] | 694 | 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] | 695 | #define WRITE_REF_BIT2(bname, pname) \ |
| 696 | aom_write_symbol(w, bname, av1_get_pred_cdf_##pname(xd), 2) |
Thomas Davies | 315f578 | 2017-06-14 15:14:55 +0100 | [diff] [blame] | 697 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 698 | // This function encodes the reference frame |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 699 | static void write_ref_frames(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 700 | aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 701 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 702 | const int is_compound = has_second_ref(mbmi); |
| 703 | const int segment_id = mbmi->segment_id; |
| 704 | |
| 705 | // If segment level coding of this signal is disabled... |
| 706 | // or the segment allows multiple reference frame options |
| 707 | if (segfeature_active(&cm->seg, segment_id, SEG_LVL_REF_FRAME)) { |
| 708 | assert(!is_compound); |
| 709 | assert(mbmi->ref_frame[0] == |
| 710 | get_segdata(&cm->seg, segment_id, SEG_LVL_REF_FRAME)); |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 711 | } |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 712 | #if CONFIG_SEGMENT_GLOBALMV |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 713 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP) || |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 714 | segfeature_active(&cm->seg, segment_id, SEG_LVL_GLOBALMV)) |
David Barker | d92f356 | 2017-10-09 17:46:23 +0100 | [diff] [blame] | 715 | #else |
| 716 | else if (segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP)) |
| 717 | #endif |
| 718 | { |
| 719 | assert(!is_compound); |
| 720 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 721 | } else { |
| 722 | // does the feature use compound prediction or not |
| 723 | // (if not specified at the frame/segment level) |
| 724 | if (cm->reference_mode == REFERENCE_MODE_SELECT) { |
Debargha Mukherjee | 0f248c4 | 2017-09-07 12:40:18 -0700 | [diff] [blame] | 725 | if (is_comp_ref_allowed(mbmi->sb_type)) |
Thomas Davies | 860def6 | 2017-06-14 10:00:03 +0100 | [diff] [blame] | 726 | aom_write_symbol(w, is_compound, av1_get_reference_mode_cdf(cm, xd), 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 727 | } else { |
| 728 | assert((!is_compound) == (cm->reference_mode == SINGLE_REFERENCE)); |
| 729 | } |
| 730 | |
| 731 | if (is_compound) { |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 732 | #if CONFIG_EXT_COMP_REFS |
| 733 | const COMP_REFERENCE_TYPE comp_ref_type = has_uni_comp_refs(mbmi) |
| 734 | ? UNIDIR_COMP_REFERENCE |
| 735 | : BIDIR_COMP_REFERENCE; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 736 | aom_write_symbol(w, comp_ref_type, av1_get_comp_reference_type_cdf(xd), |
| 737 | 2); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 738 | |
| 739 | if (comp_ref_type == UNIDIR_COMP_REFERENCE) { |
| 740 | const int bit = mbmi->ref_frame[0] == BWDREF_FRAME; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 741 | WRITE_REF_BIT2(bit, uni_comp_ref_p); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 742 | |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 743 | if (!bit) { |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 744 | assert(mbmi->ref_frame[0] == LAST_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 745 | const int bit1 = mbmi->ref_frame[1] == LAST3_FRAME || |
| 746 | mbmi->ref_frame[1] == GOLDEN_FRAME; |
| 747 | WRITE_REF_BIT2(bit1, uni_comp_ref_p1); |
| 748 | if (bit1) { |
| 749 | const int bit2 = mbmi->ref_frame[1] == GOLDEN_FRAME; |
| 750 | WRITE_REF_BIT2(bit2, uni_comp_ref_p2); |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 751 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 752 | } else { |
| 753 | assert(mbmi->ref_frame[1] == ALTREF_FRAME); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | return; |
| 757 | } |
Zoe Liu | fcf5fa2 | 2017-06-26 16:00:38 -0700 | [diff] [blame] | 758 | |
| 759 | assert(comp_ref_type == BIDIR_COMP_REFERENCE); |
Zoe Liu | c082bbc | 2017-05-17 13:31:37 -0700 | [diff] [blame] | 760 | #endif // CONFIG_EXT_COMP_REFS |
| 761 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 762 | const int bit = (mbmi->ref_frame[0] == GOLDEN_FRAME || |
| 763 | mbmi->ref_frame[0] == LAST3_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 764 | WRITE_REF_BIT(bit, comp_ref_p); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 765 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 766 | if (!bit) { |
Zoe Liu | 8781828 | 2017-11-26 17:09:59 -0800 | [diff] [blame] | 767 | const int bit1 = mbmi->ref_frame[0] == LAST2_FRAME; |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 768 | WRITE_REF_BIT(bit1, comp_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 769 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 770 | const int bit2 = mbmi->ref_frame[0] == GOLDEN_FRAME; |
| 771 | WRITE_REF_BIT(bit2, comp_ref_p2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 772 | } |
Zoe Liu | 7b1ec7a | 2017-05-24 22:28:24 -0700 | [diff] [blame] | 773 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 774 | const int bit_bwd = mbmi->ref_frame[1] == ALTREF_FRAME; |
| 775 | WRITE_REF_BIT(bit_bwd, comp_bwdref_p); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 776 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 777 | if (!bit_bwd) { |
| 778 | WRITE_REF_BIT(mbmi->ref_frame[1] == ALTREF2_FRAME, comp_bwdref_p1); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 779 | } |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 780 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 781 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 782 | const int bit0 = (mbmi->ref_frame[0] <= ALTREF_FRAME && |
| 783 | mbmi->ref_frame[0] >= BWDREF_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 784 | WRITE_REF_BIT(bit0, single_ref_p1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 785 | |
| 786 | if (bit0) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 787 | const int bit1 = mbmi->ref_frame[0] == ALTREF_FRAME; |
| 788 | WRITE_REF_BIT(bit1, single_ref_p2); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 789 | |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 790 | if (!bit1) { |
| 791 | WRITE_REF_BIT(mbmi->ref_frame[0] == ALTREF2_FRAME, single_ref_p6); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 792 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 793 | } else { |
| 794 | const int bit2 = (mbmi->ref_frame[0] == LAST3_FRAME || |
| 795 | mbmi->ref_frame[0] == GOLDEN_FRAME); |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 796 | WRITE_REF_BIT(bit2, single_ref_p3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 797 | |
| 798 | if (!bit2) { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 799 | const int bit3 = mbmi->ref_frame[0] != LAST_FRAME; |
| 800 | WRITE_REF_BIT(bit3, single_ref_p4); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 801 | } else { |
Sebastien Alaiwan | 4be6cb3 | 2017-11-02 18:04:11 +0100 | [diff] [blame] | 802 | const int bit4 = mbmi->ref_frame[0] != LAST3_FRAME; |
| 803 | WRITE_REF_BIT(bit4, single_ref_p5); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 804 | } |
| 805 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 806 | } |
| 807 | } |
| 808 | } |
| 809 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 810 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 811 | static void write_filter_intra_mode_info(const MACROBLOCKD *xd, |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 812 | const MB_MODE_INFO *const mbmi, |
| 813 | aom_writer *w) { |
Yue Chen | 95e13e2 | 2017-11-01 23:56:35 -0700 | [diff] [blame] | 814 | if (mbmi->mode == DC_PRED && mbmi->palette_mode_info.palette_size[0] == 0 && |
| 815 | av1_filter_intra_allowed_txsize(mbmi->tx_size)) { |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 816 | aom_write_symbol(w, mbmi->filter_intra_mode_info.use_filter_intra_mode[0], |
| 817 | xd->tile_ctx->filter_intra_cdfs[mbmi->tx_size], 2); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 818 | if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0]) { |
| 819 | const FILTER_INTRA_MODE mode = |
| 820 | mbmi->filter_intra_mode_info.filter_intra_mode[0]; |
Yue Chen | 63ce36f | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 821 | aom_write_symbol(w, mode, xd->tile_ctx->filter_intra_mode_cdf[0], |
| 822 | FILTER_INTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 823 | } |
| 824 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 825 | } |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 826 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 827 | |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 828 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 829 | static void write_intra_angle_info(const MACROBLOCKD *xd, |
| 830 | FRAME_CONTEXT *const ec_ctx, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 831 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 832 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Joe Young | 830d4ce | 2017-05-30 17:48:13 -0700 | [diff] [blame] | 833 | if (!av1_use_angle_delta(bsize)) return; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 834 | |
hui su | 45dc597 | 2016-12-08 17:42:50 -0800 | [diff] [blame] | 835 | if (av1_is_directional_mode(mbmi->mode, bsize)) { |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 836 | #if CONFIG_EXT_INTRA_MOD |
| 837 | aom_write_symbol(w, mbmi->angle_delta[0] + MAX_ANGLE_DELTA, |
| 838 | ec_ctx->angle_delta_cdf[mbmi->mode - V_PRED], |
| 839 | 2 * MAX_ANGLE_DELTA + 1); |
| 840 | #else |
| 841 | (void)ec_ctx; |
hui su | 0a6731f | 2017-04-26 15:23:47 -0700 | [diff] [blame] | 842 | write_uniform(w, 2 * MAX_ANGLE_DELTA + 1, |
| 843 | MAX_ANGLE_DELTA + mbmi->angle_delta[0]); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 844 | #endif // CONFIG_EXT_INTRA_MOD |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 845 | } |
| 846 | |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 847 | if (av1_is_directional_mode(get_uv_mode(mbmi->uv_mode), bsize)) { |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 848 | #if CONFIG_EXT_INTRA_MOD |
| 849 | aom_write_symbol(w, mbmi->angle_delta[1] + MAX_ANGLE_DELTA, |
| 850 | ec_ctx->angle_delta_cdf[mbmi->uv_mode - V_PRED], |
| 851 | 2 * MAX_ANGLE_DELTA + 1); |
| 852 | #else |
hui su | 0a6731f | 2017-04-26 15:23:47 -0700 | [diff] [blame] | 853 | write_uniform(w, 2 * MAX_ANGLE_DELTA + 1, |
| 854 | MAX_ANGLE_DELTA + mbmi->angle_delta[1]); |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 855 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 856 | } |
| 857 | } |
| 858 | #endif // CONFIG_EXT_INTRA |
| 859 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 860 | static void write_mb_interp_filter(AV1_COMP *cpi, const MACROBLOCKD *xd, |
| 861 | aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 862 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 863 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
Thomas Davies | 77c7c40 | 2017-01-11 17:58:54 +0000 | [diff] [blame] | 864 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 865 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 866 | if (!av1_is_interp_needed(xd)) { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 867 | assert(mbmi->interp_filters == |
| 868 | av1_broadcast_interp_filter( |
| 869 | av1_unswitchable_filter(cm->interp_filter))); |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 870 | return; |
| 871 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 872 | if (cm->interp_filter == SWITCHABLE) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 873 | #if CONFIG_DUAL_FILTER |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 874 | int dir; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 875 | for (dir = 0; dir < 2; ++dir) { |
| 876 | if (has_subpel_mv_component(xd->mi[0], xd, dir) || |
| 877 | (mbmi->ref_frame[1] > INTRA_FRAME && |
| 878 | has_subpel_mv_component(xd->mi[0], xd, dir + 2))) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 879 | const int ctx = av1_get_pred_context_switchable_interp(xd, dir); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 880 | InterpFilter filter = |
| 881 | av1_extract_interp_filter(mbmi->interp_filters, dir); |
| 882 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
Angie Chiang | b9b42a0 | 2017-01-20 12:47:36 -0800 | [diff] [blame] | 883 | SWITCHABLE_FILTERS); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 884 | ++cpi->interp_filter_selected[0][filter]; |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 885 | } else { |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 886 | assert(av1_extract_interp_filter(mbmi->interp_filters, dir) == |
| 887 | EIGHTTAP_REGULAR); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 888 | } |
| 889 | } |
| 890 | #else |
| 891 | { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 892 | const int ctx = av1_get_pred_context_switchable_interp(xd); |
Rupert Swarbrick | 27e9029 | 2017-09-28 17:46:50 +0100 | [diff] [blame] | 893 | InterpFilter filter = av1_extract_interp_filter(mbmi->interp_filters, 0); |
| 894 | aom_write_symbol(w, filter, ec_ctx->switchable_interp_cdf[ctx], |
| 895 | SWITCHABLE_FILTERS); |
| 896 | ++cpi->interp_filter_selected[0][filter]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 897 | } |
Jingning Han | 203b1d3 | 2017-01-12 16:00:13 -0800 | [diff] [blame] | 898 | #endif // CONFIG_DUAL_FILTER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 899 | } |
| 900 | } |
| 901 | |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 902 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 903 | // Transmit color values with delta encoding. Write the first value as |
| 904 | // literal, and the deltas between each value and the previous one. "min_val" is |
| 905 | // the smallest possible value of the deltas. |
| 906 | static void delta_encode_palette_colors(const int *colors, int num, |
| 907 | int bit_depth, int min_val, |
| 908 | aom_writer *w) { |
| 909 | if (num <= 0) return; |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 910 | assert(colors[0] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 911 | aom_write_literal(w, colors[0], bit_depth); |
| 912 | if (num == 1) return; |
| 913 | int max_delta = 0; |
| 914 | int deltas[PALETTE_MAX_SIZE]; |
| 915 | memset(deltas, 0, sizeof(deltas)); |
| 916 | for (int i = 1; i < num; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 917 | assert(colors[i] < (1 << bit_depth)); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 918 | const int delta = colors[i] - colors[i - 1]; |
| 919 | deltas[i - 1] = delta; |
| 920 | assert(delta >= min_val); |
| 921 | if (delta > max_delta) max_delta = delta; |
| 922 | } |
| 923 | const int min_bits = bit_depth - 3; |
| 924 | 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] | 925 | assert(bits <= bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 926 | int range = (1 << bit_depth) - colors[0] - min_val; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 927 | aom_write_literal(w, bits - min_bits, 2); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 928 | for (int i = 0; i < num - 1; ++i) { |
| 929 | aom_write_literal(w, deltas[i] - min_val, bits); |
| 930 | range -= deltas[i]; |
| 931 | bits = AOMMIN(bits, av1_ceil_log2(range)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 932 | } |
| 933 | } |
| 934 | |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 935 | // Transmit luma palette color values. First signal if each color in the color |
| 936 | // cache is used. Those colors that are not in the cache are transmitted with |
| 937 | // delta encoding. |
| 938 | static void write_palette_colors_y(const MACROBLOCKD *const xd, |
| 939 | const PALETTE_MODE_INFO *const pmi, |
| 940 | int bit_depth, aom_writer *w) { |
| 941 | const int n = pmi->palette_size[0]; |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 942 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 943 | const int n_cache = av1_get_palette_cache(xd, 0, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 944 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 945 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 946 | const int n_out_cache = |
| 947 | av1_index_color_cache(color_cache, n_cache, pmi->palette_colors, n, |
| 948 | cache_color_found, out_cache_colors); |
| 949 | int n_in_cache = 0; |
| 950 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 951 | const int found = cache_color_found[i]; |
| 952 | aom_write_bit(w, found); |
| 953 | n_in_cache += found; |
| 954 | } |
| 955 | assert(n_in_cache + n_out_cache == n); |
| 956 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 1, w); |
| 957 | } |
| 958 | |
| 959 | // Write chroma palette color values. U channel is handled similarly to the luma |
| 960 | // channel. For v channel, either use delta encoding or transmit raw values |
| 961 | // directly, whichever costs less. |
| 962 | static void write_palette_colors_uv(const MACROBLOCKD *const xd, |
| 963 | const PALETTE_MODE_INFO *const pmi, |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 964 | int bit_depth, aom_writer *w) { |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 965 | const int n = pmi->palette_size[1]; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 966 | const uint16_t *colors_u = pmi->palette_colors + PALETTE_MAX_SIZE; |
| 967 | const uint16_t *colors_v = pmi->palette_colors + 2 * PALETTE_MAX_SIZE; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 968 | // U channel colors. |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 969 | uint16_t color_cache[2 * PALETTE_MAX_SIZE]; |
Hui Su | 3748bc2 | 2017-08-23 11:30:41 -0700 | [diff] [blame] | 970 | const int n_cache = av1_get_palette_cache(xd, 1, color_cache); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 971 | int out_cache_colors[PALETTE_MAX_SIZE]; |
| 972 | uint8_t cache_color_found[2 * PALETTE_MAX_SIZE]; |
| 973 | const int n_out_cache = av1_index_color_cache( |
| 974 | color_cache, n_cache, colors_u, n, cache_color_found, out_cache_colors); |
| 975 | int n_in_cache = 0; |
| 976 | for (int i = 0; i < n_cache && n_in_cache < n; ++i) { |
| 977 | const int found = cache_color_found[i]; |
| 978 | aom_write_bit(w, found); |
| 979 | n_in_cache += found; |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 980 | } |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 981 | delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 0, w); |
| 982 | |
| 983 | // 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] | 984 | const int max_val = 1 << bit_depth; |
| 985 | int zero_count = 0, min_bits_v = 0; |
| 986 | int bits_v = |
| 987 | av1_get_palette_delta_bits_v(pmi, bit_depth, &zero_count, &min_bits_v); |
| 988 | const int rate_using_delta = |
| 989 | 2 + bit_depth + (bits_v + 1) * (n - 1) - zero_count; |
| 990 | const int rate_using_raw = bit_depth * n; |
| 991 | if (rate_using_delta < rate_using_raw) { // delta encoding |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 992 | assert(colors_v[0] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 993 | aom_write_bit(w, 1); |
| 994 | aom_write_literal(w, bits_v - min_bits_v, 2); |
| 995 | aom_write_literal(w, colors_v[0], bit_depth); |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 996 | for (int i = 1; i < n; ++i) { |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 997 | assert(colors_v[i] < (1 << bit_depth)); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 998 | if (colors_v[i] == colors_v[i - 1]) { // No need to signal sign bit. |
| 999 | aom_write_literal(w, 0, bits_v); |
| 1000 | continue; |
| 1001 | } |
| 1002 | const int delta = abs((int)colors_v[i] - colors_v[i - 1]); |
| 1003 | const int sign_bit = colors_v[i] < colors_v[i - 1]; |
| 1004 | if (delta <= max_val - delta) { |
| 1005 | aom_write_literal(w, delta, bits_v); |
| 1006 | aom_write_bit(w, sign_bit); |
| 1007 | } else { |
| 1008 | aom_write_literal(w, max_val - delta, bits_v); |
| 1009 | aom_write_bit(w, !sign_bit); |
| 1010 | } |
| 1011 | } |
| 1012 | } else { // Transmit raw values. |
| 1013 | aom_write_bit(w, 0); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1014 | for (int i = 0; i < n; ++i) { |
| 1015 | assert(colors_v[i] < (1 << bit_depth)); |
| 1016 | aom_write_literal(w, colors_v[i], bit_depth); |
| 1017 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1018 | } |
| 1019 | } |
| 1020 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
| 1021 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1022 | static void write_palette_mode_info(const AV1_COMMON *cm, const MACROBLOCKD *xd, |
| 1023 | const MODE_INFO *const mi, aom_writer *w) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1024 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1025 | const MODE_INFO *const above_mi = xd->above_mi; |
| 1026 | const MODE_INFO *const left_mi = xd->left_mi; |
| 1027 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Hui Su | 473cf89 | 2017-11-08 18:14:31 -0800 | [diff] [blame] | 1028 | assert(av1_allow_palette(cm->allow_screen_content_tools, bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1029 | const PALETTE_MODE_INFO *const pmi = &mbmi->palette_mode_info; |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1030 | const int block_palette_idx = bsize - BLOCK_8X8; |
| 1031 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1032 | if (mbmi->mode == DC_PRED) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1033 | const int n = pmi->palette_size[0]; |
| 1034 | int palette_y_mode_ctx = 0; |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1035 | if (above_mi) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1036 | palette_y_mode_ctx += |
| 1037 | (above_mi->mbmi.palette_mode_info.palette_size[0] > 0); |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1038 | } |
| 1039 | if (left_mi) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1040 | palette_y_mode_ctx += |
| 1041 | (left_mi->mbmi.palette_mode_info.palette_size[0] > 0); |
hui su | 40b9e7f | 2017-07-13 18:15:56 -0700 | [diff] [blame] | 1042 | } |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1043 | aom_write_symbol( |
| 1044 | w, n > 0, |
| 1045 | xd->tile_ctx->palette_y_mode_cdf[block_palette_idx][palette_y_mode_ctx], |
| 1046 | 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1047 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1048 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1049 | xd->tile_ctx->palette_y_size_cdf[block_palette_idx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1050 | PALETTE_SIZES); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1051 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1052 | write_palette_colors_y(xd, pmi, cm->bit_depth, w); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1053 | #else |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1054 | for (int i = 0; i < n; ++i) { |
| 1055 | assert(pmi->palette_colors[i] < (1 << cm->bit_depth)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1056 | aom_write_literal(w, pmi->palette_colors[i], cm->bit_depth); |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1057 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1058 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1059 | } |
| 1060 | } |
| 1061 | |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1062 | const int uv_dc_pred = |
| 1063 | #if CONFIG_MONO_VIDEO |
| 1064 | !cm->seq_params.monochrome && |
| 1065 | #endif |
| 1066 | mbmi->uv_mode == UV_DC_PRED; |
| 1067 | if (uv_dc_pred) { |
Urvang Joshi | 23a6111 | 2017-01-30 14:59:27 -0800 | [diff] [blame] | 1068 | const int n = pmi->palette_size[1]; |
| 1069 | const int palette_uv_mode_ctx = (pmi->palette_size[0] > 0); |
Thomas Davies | 59f9231 | 2017-08-23 00:33:12 +0100 | [diff] [blame] | 1070 | aom_write_symbol(w, n > 0, |
| 1071 | xd->tile_ctx->palette_uv_mode_cdf[palette_uv_mode_ctx], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1072 | if (n > 0) { |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1073 | aom_write_symbol(w, n - PALETTE_MIN_SIZE, |
Rupert Swarbrick | 6f9cd94 | 2017-08-02 15:57:18 +0100 | [diff] [blame] | 1074 | xd->tile_ctx->palette_uv_size_cdf[block_palette_idx], |
Thomas Davies | ce7272d | 2017-07-04 16:11:08 +0100 | [diff] [blame] | 1075 | PALETTE_SIZES); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1076 | #if CONFIG_PALETTE_DELTA_ENCODING |
hui su | 33567b2 | 2017-04-30 16:40:19 -0700 | [diff] [blame] | 1077 | write_palette_colors_uv(xd, pmi, cm->bit_depth, w); |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1078 | #else |
hui su | fa4ff85 | 2017-05-15 12:20:50 -0700 | [diff] [blame] | 1079 | for (int i = 0; i < n; ++i) { |
| 1080 | assert(pmi->palette_colors[PALETTE_MAX_SIZE + i] < |
| 1081 | (1 << cm->bit_depth)); |
| 1082 | assert(pmi->palette_colors[2 * PALETTE_MAX_SIZE + i] < |
| 1083 | (1 << cm->bit_depth)); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1084 | aom_write_literal(w, pmi->palette_colors[PALETTE_MAX_SIZE + i], |
| 1085 | cm->bit_depth); |
| 1086 | aom_write_literal(w, pmi->palette_colors[2 * PALETTE_MAX_SIZE + i], |
| 1087 | cm->bit_depth); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1088 | } |
hui su | d13c24a | 2017-04-07 16:13:07 -0700 | [diff] [blame] | 1089 | #endif // CONFIG_PALETTE_DELTA_ENCODING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1090 | } |
| 1091 | } |
| 1092 | } |
| 1093 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1094 | 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] | 1095 | #if CONFIG_TXK_SEL |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 1096 | int blk_row, int blk_col, int block, int plane, |
| 1097 | TX_SIZE tx_size, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1098 | #endif |
| 1099 | aom_writer *w) { |
| 1100 | MB_MODE_INFO *mbmi = &xd->mi[0]->mbmi; |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1101 | const int is_inter = is_inter_block(mbmi); |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 1102 | #if !CONFIG_TXK_SEL |
Debargha Mukherjee | 5577bd1 | 2017-11-20 16:04:26 -0800 | [diff] [blame] | 1103 | const TX_SIZE mtx_size = |
| 1104 | get_max_rect_tx_size(xd->mi[0]->mbmi.sb_type, is_inter); |
Sarah Parker | 90024e4 | 2017-10-06 16:50:47 -0700 | [diff] [blame] | 1105 | const TX_SIZE tx_size = |
Debargha Mukherjee | 5577bd1 | 2017-11-20 16:04:26 -0800 | [diff] [blame] | 1106 | is_inter ? AOMMAX(sub_tx_size_map[mtx_size], mbmi->min_tx_size) |
Sarah Parker | 90024e4 | 2017-10-06 16:50:47 -0700 | [diff] [blame] | 1107 | : mbmi->tx_size; |
Jingning Han | 243b66b | 2017-06-23 12:11:47 -0700 | [diff] [blame] | 1108 | #endif // !CONFIG_TXK_SEL |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 1109 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Thomas Davies | cef0962 | 2017-01-11 17:27:12 +0000 | [diff] [blame] | 1110 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1111 | #if !CONFIG_TXK_SEL |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1112 | TX_TYPE tx_type = mbmi->tx_type; |
| 1113 | #else |
| 1114 | // Only y plane's tx_type is transmitted |
Angie Chiang | 39b06eb | 2017-04-14 09:52:29 -0700 | [diff] [blame] | 1115 | if (plane > 0) return; |
| 1116 | PLANE_TYPE plane_type = get_plane_type(plane); |
Jingning Han | 19b5c8f | 2017-07-06 15:10:12 -0700 | [diff] [blame] | 1117 | TX_TYPE tx_type = |
| 1118 | 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] | 1119 | #endif |
| 1120 | |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1121 | if (!FIXED_TX_TYPE) { |
Urvang Joshi | feb925f | 2016-12-05 10:37:29 -0800 | [diff] [blame] | 1122 | const TX_SIZE square_tx_size = txsize_sqr_map[tx_size]; |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1123 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 1124 | if (get_ext_tx_types(tx_size, bsize, is_inter, cm->reduced_tx_set_used) > |
| 1125 | 1 && |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 1126 | ((!cm->seg.enabled && cm->base_qindex > 0) || |
| 1127 | (cm->seg.enabled && xd->qindex[mbmi->segment_id] > 0)) && |
Jingning Han | 641b1ad | 2016-11-04 09:58:36 -0700 | [diff] [blame] | 1128 | !mbmi->skip && |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1129 | !segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) { |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1130 | const TxSetType tx_set_type = get_ext_tx_set_type( |
| 1131 | tx_size, bsize, is_inter, cm->reduced_tx_set_used); |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 1132 | const int eset = |
| 1133 | 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] | 1134 | // eset == 0 should correspond to a set with only DCT_DCT and there |
| 1135 | // is no need to send the tx_type |
| 1136 | assert(eset > 0); |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1137 | assert(av1_ext_tx_used[tx_set_type][tx_type]); |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1138 | if (is_inter) { |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1139 | 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] | 1140 | ec_ctx->inter_ext_tx_cdf[eset][square_tx_size], |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1141 | av1_num_ext_tx_set[tx_set_type]); |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1142 | } else if (ALLOW_INTRA_EXT_TX) { |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1143 | #if CONFIG_FILTER_INTRA |
| 1144 | PREDICTION_MODE intra_dir; |
| 1145 | if (mbmi->filter_intra_mode_info.use_filter_intra_mode[0]) |
| 1146 | intra_dir = fimode_to_intradir[mbmi->filter_intra_mode_info |
| 1147 | .filter_intra_mode[0]]; |
| 1148 | else |
| 1149 | intra_dir = mbmi->mode; |
| 1150 | aom_write_symbol( |
| 1151 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
| 1152 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][intra_dir], |
| 1153 | av1_num_ext_tx_set[tx_set_type]); |
| 1154 | #else |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1155 | aom_write_symbol( |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1156 | w, av1_ext_tx_ind[tx_set_type][tx_type], |
Sarah Parker | 784596d | 2017-06-23 08:41:26 -0700 | [diff] [blame] | 1157 | ec_ctx->intra_ext_tx_cdf[eset][square_tx_size][mbmi->mode], |
Hui Su | ddbcde2 | 2017-09-18 17:22:02 -0700 | [diff] [blame] | 1158 | av1_num_ext_tx_set[tx_set_type]); |
Yue Chen | 57b8ff6 | 2017-10-10 23:37:31 -0700 | [diff] [blame] | 1159 | #endif |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1160 | } |
Lester Lu | 432012f | 2017-08-17 14:39:29 -0700 | [diff] [blame] | 1161 | } |
Jingning Han | 2a4da94 | 2016-11-03 18:31:30 -0700 | [diff] [blame] | 1162 | } |
| 1163 | } |
| 1164 | |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1165 | static void write_intra_mode(FRAME_CONTEXT *frame_ctx, BLOCK_SIZE bsize, |
| 1166 | PREDICTION_MODE mode, aom_writer *w) { |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 1167 | 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] | 1168 | INTRA_MODES); |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1169 | } |
| 1170 | |
| 1171 | static void write_intra_uv_mode(FRAME_CONTEXT *frame_ctx, |
Luc Trudeau | d6d9eee | 2017-07-12 12:36:50 -0400 | [diff] [blame] | 1172 | UV_PREDICTION_MODE uv_mode, |
| 1173 | PREDICTION_MODE y_mode, aom_writer *w) { |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1174 | #if !CONFIG_CFL |
Hui Su | 814f41e | 2017-10-02 12:21:24 -0700 | [diff] [blame] | 1175 | uv_mode = get_uv_mode(uv_mode); |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1176 | #endif |
| 1177 | 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] | 1178 | } |
| 1179 | |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1180 | #if CONFIG_CFL |
David Michael Barr | f6eaa15 | 2017-07-19 19:42:28 +0900 | [diff] [blame] | 1181 | static void write_cfl_alphas(FRAME_CONTEXT *const ec_ctx, int idx, |
| 1182 | int joint_sign, aom_writer *w) { |
| 1183 | aom_write_symbol(w, joint_sign, ec_ctx->cfl_sign_cdf, CFL_JOINT_SIGNS); |
| 1184 | // Magnitudes are only signaled for nonzero codes. |
| 1185 | if (CFL_SIGN_U(joint_sign) != CFL_SIGN_ZERO) { |
| 1186 | aom_cdf_prob *cdf_u = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_U(joint_sign)]; |
| 1187 | aom_write_symbol(w, CFL_IDX_U(idx), cdf_u, CFL_ALPHABET_SIZE); |
| 1188 | } |
| 1189 | if (CFL_SIGN_V(joint_sign) != CFL_SIGN_ZERO) { |
| 1190 | aom_cdf_prob *cdf_v = ec_ctx->cfl_alpha_cdf[CFL_CONTEXT_V(joint_sign)]; |
| 1191 | aom_write_symbol(w, CFL_IDX_V(idx), cdf_v, CFL_ALPHABET_SIZE); |
| 1192 | } |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1193 | } |
| 1194 | #endif |
| 1195 | |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1196 | static void write_cdef(AV1_COMMON *cm, aom_writer *w, int skip, int mi_col, |
| 1197 | int mi_row) { |
| 1198 | if (cm->all_lossless) return; |
| 1199 | |
| 1200 | const int m = ~((1 << (6 - MI_SIZE_LOG2)) - 1); |
| 1201 | const MB_MODE_INFO *mbmi = |
| 1202 | &cm->mi_grid_visible[(mi_row & m) * cm->mi_stride + (mi_col & m)]->mbmi; |
| 1203 | // Initialise when at top left part of the superblock |
| 1204 | if (!(mi_row & (cm->mib_size - 1)) && |
| 1205 | !(mi_col & (cm->mib_size - 1))) { // Top left? |
| 1206 | #if CONFIG_EXT_PARTITION |
| 1207 | cm->cdef_preset[0] = cm->cdef_preset[1] = cm->cdef_preset[2] = |
| 1208 | cm->cdef_preset[3] = -1; |
| 1209 | #else |
| 1210 | cm->cdef_preset = -1; |
| 1211 | #endif |
| 1212 | } |
| 1213 | |
| 1214 | // Emit CDEF param at first non-skip coding block |
| 1215 | #if CONFIG_EXT_PARTITION |
| 1216 | const int mask = 1 << (6 - MI_SIZE_LOG2); |
| 1217 | const int index = cm->sb_size == BLOCK_128X128 |
| 1218 | ? !!(mi_col & mask) + 2 * !!(mi_row & mask) |
| 1219 | : 0; |
| 1220 | if (cm->cdef_preset[index] == -1 && !skip) { |
| 1221 | aom_write_literal(w, mbmi->cdef_strength, cm->cdef_bits); |
| 1222 | cm->cdef_preset[index] = mbmi->cdef_strength; |
| 1223 | } |
| 1224 | #else |
| 1225 | if (cm->cdef_preset == -1 && !skip) { |
| 1226 | aom_write_literal(w, mbmi->cdef_strength, cm->cdef_bits); |
| 1227 | cm->cdef_preset = mbmi->cdef_strength; |
| 1228 | } |
| 1229 | #endif |
| 1230 | } |
| 1231 | |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1232 | 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] | 1233 | const int mi_col, aom_writer *w) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1234 | AV1_COMMON *const cm = &cpi->common; |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1235 | MACROBLOCK *const x = &cpi->td.mb; |
| 1236 | MACROBLOCKD *const xd = &x->e_mbd; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1237 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1238 | const MODE_INFO *mi = xd->mi[0]; |
Thomas Davies | 2452329 | 2017-01-11 16:56:47 +0000 | [diff] [blame] | 1239 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1240 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1241 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1242 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1243 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
| 1244 | const PREDICTION_MODE mode = mbmi->mode; |
| 1245 | const int segment_id = mbmi->segment_id; |
| 1246 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1247 | const int allow_hp = cm->allow_high_precision_mv; |
| 1248 | const int is_inter = is_inter_block(mbmi); |
| 1249 | const int is_compound = has_second_ref(mbmi); |
| 1250 | int skip, ref; |
David Barker | 45390c1 | 2017-02-20 14:44:40 +0000 | [diff] [blame] | 1251 | (void)mi_row; |
| 1252 | (void)mi_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1253 | |
| 1254 | if (seg->update_map) { |
| 1255 | if (seg->temporal_update) { |
| 1256 | const int pred_flag = mbmi->seg_id_predicted; |
Thomas Davies | 0002135 | 2017-07-11 16:07:55 +0100 | [diff] [blame] | 1257 | aom_cdf_prob *pred_cdf = av1_get_pred_cdf_seg_id(segp, xd); |
| 1258 | aom_write_symbol(w, pred_flag, pred_cdf, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1259 | if (!pred_flag) write_segment_id(w, seg, segp, segment_id); |
| 1260 | } else { |
| 1261 | write_segment_id(w, seg, segp, segment_id); |
| 1262 | } |
| 1263 | } |
| 1264 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1265 | #if CONFIG_EXT_SKIP |
| 1266 | write_skip_mode(cm, xd, segment_id, mi, w); |
| 1267 | |
| 1268 | if (mbmi->skip_mode) { |
| 1269 | skip = mbmi->skip; |
| 1270 | assert(skip); |
| 1271 | } else { |
| 1272 | #endif // CONFIG_EXT_SKIP |
| 1273 | skip = write_skip(cm, xd, segment_id, mi, w); |
| 1274 | #if CONFIG_EXT_SKIP |
| 1275 | } |
| 1276 | #endif // CONFIG_EXT_SKIP |
| 1277 | |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 1278 | #if CONFIG_Q_SEGMENTATION |
| 1279 | write_q_segment_id(cm, skip, mbmi, w, seg, segp, bsize, mi_row, mi_col); |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1280 | #endif // CONFIG_Q_SEGMENTATION |
| 1281 | |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1282 | write_cdef(cm, w, skip, mi_col, mi_row); |
| 1283 | |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1284 | if (cm->delta_q_present_flag) { |
Pavel Frolov | 1dbe92d | 2017-11-02 01:49:19 +0300 | [diff] [blame] | 1285 | int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) && |
| 1286 | ((mi_col & (cm->mib_size - 1)) == 0); |
Pavel Frolov | bfa2b8c | 2017-11-01 20:08:44 +0300 | [diff] [blame] | 1287 | if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1288 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1289 | int reduced_delta_qindex = |
| 1290 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1291 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1292 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1293 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1294 | #if CONFIG_LOOPFILTER_LEVEL |
| 1295 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1296 | if (cm->delta_lf_multi) { |
| 1297 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) { |
| 1298 | int reduced_delta_lflevel = |
| 1299 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1300 | cm->delta_lf_res; |
| 1301 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1302 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1303 | } |
| 1304 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1305 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1306 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1307 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1308 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1309 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1310 | } |
| 1311 | } |
| 1312 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1313 | if (cm->delta_lf_present_flag) { |
| 1314 | int reduced_delta_lflevel = |
| 1315 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1316 | cm->delta_lf_res; |
| 1317 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1318 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1319 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1320 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1321 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1322 | } |
| 1323 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1324 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1325 | #if CONFIG_EXT_SKIP |
| 1326 | if (!mbmi->skip_mode) |
| 1327 | #endif // CONFIG_EXT_SKIP |
| 1328 | write_is_inter(cm, xd, mbmi->segment_id, w, is_inter); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1329 | |
Debargha Mukherjee | 4def76a | 2017-10-19 13:38:35 -0700 | [diff] [blame] | 1330 | if (cm->tx_mode == TX_MODE_SELECT && block_signals_txsize(bsize) && |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1331 | !(is_inter && skip) && !xd->lossless[segment_id]) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1332 | if (is_inter) { // This implies skip flag is 0. |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1333 | const TX_SIZE max_tx_size = get_vartx_max_txsize(xd, bsize, 0); |
Jingning Han | f64062f | 2016-11-02 16:22:18 -0700 | [diff] [blame] | 1334 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1335 | const int bw = tx_size_wide_unit[max_tx_size]; |
Jingning Han | 9ca05b7 | 2017-01-03 14:41:36 -0800 | [diff] [blame] | 1336 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1337 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1338 | int idx, idy; |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 1339 | for (idy = 0; idy < height; idy += bh) |
| 1340 | for (idx = 0; idx < width; idx += bw) |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1341 | write_tx_size_vartx(cm, xd, mbmi, max_tx_size, 0, idy, idx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1342 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1343 | 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] | 1344 | write_selected_tx_size(cm, xd, w); |
| 1345 | } |
| 1346 | } else { |
Jingning Han | 1b1dc93 | 2016-11-09 10:55:30 -0800 | [diff] [blame] | 1347 | 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] | 1348 | } |
| 1349 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1350 | #if CONFIG_EXT_SKIP |
| 1351 | if (mbmi->skip_mode) return; |
| 1352 | #endif // CONFIG_EXT_SKIP |
| 1353 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1354 | if (!is_inter) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1355 | write_intra_mode(ec_ctx, bsize, mode, w); |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1356 | 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] | 1357 | xd->plane[1].subsampling_y)) { |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1358 | write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mode, w); |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1359 | |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1360 | #if CONFIG_CFL |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1361 | if (mbmi->uv_mode == UV_CFL_PRED) { |
Luc Trudeau | 4d6ea54 | 2017-11-22 21:24:42 -0500 | [diff] [blame] | 1362 | if (!is_cfl_allowed(mbmi)) { |
| 1363 | aom_internal_error( |
| 1364 | &cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 1365 | "Chroma from Luma (CfL) cannot be signaled for a %dx%d block.", |
| 1366 | block_size_wide[bsize], block_size_high[bsize]); |
| 1367 | } |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1368 | 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] | 1369 | } |
| 1370 | #endif |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1371 | } |
Luc Trudeau | b09b55d | 2017-04-26 10:06:35 -0400 | [diff] [blame] | 1372 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1373 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 1374 | write_intra_angle_info(xd, ec_ctx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1375 | #endif // CONFIG_EXT_INTRA |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1376 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1377 | write_palette_mode_info(cm, xd, mi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1378 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 1379 | write_filter_intra_mode_info(xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1380 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1381 | } else { |
Yaowu Xu | b0d0d00 | 2016-11-22 09:26:43 -0800 | [diff] [blame] | 1382 | int16_t mode_ctx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1383 | write_ref_frames(cm, xd, w); |
| 1384 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1385 | if (is_compound) |
| 1386 | mode_ctx = mbmi_ext->compound_mode_context[mbmi->ref_frame[0]]; |
| 1387 | else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1388 | mode_ctx = av1_mode_context_analyzer(mbmi_ext->mode_context, |
| 1389 | mbmi->ref_frame, bsize, -1); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1390 | |
| 1391 | // If segment skip is not enabled code the mode. |
| 1392 | if (!segfeature_active(seg, segment_id, SEG_LVL_SKIP)) { |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1393 | if (is_inter_compound_mode(mode)) |
| 1394 | write_inter_compound_mode(cm, xd, w, mode, mode_ctx); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1395 | else if (is_inter_singleref_mode(mode)) |
| 1396 | write_inter_mode(w, mode, ec_ctx, mode_ctx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1397 | |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1398 | if (mode == NEWMV || mode == NEW_NEWMV || have_nearmv_in_inter_mode(mode)) |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1399 | write_drl_idx(ec_ctx, mbmi, mbmi_ext, w); |
| 1400 | else |
| 1401 | assert(mbmi->ref_mv_idx == 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1402 | } |
| 1403 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1404 | if (mode == NEWMV || mode == NEW_NEWMV) { |
| 1405 | int_mv ref_mv; |
| 1406 | for (ref = 0; ref < 1 + is_compound; ++ref) { |
| 1407 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1408 | int nmv_ctx = |
| 1409 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1410 | mbmi_ext->ref_mv_stack[rf_type], ref, mbmi->ref_mv_idx); |
| 1411 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1412 | ref_mv = mbmi_ext->ref_mvs[mbmi->ref_frame[ref]][0]; |
| 1413 | av1_encode_mv(cpi, w, &mbmi->mv[ref].as_mv, &ref_mv.as_mv, nmvc, |
| 1414 | allow_hp); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1415 | } |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1416 | } else if (mode == NEAREST_NEWMV || mode == NEAR_NEWMV) { |
| 1417 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1418 | int nmv_ctx = |
| 1419 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1420 | mbmi_ext->ref_mv_stack[rf_type], 1, mbmi->ref_mv_idx); |
| 1421 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1422 | av1_encode_mv(cpi, w, &mbmi->mv[1].as_mv, |
| 1423 | &mbmi_ext->ref_mvs[mbmi->ref_frame[1]][0].as_mv, nmvc, |
| 1424 | allow_hp); |
| 1425 | } else if (mode == NEW_NEARESTMV || mode == NEW_NEARMV) { |
| 1426 | int8_t rf_type = av1_ref_frame_type(mbmi->ref_frame); |
| 1427 | int nmv_ctx = |
| 1428 | av1_nmv_ctx(mbmi_ext->ref_mv_count[rf_type], |
| 1429 | mbmi_ext->ref_mv_stack[rf_type], 0, mbmi->ref_mv_idx); |
| 1430 | nmv_context *nmvc = &ec_ctx->nmvc[nmv_ctx]; |
| 1431 | av1_encode_mv(cpi, w, &mbmi->mv[0].as_mv, |
| 1432 | &mbmi_ext->ref_mvs[mbmi->ref_frame[0]][0].as_mv, nmvc, |
| 1433 | allow_hp); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1436 | if (cpi->common.reference_mode != COMPOUND_REFERENCE && |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1437 | cpi->common.allow_interintra_compound && is_interintra_allowed(mbmi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1438 | const int interintra = mbmi->ref_frame[1] == INTRA_FRAME; |
| 1439 | const int bsize_group = size_group_lookup[bsize]; |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1440 | aom_write_symbol(w, interintra, ec_ctx->interintra_cdf[bsize_group], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1441 | if (interintra) { |
Thomas Davies | 299ff04 | 2017-06-27 13:41:59 +0100 | [diff] [blame] | 1442 | aom_write_symbol(w, mbmi->interintra_mode, |
| 1443 | ec_ctx->interintra_mode_cdf[bsize_group], |
| 1444 | INTERINTRA_MODES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1445 | if (is_interintra_wedge_used(bsize)) { |
Thomas Davies | cff9171 | 2017-07-07 11:49:55 +0100 | [diff] [blame] | 1446 | aom_write_symbol(w, mbmi->use_wedge_interintra, |
| 1447 | ec_ctx->wedge_interintra_cdf[bsize], 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1448 | if (mbmi->use_wedge_interintra) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1449 | aom_write_literal(w, mbmi->interintra_wedge_index, |
| 1450 | get_wedge_bits_lookup(bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1451 | assert(mbmi->interintra_wedge_sign == 0); |
| 1452 | } |
| 1453 | } |
| 1454 | } |
| 1455 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1456 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1457 | if (mbmi->ref_frame[1] != INTRA_FRAME) write_motion_mode(cm, xd, mi, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1458 | |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1459 | #if CONFIG_JNT_COMP |
| 1460 | // First write idx to indicate current compound inter prediction mode group |
| 1461 | // Group A (0): jnt_comp, compound_average |
| 1462 | // Group B (1): interintra, compound_segment, wedge |
| 1463 | if (has_second_ref(mbmi)) { |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1464 | const int masked_compound_used = |
| 1465 | is_any_masked_compound_used(bsize) && cm->allow_masked_compound; |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1466 | |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1467 | if (masked_compound_used) { |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1468 | const int ctx_comp_group_idx = get_comp_group_idx_context(xd); |
| 1469 | aom_write_symbol(w, mbmi->comp_group_idx, |
| 1470 | ec_ctx->comp_group_idx_cdf[ctx_comp_group_idx], 2); |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1471 | } else { |
| 1472 | assert(mbmi->comp_group_idx == 0); |
Cheng Chen | 5a88172 | 2017-11-30 17:05:10 -0800 | [diff] [blame] | 1473 | } |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1474 | |
| 1475 | if (mbmi->comp_group_idx == 0) { |
| 1476 | if (mbmi->compound_idx) |
| 1477 | assert(mbmi->interinter_compound_type == COMPOUND_AVERAGE); |
| 1478 | |
| 1479 | const int comp_index_ctx = get_comp_index_context(cm, xd); |
| 1480 | aom_write_symbol(w, mbmi->compound_idx, |
| 1481 | ec_ctx->compound_index_cdf[comp_index_ctx], 2); |
| 1482 | } else { |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1483 | assert(cpi->common.reference_mode != SINGLE_REFERENCE && |
| 1484 | is_inter_compound_mode(mbmi->mode) && |
| 1485 | mbmi->motion_mode == SIMPLE_TRANSLATION); |
| 1486 | assert(masked_compound_used); |
| 1487 | // compound_segment, wedge |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1488 | assert(mbmi->interinter_compound_type == COMPOUND_WEDGE || |
| 1489 | mbmi->interinter_compound_type == COMPOUND_SEG); |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1490 | |
Zoe Liu | 5f11e91 | 2017-12-05 23:23:56 -0800 | [diff] [blame] | 1491 | if (is_interinter_compound_used(COMPOUND_WEDGE, bsize)) |
| 1492 | aom_write_symbol(w, mbmi->interinter_compound_type - 1, |
| 1493 | ec_ctx->compound_type_cdf[bsize], |
| 1494 | COMPOUND_TYPES - 1); |
| 1495 | |
| 1496 | if (mbmi->interinter_compound_type == COMPOUND_WEDGE) { |
| 1497 | assert(is_interinter_compound_used(COMPOUND_WEDGE, bsize)); |
| 1498 | aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize)); |
| 1499 | aom_write_bit(w, mbmi->wedge_sign); |
| 1500 | } else { |
| 1501 | assert(mbmi->interinter_compound_type == COMPOUND_SEG); |
| 1502 | aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS); |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1503 | } |
| 1504 | } |
| 1505 | } |
| 1506 | #else // CONFIG_JNT_COMP |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1507 | if (cpi->common.reference_mode != SINGLE_REFERENCE && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1508 | is_inter_compound_mode(mbmi->mode) && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1509 | mbmi->motion_mode == SIMPLE_TRANSLATION && |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1510 | is_any_masked_compound_used(bsize)) { |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1511 | if (cm->allow_masked_compound) { |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1512 | if (!is_interinter_compound_used(COMPOUND_WEDGE, bsize)) |
| 1513 | aom_write_bit(w, mbmi->interinter_compound_type == COMPOUND_AVERAGE); |
| 1514 | else |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1515 | aom_write_symbol(w, mbmi->interinter_compound_type, |
| 1516 | ec_ctx->compound_type_cdf[bsize], COMPOUND_TYPES); |
Sarah Parker | 680b9b1 | 2017-08-16 18:55:34 -0700 | [diff] [blame] | 1517 | if (is_interinter_compound_used(COMPOUND_WEDGE, bsize) && |
| 1518 | mbmi->interinter_compound_type == COMPOUND_WEDGE) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1519 | aom_write_literal(w, mbmi->wedge_index, get_wedge_bits_lookup(bsize)); |
| 1520 | aom_write_bit(w, mbmi->wedge_sign); |
| 1521 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1522 | if (mbmi->interinter_compound_type == COMPOUND_SEG) { |
Cheng Chen | bdd6ca8 | 2017-10-23 22:34:25 -0700 | [diff] [blame] | 1523 | aom_write_literal(w, mbmi->mask_type, MAX_SEG_MASK_BITS); |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1524 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 1525 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1526 | } |
Cheng Chen | 33a13d9 | 2017-11-28 16:49:59 -0800 | [diff] [blame] | 1527 | #endif // CONFIG_JNT_COMP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1528 | |
Debargha Mukherjee | 0df711f | 2017-05-02 16:00:20 -0700 | [diff] [blame] | 1529 | write_mb_interp_filter(cpi, xd, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1530 | } |
| 1531 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1532 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1533 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1534 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1537 | #if CONFIG_INTRABC |
| 1538 | static void write_intrabc_info(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 1539 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1540 | int enable_tx_size, aom_writer *w) { |
| 1541 | const MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; |
| 1542 | int use_intrabc = is_intrabc_block(mbmi); |
| 1543 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 1544 | aom_write_symbol(w, use_intrabc, ec_ctx->intrabc_cdf, 2); |
| 1545 | if (use_intrabc) { |
| 1546 | assert(mbmi->mode == DC_PRED); |
| 1547 | assert(mbmi->uv_mode == UV_DC_PRED); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1548 | if ((enable_tx_size && !mbmi->skip)) { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1549 | const BLOCK_SIZE bsize = mbmi->sb_type; |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1550 | const TX_SIZE max_tx_size = get_vartx_max_txsize(xd, bsize, 0); |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1551 | const int bh = tx_size_high_unit[max_tx_size]; |
| 1552 | const int bw = tx_size_wide_unit[max_tx_size]; |
| 1553 | const int width = block_size_wide[bsize] >> tx_size_wide_log2[0]; |
| 1554 | const int height = block_size_high[bsize] >> tx_size_wide_log2[0]; |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1555 | int idx, idy; |
| 1556 | for (idy = 0; idy < height; idy += bh) { |
| 1557 | for (idx = 0; idx < width; idx += bw) { |
Debargha Mukherjee | edc7346 | 2017-10-31 15:13:32 -0700 | [diff] [blame] | 1558 | 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] | 1559 | } |
| 1560 | } |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1561 | } else { |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1562 | 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] | 1563 | } |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1564 | int_mv dv_ref = mbmi_ext->ref_mvs[INTRA_FRAME][0]; |
| 1565 | 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] | 1566 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1567 | av1_write_tx_type(cm, xd, w); |
Sebastien Alaiwan | 3bac992 | 2017-11-02 12:34:41 +0100 | [diff] [blame] | 1568 | #endif // !CONFIG_TXK_SEL |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1569 | } |
| 1570 | } |
| 1571 | #endif // CONFIG_INTRABC |
| 1572 | |
Thomas Davies | 3ab20b4 | 2017-09-19 10:30:53 +0100 | [diff] [blame] | 1573 | static void write_mb_modes_kf(AV1_COMMON *cm, MACROBLOCKD *xd, |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1574 | #if CONFIG_INTRABC |
| 1575 | const MB_MODE_INFO_EXT *mbmi_ext, |
| 1576 | #endif // CONFIG_INTRABC |
Jingning Han | 36fe320 | 2017-02-20 22:31:49 -0800 | [diff] [blame] | 1577 | const int mi_row, const int mi_col, |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1578 | aom_writer *w) { |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1579 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1580 | const struct segmentation *const seg = &cm->seg; |
Thomas Davies | 9f5cedd | 2017-07-10 09:20:32 +0100 | [diff] [blame] | 1581 | struct segmentation_probs *const segp = &ec_ctx->seg; |
Angie Chiang | c31ea68 | 2017-04-13 16:20:54 -0700 | [diff] [blame] | 1582 | const MODE_INFO *const mi = xd->mi[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1583 | const MODE_INFO *const above_mi = xd->above_mi; |
| 1584 | const MODE_INFO *const left_mi = xd->left_mi; |
| 1585 | const MB_MODE_INFO *const mbmi = &mi->mbmi; |
| 1586 | const BLOCK_SIZE bsize = mbmi->sb_type; |
David Barker | 45390c1 | 2017-02-20 14:44:40 +0000 | [diff] [blame] | 1587 | (void)mi_row; |
| 1588 | (void)mi_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1589 | |
| 1590 | if (seg->update_map) write_segment_id(w, seg, segp, mbmi->segment_id); |
| 1591 | |
Alex Converse | 619576b | 2017-05-10 15:14:18 -0700 | [diff] [blame] | 1592 | const int skip = write_skip(cm, xd, mbmi->segment_id, mi, w); |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1593 | |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 1594 | #if CONFIG_Q_SEGMENTATION |
| 1595 | write_q_segment_id(cm, skip, mbmi, w, seg, segp, bsize, mi_row, mi_col); |
| 1596 | #endif |
Steinar Midtskogen | 6c24b02 | 2017-09-15 09:46:39 +0200 | [diff] [blame] | 1597 | |
| 1598 | write_cdef(cm, w, skip, mi_col, mi_row); |
| 1599 | |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1600 | if (cm->delta_q_present_flag) { |
Pavel Frolov | 1dbe92d | 2017-11-02 01:49:19 +0300 | [diff] [blame] | 1601 | int super_block_upper_left = ((mi_row & (cm->mib_size - 1)) == 0) && |
| 1602 | ((mi_col & (cm->mib_size - 1)) == 0); |
Pavel Frolov | bfa2b8c | 2017-11-01 20:08:44 +0300 | [diff] [blame] | 1603 | if ((bsize != cm->sb_size || skip == 0) && super_block_upper_left) { |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 1604 | assert(mbmi->current_q_index > 0); |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 1605 | int reduced_delta_qindex = |
| 1606 | (mbmi->current_q_index - xd->prev_qindex) / cm->delta_q_res; |
Thomas Davies | d6ee8a8 | 2017-03-02 14:42:50 +0000 | [diff] [blame] | 1607 | write_delta_qindex(cm, xd, reduced_delta_qindex, w); |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1608 | xd->prev_qindex = mbmi->current_q_index; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1609 | #if CONFIG_EXT_DELTA_Q |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1610 | #if CONFIG_LOOPFILTER_LEVEL |
| 1611 | if (cm->delta_lf_present_flag) { |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1612 | if (cm->delta_lf_multi) { |
| 1613 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) { |
| 1614 | int reduced_delta_lflevel = |
| 1615 | (mbmi->curr_delta_lf[lf_id] - xd->prev_delta_lf[lf_id]) / |
| 1616 | cm->delta_lf_res; |
| 1617 | write_delta_lflevel(cm, xd, lf_id, reduced_delta_lflevel, w); |
| 1618 | xd->prev_delta_lf[lf_id] = mbmi->curr_delta_lf[lf_id]; |
| 1619 | } |
| 1620 | } else { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1621 | int reduced_delta_lflevel = |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1622 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1623 | cm->delta_lf_res; |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 1624 | write_delta_lflevel(cm, xd, -1, reduced_delta_lflevel, w); |
| 1625 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1626 | } |
| 1627 | } |
| 1628 | #else |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1629 | if (cm->delta_lf_present_flag) { |
| 1630 | int reduced_delta_lflevel = |
| 1631 | (mbmi->current_delta_lf_from_base - xd->prev_delta_lf_from_base) / |
| 1632 | cm->delta_lf_res; |
| 1633 | write_delta_lflevel(cm, xd, reduced_delta_lflevel, w); |
| 1634 | xd->prev_delta_lf_from_base = mbmi->current_delta_lf_from_base; |
| 1635 | } |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 1636 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 1637 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 1638 | } |
| 1639 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1640 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1641 | int enable_tx_size = cm->tx_mode == TX_MODE_SELECT && |
Rupert Swarbrick | fcff0b2 | 2017-10-05 09:26:04 +0100 | [diff] [blame] | 1642 | block_signals_txsize(bsize) && |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1643 | !xd->lossless[mbmi->segment_id]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1644 | |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1645 | #if CONFIG_INTRABC |
RogerZhou | ca86546 | 2017-10-05 15:06:27 -0700 | [diff] [blame] | 1646 | if (av1_allow_intrabc(bsize, cm)) { |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1647 | write_intrabc_info(cm, xd, mbmi_ext, enable_tx_size, w); |
| 1648 | if (is_intrabc_block(mbmi)) return; |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1649 | } |
| 1650 | #endif // CONFIG_INTRABC |
Hui Su | c2232cf | 2017-10-11 17:32:56 -0700 | [diff] [blame] | 1651 | |
Alex Converse | f71808c | 2017-06-06 12:21:17 -0700 | [diff] [blame] | 1652 | if (enable_tx_size) write_selected_tx_size(cm, xd, w); |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1653 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1654 | if (cm->allow_screen_content_tools) |
| 1655 | 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] | 1656 | #endif // CONFIG_INTRABC |
Alex Converse | 2874430 | 2017-04-13 14:46:22 -0700 | [diff] [blame] | 1657 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 1658 | 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] | 1659 | |
Jingning Han | d3a6443 | 2017-04-06 17:04:17 -0700 | [diff] [blame] | 1660 | 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] | 1661 | xd->plane[1].subsampling_y)) { |
Jingning Han | f04254f | 2017-03-08 10:51:35 -0800 | [diff] [blame] | 1662 | write_intra_uv_mode(ec_ctx, mbmi->uv_mode, mbmi->mode, w); |
Jingning Han | 0b7cbe6 | 2017-03-08 10:22:47 -0800 | [diff] [blame] | 1663 | |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1664 | #if CONFIG_CFL |
Luc Trudeau | 6e1cd78 | 2017-06-21 13:52:36 -0400 | [diff] [blame] | 1665 | if (mbmi->uv_mode == UV_CFL_PRED) { |
Luc Trudeau | 4d6ea54 | 2017-11-22 21:24:42 -0500 | [diff] [blame] | 1666 | if (!is_cfl_allowed(mbmi)) { |
| 1667 | aom_internal_error( |
| 1668 | &cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 1669 | "Chroma from Luma (CfL) cannot be signaled for a %dx%d block.", |
| 1670 | block_size_wide[bsize], block_size_high[bsize]); |
| 1671 | } |
David Michael Barr | 2319866 | 2017-06-19 23:19:48 +0900 | [diff] [blame] | 1672 | 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] | 1673 | } |
Luc Trudeau | f533400 | 2017-04-25 12:21:26 -0400 | [diff] [blame] | 1674 | #endif |
Luc Trudeau | 2c31790 | 2017-04-28 11:06:50 -0400 | [diff] [blame] | 1675 | } |
Debargha Mukherjee | 6ea917e | 2017-10-19 09:31:29 -0700 | [diff] [blame] | 1676 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1677 | #if CONFIG_EXT_INTRA |
Joe Young | 3ca43bf | 2017-10-06 15:12:46 -0700 | [diff] [blame] | 1678 | write_intra_angle_info(xd, ec_ctx, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1679 | #endif // CONFIG_EXT_INTRA |
Hui Su | e87fb23 | 2017-10-05 15:00:15 -0700 | [diff] [blame] | 1680 | if (av1_allow_palette(cm->allow_screen_content_tools, bsize)) |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1681 | write_palette_mode_info(cm, xd, mi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1682 | #if CONFIG_FILTER_INTRA |
Yue Chen | 4eba69b | 2017-11-09 22:37:35 -0800 | [diff] [blame] | 1683 | write_filter_intra_mode_info(xd, mbmi, w); |
hui su | 5db9743 | 2016-10-14 16:10:14 -0700 | [diff] [blame] | 1684 | #endif // CONFIG_FILTER_INTRA |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1685 | |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1686 | #if !CONFIG_TXK_SEL |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1687 | av1_write_tx_type(cm, xd, w); |
Angie Chiang | cd9b03f | 2017-04-16 13:37:13 -0700 | [diff] [blame] | 1688 | #endif // !CONFIG_TXK_SEL |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1689 | } |
| 1690 | |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1691 | #if CONFIG_RD_DEBUG |
| 1692 | static void dump_mode_info(MODE_INFO *mi) { |
| 1693 | printf("\nmi->mbmi.mi_row == %d\n", mi->mbmi.mi_row); |
| 1694 | printf("&& mi->mbmi.mi_col == %d\n", mi->mbmi.mi_col); |
| 1695 | printf("&& mi->mbmi.sb_type == %d\n", mi->mbmi.sb_type); |
| 1696 | printf("&& mi->mbmi.tx_size == %d\n", mi->mbmi.tx_size); |
| 1697 | if (mi->mbmi.sb_type >= BLOCK_8X8) { |
| 1698 | printf("&& mi->mbmi.mode == %d\n", mi->mbmi.mode); |
| 1699 | } else { |
| 1700 | printf("&& mi->bmi[0].as_mode == %d\n", mi->bmi[0].as_mode); |
| 1701 | } |
| 1702 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1703 | static int rd_token_stats_mismatch(RD_STATS *rd_stats, TOKEN_STATS *token_stats, |
| 1704 | int plane) { |
| 1705 | if (rd_stats->txb_coeff_cost[plane] != token_stats->cost) { |
| 1706 | int r, c; |
| 1707 | printf("\nplane %d rd_stats->txb_coeff_cost %d token_stats->cost %d\n", |
| 1708 | plane, rd_stats->txb_coeff_cost[plane], token_stats->cost); |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1709 | printf("rd txb_coeff_cost_map\n"); |
| 1710 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1711 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1712 | printf("%d ", rd_stats->txb_coeff_cost_map[plane][r][c]); |
| 1713 | } |
| 1714 | printf("\n"); |
| 1715 | } |
| 1716 | |
| 1717 | printf("pack txb_coeff_cost_map\n"); |
| 1718 | for (r = 0; r < TXB_COEFF_COST_MAP_SIZE; ++r) { |
| 1719 | for (c = 0; c < TXB_COEFF_COST_MAP_SIZE; ++c) { |
| 1720 | printf("%d ", token_stats->txb_coeff_cost_map[r][c]); |
| 1721 | } |
| 1722 | printf("\n"); |
| 1723 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 1724 | return 1; |
| 1725 | } |
| 1726 | return 0; |
| 1727 | } |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1728 | #endif |
| 1729 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1730 | #if ENC_MISMATCH_DEBUG |
| 1731 | static void enc_dump_logs(AV1_COMP *cpi, int mi_row, int mi_col) { |
| 1732 | AV1_COMMON *const cm = &cpi->common; |
| 1733 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1734 | MODE_INFO *m; |
| 1735 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1736 | m = xd->mi[0]; |
| 1737 | if (is_inter_block(&m->mbmi)) { |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1738 | #define FRAME_TO_CHECK 11 |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 1739 | if (cm->current_video_frame == FRAME_TO_CHECK && cm->show_frame == 1) { |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1740 | const MB_MODE_INFO *const mbmi = &m->mbmi; |
| 1741 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1742 | |
| 1743 | int_mv mv[2]; |
| 1744 | int is_comp_ref = has_second_ref(&m->mbmi); |
| 1745 | int ref; |
| 1746 | |
| 1747 | for (ref = 0; ref < 1 + is_comp_ref; ++ref) |
| 1748 | mv[ref].as_mv = m->mbmi.mv[ref].as_mv; |
| 1749 | |
| 1750 | if (!is_comp_ref) { |
Sebastien Alaiwan | 34d5566 | 2017-11-15 09:36:03 +0100 | [diff] [blame] | 1751 | mv[1].as_int = 0; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1752 | } |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1753 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1754 | MACROBLOCK *const x = &cpi->td.mb; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1755 | const MB_MODE_INFO_EXT *const mbmi_ext = x->mbmi_ext; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1756 | const int16_t mode_ctx = |
| 1757 | is_comp_ref ? mbmi_ext->compound_mode_context[mbmi->ref_frame[0]] |
| 1758 | : av1_mode_context_analyzer(mbmi_ext->mode_context, |
| 1759 | mbmi->ref_frame, bsize, -1); |
| 1760 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1761 | const int16_t newmv_ctx = mode_ctx & NEWMV_CTX_MASK; |
| 1762 | int16_t zeromv_ctx = -1; |
| 1763 | int16_t refmv_ctx = -1; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1764 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1765 | if (mbmi->mode != NEWMV) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1766 | zeromv_ctx = (mode_ctx >> GLOBALMV_OFFSET) & GLOBALMV_CTX_MASK; |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1767 | if (mode_ctx & (1 << ALL_ZERO_FLAG_OFFSET)) { |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1768 | assert(mbmi->mode == GLOBALMV); |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1769 | } |
Sarah Parker | 2b9ec2e | 2017-10-30 17:34:08 -0700 | [diff] [blame] | 1770 | if (mbmi->mode != GLOBALMV) { |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1771 | refmv_ctx = (mode_ctx >> REFMV_OFFSET) & REFMV_CTX_MASK; |
| 1772 | if (mode_ctx & (1 << SKIP_NEARESTMV_OFFSET)) refmv_ctx = 6; |
| 1773 | if (mode_ctx & (1 << SKIP_NEARMV_OFFSET)) refmv_ctx = 7; |
| 1774 | if (mode_ctx & (1 << SKIP_NEARESTMV_SUB8X8_OFFSET)) refmv_ctx = 8; |
| 1775 | } |
| 1776 | } |
| 1777 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1778 | #if CONFIG_EXT_SKIP |
| 1779 | printf( |
| 1780 | "=== ENCODER ===: " |
| 1781 | "Frame=%d, (mi_row,mi_col)=(%d,%d), skip_mode=%d, mode=%d, bsize=%d, " |
| 1782 | "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, " |
| 1783 | "ref[1]=%d, motion_mode=%d, mode_ctx=%d, " |
| 1784 | "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d, tx_size=%d\n", |
| 1785 | cm->current_video_frame, mi_row, mi_col, mbmi->skip_mode, mbmi->mode, |
| 1786 | bsize, cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, |
| 1787 | mv[1].as_mv.row, mv[1].as_mv.col, mbmi->ref_frame[0], |
| 1788 | mbmi->ref_frame[1], mbmi->motion_mode, mode_ctx, newmv_ctx, |
| 1789 | zeromv_ctx, refmv_ctx, mbmi->tx_size); |
| 1790 | #else |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1791 | printf( |
| 1792 | "=== ENCODER ===: " |
| 1793 | "Frame=%d, (mi_row,mi_col)=(%d,%d), mode=%d, bsize=%d, " |
| 1794 | "show_frame=%d, mv[0]=(%d,%d), mv[1]=(%d,%d), ref[0]=%d, " |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1795 | "ref[1]=%d, motion_mode=%d, mode_ctx=%d, " |
| 1796 | "newmv_ctx=%d, zeromv_ctx=%d, refmv_ctx=%d, tx_size=%d\n", |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1797 | cm->current_video_frame, mi_row, mi_col, mbmi->mode, bsize, |
| 1798 | cm->show_frame, mv[0].as_mv.row, mv[0].as_mv.col, mv[1].as_mv.row, |
| 1799 | mv[1].as_mv.col, mbmi->ref_frame[0], mbmi->ref_frame[1], |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1800 | mbmi->motion_mode, mode_ctx, newmv_ctx, zeromv_ctx, refmv_ctx, |
| 1801 | mbmi->tx_size); |
| 1802 | #endif // CONFIG_EXT_SKIP |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1803 | } |
| 1804 | } |
| 1805 | } |
| 1806 | #endif // ENC_MISMATCH_DEBUG |
| 1807 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1808 | static void write_mbmi_b(AV1_COMP *cpi, const TileInfo *const tile, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1809 | aom_writer *w, int mi_row, int mi_col) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1810 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1811 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 1812 | MODE_INFO *m; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1813 | int bh, bw; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1814 | xd->mi = cm->mi_grid_visible + (mi_row * cm->mi_stride + mi_col); |
| 1815 | m = xd->mi[0]; |
| 1816 | |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1817 | assert(m->mbmi.sb_type <= cm->sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1818 | (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] | 1819 | |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 1820 | bh = mi_size_high[m->mbmi.sb_type]; |
| 1821 | bw = mi_size_wide[m->mbmi.sb_type]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1822 | |
| 1823 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1824 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1825 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1826 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1827 | cm->dependent_horz_tiles, |
| 1828 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1829 | cm->mi_rows, cm->mi_cols); |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 1830 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1831 | if (frame_is_intra_only(cm)) { |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1832 | #if CONFIG_INTRABC |
Hui Su | 12546aa | 2017-10-13 16:10:01 -0700 | [diff] [blame] | 1833 | if (cm->allow_screen_content_tools) { |
| 1834 | xd->above_txfm_context = |
| 1835 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1836 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1837 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
| 1838 | } |
Sebastien Alaiwan | fb83877 | 2017-10-24 12:02:54 +0200 | [diff] [blame] | 1839 | #endif // CONFIG_INTRABC |
Alex Converse | 44c2bad | 2017-05-11 09:36:10 -0700 | [diff] [blame] | 1840 | write_mb_modes_kf(cm, xd, |
| 1841 | #if CONFIG_INTRABC |
| 1842 | cpi->td.mb.mbmi_ext, |
| 1843 | #endif // CONFIG_INTRABC |
| 1844 | mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1845 | } else { |
Jingning Han | 331662e | 2017-05-30 17:03:32 -0700 | [diff] [blame] | 1846 | xd->above_txfm_context = |
| 1847 | cm->above_txfm_context + (mi_col << TX_UNIT_WIDE_LOG2); |
| 1848 | xd->left_txfm_context = xd->left_txfm_context_buffer + |
| 1849 | ((mi_row & MAX_MIB_MASK) << TX_UNIT_HIGH_LOG2); |
Angie Chiang | 38edf68 | 2017-02-21 15:13:09 -0800 | [diff] [blame] | 1850 | // has_subpel_mv_component needs the ref frame buffers set up to look |
| 1851 | // 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] | 1852 | // write_switchable_interp_filter, which is called by pack_inter_mode_mvs. |
| 1853 | set_ref_ptrs(cm, xd, m->mbmi.ref_frame[0], m->mbmi.ref_frame[1]); |
Zoe Liu | 85b6646 | 2017-04-20 14:28:19 -0700 | [diff] [blame] | 1854 | |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1855 | #if ENC_MISMATCH_DEBUG |
Di Chen | 5658662 | 2017-06-09 13:49:44 -0700 | [diff] [blame] | 1856 | enc_dump_logs(cpi, mi_row, mi_col); |
| 1857 | #endif // ENC_MISMATCH_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1858 | |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 1859 | pack_inter_mode_mvs(cpi, mi_row, mi_col, w); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1860 | } |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1861 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1862 | |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1863 | static void write_inter_txb_coeff(AV1_COMMON *const cm, MACROBLOCK *const x, |
| 1864 | MB_MODE_INFO *const mbmi, aom_writer *w, |
| 1865 | const TOKENEXTRA **tok, |
| 1866 | const TOKENEXTRA *const tok_end, |
| 1867 | TOKEN_STATS *token_stats, const int row, |
| 1868 | const int col, int *block, const int plane) { |
| 1869 | MACROBLOCKD *const xd = &x->e_mbd; |
| 1870 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1871 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1872 | const BLOCK_SIZE bsizec = |
| 1873 | scale_chroma_bsize(bsize, pd->subsampling_x, pd->subsampling_y); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1874 | |
| 1875 | const BLOCK_SIZE plane_bsize = |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1876 | AOMMAX(BLOCK_4X4, get_plane_block_size(bsizec, pd)); |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1877 | |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1878 | TX_SIZE max_tx_size = get_vartx_max_txsize( |
Debargha Mukherjee | 891a877 | 2017-11-22 10:09:37 -0800 | [diff] [blame] | 1879 | xd, plane_bsize, pd->subsampling_x || pd->subsampling_y); |
Debargha Mukherjee | 1961988 | 2017-11-22 13:13:14 -0800 | [diff] [blame] | 1880 | #if DISABLE_VARTX_FOR_CHROMA == 2 |
| 1881 | // If the luma transform size is split at least one level, split the chroma |
| 1882 | // by one level. Otherwise use the largest possible trasnform size for |
| 1883 | // chroma. |
| 1884 | if (plane && (pd->subsampling_x || pd->subsampling_y)) { |
| 1885 | const TX_SIZE l_max_tx_size = get_vartx_max_txsize(xd, bsizec, 0); |
| 1886 | const int is_split = |
| 1887 | (l_max_tx_size != mbmi->inter_tx_size[0][0] && bsize == bsizec && |
| 1888 | txsize_to_bsize[l_max_tx_size] == bsizec); |
| 1889 | if (is_split) max_tx_size = sub_tx_size_map[max_tx_size]; |
| 1890 | } |
| 1891 | #endif // DISABLE_VARTX_FOR_CHROMA == 2 |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1892 | const int step = |
| 1893 | tx_size_wide_unit[max_tx_size] * tx_size_high_unit[max_tx_size]; |
| 1894 | const int bkw = tx_size_wide_unit[max_tx_size]; |
| 1895 | const int bkh = tx_size_high_unit[max_tx_size]; |
| 1896 | |
| 1897 | const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, pd); |
| 1898 | int mu_blocks_wide = block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0]; |
| 1899 | int mu_blocks_high = block_size_high[max_unit_bsize] >> tx_size_high_log2[0]; |
| 1900 | |
| 1901 | int blk_row, blk_col; |
| 1902 | |
| 1903 | const int num_4x4_w = block_size_wide[plane_bsize] >> tx_size_wide_log2[0]; |
| 1904 | const int num_4x4_h = block_size_high[plane_bsize] >> tx_size_wide_log2[0]; |
| 1905 | |
| 1906 | const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h); |
| 1907 | const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w); |
| 1908 | for (blk_row = row; blk_row < unit_height; blk_row += bkh) { |
| 1909 | for (blk_col = col; blk_col < unit_width; blk_col += bkw) { |
| 1910 | pack_txb_tokens(w, |
| 1911 | #if CONFIG_LV_MAP |
| 1912 | cm, x, |
| 1913 | #endif |
| 1914 | tok, tok_end, xd, mbmi, plane, plane_bsize, cm->bit_depth, |
| 1915 | *block, blk_row, blk_col, max_tx_size, token_stats); |
| 1916 | *block += step; |
| 1917 | } |
| 1918 | } |
| 1919 | } |
| 1920 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1921 | static void write_tokens_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 1922 | aom_writer *w, const TOKENEXTRA **tok, |
| 1923 | const TOKENEXTRA *const tok_end, int mi_row, |
| 1924 | int mi_col) { |
| 1925 | AV1_COMMON *const cm = &cpi->common; |
| 1926 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1927 | const int mi_offset = mi_row * cm->mi_stride + mi_col; |
| 1928 | MODE_INFO *const m = *(cm->mi_grid_visible + mi_offset); |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1929 | MB_MODE_INFO *const mbmi = &m->mbmi; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1930 | int plane; |
| 1931 | int bh, bw; |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 1932 | MACROBLOCK *const x = &cpi->td.mb; |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 1933 | #if CONFIG_LV_MAP |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1934 | (void)tok; |
| 1935 | (void)tok_end; |
| 1936 | #endif |
Wei-Ting Lin | 1d46d90 | 2017-06-26 15:57:18 -0700 | [diff] [blame] | 1937 | xd->mi = cm->mi_grid_visible + mi_offset; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1938 | |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 1939 | assert(mbmi->sb_type <= cm->sb_size || |
Rupert Swarbrick | 7267857 | 2017-08-02 12:05:26 +0100 | [diff] [blame] | 1940 | (mbmi->sb_type >= BLOCK_SIZES && mbmi->sb_type < BLOCK_SIZES_ALL)); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1941 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1942 | bh = mi_size_high[mbmi->sb_type]; |
| 1943 | bw = mi_size_wide[mbmi->sb_type]; |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1944 | cpi->td.mb.mbmi_ext = cpi->mbmi_ext_base + (mi_row * cm->mi_cols + mi_col); |
| 1945 | |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1946 | set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 1947 | #if CONFIG_DEPENDENT_HORZTILES |
Urvang Joshi | 359dc2b | 2017-04-27 15:41:47 -0700 | [diff] [blame] | 1948 | cm->dependent_horz_tiles, |
| 1949 | #endif // CONFIG_DEPENDENT_HORZTILES |
| 1950 | cm->mi_rows, cm->mi_cols); |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 1951 | |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1952 | const int num_planes = av1_num_planes(cm); |
| 1953 | for (plane = 0; plane < AOMMIN(2, num_planes); ++plane) { |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1954 | const uint8_t palette_size_plane = |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1955 | mbmi->palette_mode_info.palette_size[plane]; |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 1956 | #if CONFIG_EXT_SKIP |
| 1957 | assert(!mbmi->skip_mode || !palette_size_plane); |
| 1958 | #endif // CONFIG_EXT_SKIP |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1959 | if (palette_size_plane > 0) { |
Alex Converse | ed37d01 | 2017-04-24 11:15:24 -0700 | [diff] [blame] | 1960 | #if CONFIG_INTRABC |
| 1961 | assert(mbmi->use_intrabc == 0); |
| 1962 | #endif |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1963 | int rows, cols; |
hui su | 9bc1d8d | 2017-03-24 12:36:03 -0700 | [diff] [blame] | 1964 | assert(mbmi->sb_type >= BLOCK_8X8); |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1965 | av1_get_block_dimensions(mbmi->sb_type, plane, xd, NULL, NULL, &rows, |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1966 | &cols); |
| 1967 | assert(*tok < tok_end); |
Sarah Parker | 99e7daa | 2017-08-29 10:30:13 -0700 | [diff] [blame] | 1968 | pack_map_tokens(w, tok, palette_size_plane, rows * cols); |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 1969 | #if !CONFIG_LV_MAP |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1970 | assert(*tok < tok_end + mbmi->skip); |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 1971 | #endif // !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1972 | } |
Fangwen Fu | b3be926 | 2017-03-06 15:34:28 -0800 | [diff] [blame] | 1973 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1974 | |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 1975 | if (!mbmi->skip) { |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 1976 | #if !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1977 | assert(*tok < tok_end); |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 1978 | #endif |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 1979 | for (plane = 0; plane < num_planes; ++plane) { |
Debargha Mukherjee | 3aa2811 | 2017-11-25 07:03:31 -0800 | [diff] [blame] | 1980 | const struct macroblockd_plane *const pd = &xd->plane[plane]; |
| 1981 | if (!is_chroma_reference(mi_row, mi_col, mbmi->sb_type, pd->subsampling_x, |
| 1982 | pd->subsampling_y)) { |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 1983 | #if !CONFIG_LV_MAP |
Jingning Han | c20dc8e | 2017-02-17 15:37:28 -0800 | [diff] [blame] | 1984 | (*tok)++; |
Jingning Han | 13648e7 | 2017-08-17 09:21:53 -0700 | [diff] [blame] | 1985 | #endif // !CONFIG_LV_MAP |
Jingning Han | c20dc8e | 2017-02-17 15:37:28 -0800 | [diff] [blame] | 1986 | continue; |
| 1987 | } |
Debargha Mukherjee | 3aa2811 | 2017-11-25 07:03:31 -0800 | [diff] [blame] | 1988 | const BLOCK_SIZE bsize = mbmi->sb_type; |
| 1989 | const BLOCK_SIZE bsizec = |
| 1990 | scale_chroma_bsize(bsize, pd->subsampling_x, pd->subsampling_y); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1991 | const BLOCK_SIZE plane_bsize = |
Debargha Mukherjee | 3aa2811 | 2017-11-25 07:03:31 -0800 | [diff] [blame] | 1992 | AOMMAX(BLOCK_4X4, get_plane_block_size(bsizec, pd)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1993 | |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 1994 | const int num_4x4_w = |
| 1995 | block_size_wide[plane_bsize] >> tx_size_wide_log2[0]; |
| 1996 | const int num_4x4_h = |
| 1997 | block_size_high[plane_bsize] >> tx_size_wide_log2[0]; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1998 | int row, col; |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 1999 | TOKEN_STATS token_stats; |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2000 | init_token_stats(&token_stats); |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 2001 | |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2002 | const BLOCK_SIZE max_unit_bsize = get_plane_block_size(BLOCK_64X64, pd); |
| 2003 | int mu_blocks_wide = |
| 2004 | block_size_wide[max_unit_bsize] >> tx_size_wide_log2[0]; |
| 2005 | int mu_blocks_high = |
| 2006 | block_size_high[max_unit_bsize] >> tx_size_high_log2[0]; |
| 2007 | |
| 2008 | mu_blocks_wide = AOMMIN(num_4x4_w, mu_blocks_wide); |
| 2009 | mu_blocks_high = AOMMIN(num_4x4_h, mu_blocks_high); |
| 2010 | |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 2011 | if (is_inter_block(mbmi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2012 | int block = 0; |
Jingning Han | c2b797f | 2017-07-19 09:37:11 -0700 | [diff] [blame] | 2013 | for (row = 0; row < num_4x4_h; row += mu_blocks_high) { |
| 2014 | for (col = 0; col < num_4x4_w; col += mu_blocks_wide) { |
Jingning Han | e5e8f4d | 2017-11-20 20:11:04 -0800 | [diff] [blame] | 2015 | write_inter_txb_coeff(cm, x, mbmi, w, tok, tok_end, &token_stats, |
| 2016 | row, col, &block, plane); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2017 | } |
| 2018 | } |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2019 | #if CONFIG_RD_DEBUG |
Angie Chiang | 3963d63 | 2016-11-10 18:41:40 -0800 | [diff] [blame] | 2020 | if (mbmi->sb_type >= BLOCK_8X8 && |
Luc Trudeau | 3e32f1a | 2017-03-08 10:37:49 -0500 | [diff] [blame] | 2021 | rd_token_stats_mismatch(&mbmi->rd_stats, &token_stats, plane)) { |
Angie Chiang | d02001d | 2016-11-06 15:31:49 -0800 | [diff] [blame] | 2022 | dump_mode_info(m); |
| 2023 | assert(0); |
| 2024 | } |
Jingning Han | fe45b21 | 2016-11-22 10:30:23 -0800 | [diff] [blame] | 2025 | #endif // CONFIG_RD_DEBUG |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2026 | } else { |
Jingning Han | 5ab7ed4 | 2017-05-18 16:15:52 -0700 | [diff] [blame] | 2027 | #if CONFIG_LV_MAP |
| 2028 | av1_write_coeffs_mb(cm, x, w, plane); |
| 2029 | #else |
hui su | 0c6244b | 2017-07-12 17:11:43 -0700 | [diff] [blame] | 2030 | const TX_SIZE tx = av1_get_tx_size(plane, xd); |
Jingning Han | 42a0fb3 | 2016-10-31 10:43:31 -0700 | [diff] [blame] | 2031 | const int bkw = tx_size_wide_unit[tx]; |
| 2032 | const int bkh = tx_size_high_unit[tx]; |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2033 | int blk_row, blk_col; |
| 2034 | |
| 2035 | for (row = 0; row < num_4x4_h; row += mu_blocks_high) { |
| 2036 | for (col = 0; col < num_4x4_w; col += mu_blocks_wide) { |
| 2037 | const int unit_height = AOMMIN(mu_blocks_high + row, num_4x4_h); |
| 2038 | const int unit_width = AOMMIN(mu_blocks_wide + col, num_4x4_w); |
| 2039 | |
| 2040 | for (blk_row = row; blk_row < unit_height; blk_row += bkh) { |
| 2041 | for (blk_col = col; blk_col < unit_width; blk_col += bkw) { |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2042 | pack_mb_tokens(w, tok, tok_end, cm->bit_depth, tx, |
| 2043 | &token_stats); |
Jingning Han | 5b70174 | 2017-07-19 14:39:07 -0700 | [diff] [blame] | 2044 | } |
| 2045 | } |
Fangwen Fu | 33bcd11 | 2017-02-07 16:42:41 -0800 | [diff] [blame] | 2046 | } |
| 2047 | } |
Jingning Han | 5ab7ed4 | 2017-05-18 16:15:52 -0700 | [diff] [blame] | 2048 | #endif // CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2049 | } |
Angie Chiang | d402282 | 2016-11-02 18:30:25 -0700 | [diff] [blame] | 2050 | |
Yushin Cho | d0b77ac | 2017-10-20 17:33:16 -0700 | [diff] [blame] | 2051 | #if !CONFIG_LV_MAP |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2052 | assert(*tok < tok_end && (*tok)->token == EOSB_TOKEN); |
| 2053 | (*tok)++; |
Yushin Cho | 258a024 | 2017-03-06 13:53:01 -0800 | [diff] [blame] | 2054 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2055 | } |
| 2056 | } |
| 2057 | } |
| 2058 | |
Sebastien Alaiwan | 1bc94fc | 2017-10-31 10:25:17 +0100 | [diff] [blame] | 2059 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2060 | static void write_tokens_sb(AV1_COMP *cpi, const TileInfo *const tile, |
| 2061 | aom_writer *w, const TOKENEXTRA **tok, |
| 2062 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2063 | int mi_col, BLOCK_SIZE bsize) { |
| 2064 | const AV1_COMMON *const cm = &cpi->common; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2065 | const int hbs = mi_size_wide[bsize] / 2; |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2066 | PARTITION_TYPE partition; |
| 2067 | BLOCK_SIZE subsize; |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2068 | |
| 2069 | if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return; |
| 2070 | |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2071 | partition = get_partition(cm, mi_row, mi_col, bsize); |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2072 | subsize = get_subsize(bsize, partition); |
| 2073 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2074 | switch (partition) { |
| 2075 | case PARTITION_NONE: |
| 2076 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2077 | break; |
| 2078 | case PARTITION_HORZ: |
| 2079 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2080 | if (mi_row + hbs < cm->mi_rows) |
| 2081 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2082 | break; |
| 2083 | case PARTITION_VERT: |
| 2084 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2085 | if (mi_col + hbs < cm->mi_cols) |
| 2086 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2087 | break; |
| 2088 | case PARTITION_SPLIT: |
| 2089 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); |
| 2090 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, |
| 2091 | subsize); |
| 2092 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, |
| 2093 | subsize); |
| 2094 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs, |
| 2095 | subsize); |
| 2096 | break; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2097 | #if CONFIG_EXT_PARTITION_TYPES |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2098 | #if CONFIG_EXT_PARTITION_TYPES_AB |
| 2099 | #error NC_MODE_INFO+MOTION_VAR not yet supported for new HORZ/VERT_AB partitions |
| 2100 | #endif |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2101 | case PARTITION_HORZ_A: |
| 2102 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2103 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2104 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2105 | break; |
| 2106 | case PARTITION_HORZ_B: |
| 2107 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2108 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2109 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2110 | break; |
| 2111 | case PARTITION_VERT_A: |
| 2112 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2113 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2114 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2115 | break; |
| 2116 | case PARTITION_VERT_B: |
| 2117 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2118 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2119 | write_tokens_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2120 | break; |
Yue Chen | f27b160 | 2017-01-13 11:11:43 -0800 | [diff] [blame] | 2121 | #endif // CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2122 | default: assert(0); |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2123 | } |
| 2124 | } |
| 2125 | #endif |
| 2126 | |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 2127 | static void write_modes_b(AV1_COMP *cpi, const TileInfo *const tile, |
| 2128 | aom_writer *w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2129 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2130 | int mi_col) { |
| 2131 | write_mbmi_b(cpi, tile, w, mi_row, mi_col); |
Jingning Han | f5a4d3b | 2017-08-27 23:01:19 -0700 | [diff] [blame] | 2132 | |
Sebastien Alaiwan | 1bc94fc | 2017-10-31 10:25:17 +0100 | [diff] [blame] | 2133 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2134 | (void)tok; |
| 2135 | (void)tok_end; |
| 2136 | #else |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2137 | 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] | 2138 | #endif |
Yue Chen | 64550b6 | 2017-01-12 12:18:22 -0800 | [diff] [blame] | 2139 | } |
| 2140 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2141 | static void write_partition(const AV1_COMMON *const cm, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2142 | const MACROBLOCKD *const xd, int hbs, int mi_row, |
| 2143 | int mi_col, PARTITION_TYPE p, BLOCK_SIZE bsize, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2144 | aom_writer *w) { |
Alex Converse | 55c6bde | 2017-01-12 15:55:31 -0800 | [diff] [blame] | 2145 | const int is_partition_point = bsize >= BLOCK_8X8; |
Thomas Davies | c2ec0e4 | 2017-01-11 16:27:27 +0000 | [diff] [blame] | 2146 | |
Jingning Han | bf9c6b7 | 2016-12-14 14:50:45 -0800 | [diff] [blame] | 2147 | if (!is_partition_point) return; |
| 2148 | |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 2149 | const int has_rows = (mi_row + hbs) < cm->mi_rows; |
| 2150 | const int has_cols = (mi_col + hbs) < cm->mi_cols; |
| 2151 | const int ctx = partition_plane_context(xd, mi_row, mi_col, bsize); |
| 2152 | FRAME_CONTEXT *ec_ctx = xd->tile_ctx; |
| 2153 | |
| 2154 | if (!has_rows && !has_cols) { |
| 2155 | assert(p == PARTITION_SPLIT); |
| 2156 | return; |
| 2157 | } |
| 2158 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2159 | if (has_rows && has_cols) { |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 2160 | aom_write_symbol(w, p, ec_ctx->partition_cdf[ctx], |
| 2161 | partition_cdf_length(bsize)); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2162 | } else if (!has_rows && has_cols) { |
| 2163 | assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2164 | assert(bsize > BLOCK_8X8); |
| 2165 | aom_cdf_prob cdf[2]; |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 2166 | partition_gather_vert_alike(cdf, ec_ctx->partition_cdf[ctx], bsize); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2167 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 2168 | } else { |
| 2169 | assert(has_rows && !has_cols); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2170 | assert(p == PARTITION_SPLIT || p == PARTITION_VERT); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2171 | assert(bsize > BLOCK_8X8); |
| 2172 | aom_cdf_prob cdf[2]; |
Rupert Swarbrick | eb12393 | 2017-11-22 15:20:47 +0000 | [diff] [blame] | 2173 | partition_gather_horz_alike(cdf, ec_ctx->partition_cdf[ctx], bsize); |
Stanislav Vitvitskyy | 8711cf5 | 2017-08-18 15:17:57 -0700 | [diff] [blame] | 2174 | aom_write_cdf(w, p == PARTITION_SPLIT, cdf, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2175 | } |
| 2176 | } |
| 2177 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2178 | static void write_modes_sb(AV1_COMP *const cpi, const TileInfo *const tile, |
| 2179 | aom_writer *const w, const TOKENEXTRA **tok, |
Sebastien Alaiwan | 0cf54d4 | 2017-10-16 16:10:04 +0200 | [diff] [blame] | 2180 | const TOKENEXTRA *const tok_end, int mi_row, |
| 2181 | int mi_col, BLOCK_SIZE bsize) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2182 | const AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2183 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
Jingning Han | c709e1f | 2016-12-06 14:48:09 -0800 | [diff] [blame] | 2184 | const int hbs = mi_size_wide[bsize] / 2; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2185 | #if CONFIG_EXT_PARTITION_TYPES |
| 2186 | const int quarter_step = mi_size_wide[bsize] / 4; |
| 2187 | int i; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2188 | #if CONFIG_EXT_PARTITION_TYPES_AB |
| 2189 | const int qbs = mi_size_wide[bsize] / 4; |
| 2190 | #endif // CONFIG_EXT_PARTITION_TYPES_AB |
| 2191 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2192 | const PARTITION_TYPE partition = get_partition(cm, mi_row, mi_col, bsize); |
| 2193 | const BLOCK_SIZE subsize = get_subsize(bsize, partition); |
Jingning Han | 5226184 | 2016-12-14 12:17:49 -0800 | [diff] [blame] | 2194 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2195 | if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols) return; |
| 2196 | |
| 2197 | write_partition(cm, xd, hbs, mi_row, mi_col, partition, bsize, w); |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2198 | switch (partition) { |
| 2199 | case PARTITION_NONE: |
| 2200 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2201 | break; |
| 2202 | case PARTITION_HORZ: |
| 2203 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2204 | if (mi_row + hbs < cm->mi_rows) |
| 2205 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2206 | break; |
| 2207 | case PARTITION_VERT: |
| 2208 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2209 | if (mi_col + hbs < cm->mi_cols) |
| 2210 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2211 | break; |
| 2212 | case PARTITION_SPLIT: |
| 2213 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); |
| 2214 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs, subsize); |
| 2215 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col, subsize); |
| 2216 | write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs, |
| 2217 | subsize); |
| 2218 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2219 | #if CONFIG_EXT_PARTITION_TYPES |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2220 | #if CONFIG_EXT_PARTITION_TYPES_AB |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2221 | case PARTITION_HORZ_A: |
| 2222 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2223 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + qbs, mi_col); |
| 2224 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2225 | break; |
| 2226 | case PARTITION_HORZ_B: |
| 2227 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2228 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2229 | if (mi_row + 3 * qbs < cm->mi_rows) |
| 2230 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + 3 * qbs, mi_col); |
| 2231 | break; |
| 2232 | case PARTITION_VERT_A: |
| 2233 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2234 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + qbs); |
| 2235 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2236 | break; |
| 2237 | case PARTITION_VERT_B: |
| 2238 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2239 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2240 | if (mi_col + 3 * qbs < cm->mi_cols) |
| 2241 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + 3 * qbs); |
| 2242 | break; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2243 | #else |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2244 | case PARTITION_HORZ_A: |
| 2245 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2246 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2247 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2248 | break; |
| 2249 | case PARTITION_HORZ_B: |
| 2250 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2251 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2252 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2253 | break; |
| 2254 | case PARTITION_VERT_A: |
| 2255 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2256 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col); |
| 2257 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2258 | break; |
| 2259 | case PARTITION_VERT_B: |
| 2260 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col); |
| 2261 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + hbs); |
| 2262 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row + hbs, mi_col + hbs); |
| 2263 | break; |
Rupert Swarbrick | 3dd3391 | 2017-09-12 14:24:11 +0100 | [diff] [blame] | 2264 | #endif |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2265 | case PARTITION_HORZ_4: |
| 2266 | for (i = 0; i < 4; ++i) { |
| 2267 | int this_mi_row = mi_row + i * quarter_step; |
| 2268 | if (i > 0 && this_mi_row >= cm->mi_rows) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2269 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2270 | write_modes_b(cpi, tile, w, tok, tok_end, this_mi_row, mi_col); |
| 2271 | } |
| 2272 | break; |
| 2273 | case PARTITION_VERT_4: |
| 2274 | for (i = 0; i < 4; ++i) { |
| 2275 | int this_mi_col = mi_col + i * quarter_step; |
| 2276 | if (i > 0 && this_mi_col >= cm->mi_cols) break; |
Rupert Swarbrick | 93c39e9 | 2017-07-12 11:11:02 +0100 | [diff] [blame] | 2277 | |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2278 | write_modes_b(cpi, tile, w, tok, tok_end, mi_row, this_mi_col); |
| 2279 | } |
| 2280 | break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2281 | #endif // CONFIG_EXT_PARTITION_TYPES |
Debargha Mukherjee | edced25 | 2017-10-20 00:02:00 -0700 | [diff] [blame] | 2282 | default: assert(0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2283 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2284 | |
| 2285 | // update partition context |
| 2286 | #if CONFIG_EXT_PARTITION_TYPES |
| 2287 | update_ext_partition_context(xd, mi_row, mi_col, subsize, bsize, partition); |
| 2288 | #else |
| 2289 | if (bsize >= BLOCK_8X8 && |
| 2290 | (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) |
| 2291 | update_partition_context(xd, mi_row, mi_col, subsize, bsize); |
David Barker | f8935c9 | 2016-10-26 14:54:06 +0100 | [diff] [blame] | 2292 | #endif // CONFIG_EXT_PARTITION_TYPES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2293 | |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2294 | #if CONFIG_LPF_SB |
| 2295 | // send filter level for each superblock (64x64) |
| 2296 | if (bsize == cm->sb_size) { |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2297 | if (mi_row == 0 && mi_col == 0) { |
Cheng Chen | ebcee0b | 2017-12-05 12:36:01 -0800 | [diff] [blame] | 2298 | aom_write_literal(w, cm->mi[0].mbmi.filt_lvl, 6); |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2299 | cm->mi_grid_visible[0]->mbmi.reuse_sb_lvl = 0; |
| 2300 | cm->mi_grid_visible[0]->mbmi.delta = 0; |
| 2301 | cm->mi_grid_visible[0]->mbmi.sign = 0; |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2302 | } else { |
| 2303 | int prev_mi_row, prev_mi_col; |
| 2304 | if (mi_col - MAX_MIB_SIZE < 0) { |
| 2305 | prev_mi_row = mi_row - MAX_MIB_SIZE; |
| 2306 | prev_mi_col = mi_col; |
| 2307 | } else { |
| 2308 | prev_mi_row = mi_row; |
| 2309 | prev_mi_col = mi_col - MAX_MIB_SIZE; |
| 2310 | } |
| 2311 | MB_MODE_INFO *curr_mbmi = |
| 2312 | &cm->mi_grid_visible[mi_row * cm->mi_stride + mi_col]->mbmi; |
| 2313 | MB_MODE_INFO *prev_mbmi = |
| 2314 | &cm->mi_grid_visible[prev_mi_row * cm->mi_stride + prev_mi_col]->mbmi; |
| 2315 | |
| 2316 | const uint8_t curr_lvl = curr_mbmi->filt_lvl; |
| 2317 | const uint8_t prev_lvl = prev_mbmi->filt_lvl; |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2318 | |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2319 | const int reuse_prev_lvl = curr_lvl == prev_lvl; |
| 2320 | const int reuse_ctx = prev_mbmi->reuse_sb_lvl; |
| 2321 | curr_mbmi->reuse_sb_lvl = reuse_prev_lvl; |
| 2322 | aom_write_symbol(w, reuse_prev_lvl, |
| 2323 | xd->tile_ctx->lpf_reuse_cdf[reuse_ctx], 2); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2324 | cpi->td.counts->lpf_reuse[reuse_ctx][reuse_prev_lvl]++; |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 2325 | |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2326 | if (reuse_prev_lvl) { |
| 2327 | curr_mbmi->delta = 0; |
| 2328 | curr_mbmi->sign = 0; |
| 2329 | } else { |
| 2330 | const unsigned int delta = abs(curr_lvl - prev_lvl) / LPF_STEP; |
| 2331 | const int delta_ctx = prev_mbmi->delta; |
| 2332 | curr_mbmi->delta = delta; |
| 2333 | aom_write_symbol(w, delta, xd->tile_ctx->lpf_delta_cdf[delta_ctx], |
| 2334 | DELTA_RANGE); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2335 | cpi->td.counts->lpf_delta[delta_ctx][delta]++; |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2336 | |
| 2337 | if (delta) { |
| 2338 | const int sign = curr_lvl > prev_lvl; |
| 2339 | const int sign_ctx = prev_mbmi->sign; |
| 2340 | curr_mbmi->sign = sign; |
| 2341 | aom_write_symbol(w, sign, |
| 2342 | xd->tile_ctx->lpf_sign_cdf[reuse_ctx][sign_ctx], 2); |
Cheng Chen | 855f0fc | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2343 | cpi->td.counts->lpf_sign[reuse_ctx][sign_ctx][sign]++; |
Cheng Chen | 41d37c2 | 2017-09-08 19:00:21 -0700 | [diff] [blame] | 2344 | } else { |
| 2345 | curr_mbmi->sign = 0; |
| 2346 | } |
Cheng Chen | c7855b1 | 2017-09-05 10:49:08 -0700 | [diff] [blame] | 2347 | } |
Cheng Chen | a4b27de | 2017-08-31 16:05:19 -0700 | [diff] [blame] | 2348 | } |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2349 | } |
| 2350 | #endif |
| 2351 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2352 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2353 | for (int plane = 0; plane < av1_num_planes(cm); ++plane) { |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2354 | int rcol0, rcol1, rrow0, rrow1, tile_tl_idx; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2355 | if (av1_loop_restoration_corners_in_sb(cm, plane, mi_row, mi_col, bsize, |
| 2356 | &rcol0, &rcol1, &rrow0, &rrow1, |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2357 | &tile_tl_idx)) { |
| 2358 | const int rstride = cm->rst_info[plane].horz_units_per_tile; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2359 | for (int rrow = rrow0; rrow < rrow1; ++rrow) { |
| 2360 | for (int rcol = rcol0; rcol < rcol1; ++rcol) { |
Rupert Swarbrick | bcb65fe | 2017-10-25 17:15:28 +0100 | [diff] [blame] | 2361 | const int rtile_idx = tile_tl_idx + rcol + rrow * rstride; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2362 | const RestorationUnitInfo *rui = |
| 2363 | &cm->rst_info[plane].unit_info[rtile_idx]; |
| 2364 | loop_restoration_write_sb_coeffs(cm, xd, rui, w, plane); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2365 | } |
| 2366 | } |
| 2367 | } |
| 2368 | } |
| 2369 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2370 | } |
| 2371 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2372 | static void write_modes(AV1_COMP *const cpi, const TileInfo *const tile, |
| 2373 | aom_writer *const w, const TOKENEXTRA **tok, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2374 | const TOKENEXTRA *const tok_end) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2375 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2376 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 2377 | const int mi_row_start = tile->mi_row_start; |
| 2378 | const int mi_row_end = tile->mi_row_end; |
| 2379 | const int mi_col_start = tile->mi_col_start; |
| 2380 | const int mi_col_end = tile->mi_col_end; |
| 2381 | int mi_row, mi_col; |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2382 | |
| 2383 | #if CONFIG_DEPENDENT_HORZTILES |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 2384 | if (!cm->dependent_horz_tiles || mi_row_start == 0 || |
| 2385 | tile->tg_horz_boundary) { |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2386 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
| 2387 | } |
| 2388 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2389 | av1_zero_above_context(cm, mi_col_start, mi_col_end); |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2390 | #endif |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2391 | if (cpi->common.delta_q_present_flag) { |
| 2392 | xd->prev_qindex = cpi->common.base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2393 | #if CONFIG_EXT_DELTA_Q |
| 2394 | if (cpi->common.delta_lf_present_flag) { |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 2395 | #if CONFIG_LOOPFILTER_LEVEL |
| 2396 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 2397 | xd->prev_delta_lf[lf_id] = 0; |
| 2398 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 2399 | xd->prev_delta_lf_from_base = 0; |
| 2400 | } |
| 2401 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 2402 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2403 | |
| 2404 | 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] | 2405 | av1_zero_left_context(xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2406 | |
| 2407 | 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] | 2408 | 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] | 2409 | #if NC_MODE_INFO |
Yue Chen | 9ab6d71 | 2017-01-12 15:50:46 -0800 | [diff] [blame] | 2410 | write_tokens_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, cm->sb_size); |
| 2411 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2412 | } |
| 2413 | } |
| 2414 | } |
| 2415 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2416 | #if CONFIG_LOOP_RESTORATION |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2417 | static void encode_restoration_mode(AV1_COMMON *cm, |
| 2418 | struct aom_write_bit_buffer *wb) { |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2419 | #if CONFIG_INTRABC |
| 2420 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
| 2421 | #endif // CONFIG_INTRABC |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2422 | int all_none = 1, chroma_none = 1; |
| 2423 | for (int p = 0; p < av1_num_planes(cm); ++p) { |
Rupert Swarbrick | 4596deb | 2017-11-07 18:06:38 +0000 | [diff] [blame] | 2424 | RestorationInfo *rsi = &cm->rst_info[p]; |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2425 | if (rsi->frame_restoration_type != RESTORE_NONE) { |
| 2426 | all_none = 0; |
| 2427 | chroma_none &= p == 0; |
| 2428 | } |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2429 | switch (rsi->frame_restoration_type) { |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2430 | case RESTORE_NONE: |
| 2431 | aom_wb_write_bit(wb, 0); |
| 2432 | aom_wb_write_bit(wb, 0); |
| 2433 | break; |
Debargha Mukherjee | d23ceea | 2017-05-18 20:33:52 -0700 | [diff] [blame] | 2434 | case RESTORE_WIENER: |
| 2435 | aom_wb_write_bit(wb, 1); |
| 2436 | aom_wb_write_bit(wb, 0); |
| 2437 | break; |
| 2438 | case RESTORE_SGRPROJ: |
| 2439 | aom_wb_write_bit(wb, 1); |
| 2440 | aom_wb_write_bit(wb, 1); |
| 2441 | break; |
Debargha Mukherjee | a3d4fe5 | 2017-05-19 16:22:54 -0700 | [diff] [blame] | 2442 | case RESTORE_SWITCHABLE: |
| 2443 | aom_wb_write_bit(wb, 0); |
| 2444 | aom_wb_write_bit(wb, 1); |
| 2445 | break; |
Debargha Mukherjee | a43a2d9 | 2017-01-03 15:14:57 -0800 | [diff] [blame] | 2446 | default: assert(0); |
| 2447 | } |
| 2448 | } |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2449 | if (!all_none) { |
Rupert Swarbrick | 4596deb | 2017-11-07 18:06:38 +0000 | [diff] [blame] | 2450 | RestorationInfo *rsi = &cm->rst_info[0]; |
| 2451 | const int qsize = RESTORATION_TILESIZE_MAX >> 2; |
| 2452 | const int hsize = RESTORATION_TILESIZE_MAX >> 1; |
| 2453 | aom_wb_write_bit(wb, rsi->restoration_unit_size != qsize); |
| 2454 | if (rsi->restoration_unit_size != qsize) { |
| 2455 | aom_wb_write_bit(wb, rsi->restoration_unit_size != hsize); |
Debargha Mukherjee | 1008c1e | 2017-03-06 19:18:43 -0800 | [diff] [blame] | 2456 | } |
| 2457 | } |
Rupert Swarbrick | dcb3cff | 2017-11-09 15:58:33 +0000 | [diff] [blame] | 2458 | |
| 2459 | if (av1_num_planes(cm) > 1) { |
| 2460 | int s = AOMMIN(cm->subsampling_x, cm->subsampling_y); |
| 2461 | if (s && !chroma_none) { |
| 2462 | aom_wb_write_bit(wb, |
| 2463 | cm->rst_info[1].restoration_unit_size != |
| 2464 | cm->rst_info[0].restoration_unit_size); |
| 2465 | assert(cm->rst_info[1].restoration_unit_size == |
| 2466 | cm->rst_info[0].restoration_unit_size || |
| 2467 | cm->rst_info[1].restoration_unit_size == |
| 2468 | (cm->rst_info[0].restoration_unit_size >> s)); |
| 2469 | assert(cm->rst_info[2].restoration_unit_size == |
| 2470 | cm->rst_info[1].restoration_unit_size); |
| 2471 | } else if (!s) { |
| 2472 | assert(cm->rst_info[1].restoration_unit_size == |
| 2473 | cm->rst_info[0].restoration_unit_size); |
| 2474 | assert(cm->rst_info[2].restoration_unit_size == |
| 2475 | cm->rst_info[1].restoration_unit_size); |
| 2476 | } |
Debargha Mukherjee | 84f567c | 2017-06-21 10:53:59 -0700 | [diff] [blame] | 2477 | } |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 2478 | } |
| 2479 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2480 | static void write_wiener_filter(int wiener_win, const WienerInfo *wiener_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2481 | WienerInfo *ref_wiener_info, aom_writer *wb) { |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2482 | if (wiener_win == WIENER_WIN) |
| 2483 | aom_write_primitive_refsubexpfin( |
| 2484 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2485 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2486 | ref_wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2487 | wiener_info->vfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2488 | else |
| 2489 | assert(wiener_info->vfilter[0] == 0 && |
| 2490 | wiener_info->vfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2491 | aom_write_primitive_refsubexpfin( |
| 2492 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2493 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2494 | ref_wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2495 | wiener_info->vfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2496 | aom_write_primitive_refsubexpfin( |
| 2497 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2498 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2499 | ref_wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2500 | wiener_info->vfilter[2] - WIENER_FILT_TAP2_MINV); |
Debargha Mukherjee | 1cb757c | 2017-08-21 02:46:31 -0700 | [diff] [blame] | 2501 | if (wiener_win == WIENER_WIN) |
| 2502 | aom_write_primitive_refsubexpfin( |
| 2503 | wb, WIENER_FILT_TAP0_MAXV - WIENER_FILT_TAP0_MINV + 1, |
| 2504 | WIENER_FILT_TAP0_SUBEXP_K, |
| 2505 | ref_wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV, |
| 2506 | wiener_info->hfilter[0] - WIENER_FILT_TAP0_MINV); |
| 2507 | else |
| 2508 | assert(wiener_info->hfilter[0] == 0 && |
| 2509 | wiener_info->hfilter[WIENER_WIN - 1] == 0); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2510 | aom_write_primitive_refsubexpfin( |
| 2511 | wb, WIENER_FILT_TAP1_MAXV - WIENER_FILT_TAP1_MINV + 1, |
| 2512 | WIENER_FILT_TAP1_SUBEXP_K, |
| 2513 | ref_wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV, |
| 2514 | wiener_info->hfilter[1] - WIENER_FILT_TAP1_MINV); |
| 2515 | aom_write_primitive_refsubexpfin( |
| 2516 | wb, WIENER_FILT_TAP2_MAXV - WIENER_FILT_TAP2_MINV + 1, |
| 2517 | WIENER_FILT_TAP2_SUBEXP_K, |
| 2518 | ref_wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV, |
| 2519 | wiener_info->hfilter[2] - WIENER_FILT_TAP2_MINV); |
| 2520 | memcpy(ref_wiener_info, wiener_info, sizeof(*wiener_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2521 | } |
| 2522 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2523 | static void write_sgrproj_filter(const SgrprojInfo *sgrproj_info, |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2524 | SgrprojInfo *ref_sgrproj_info, |
| 2525 | aom_writer *wb) { |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2526 | aom_write_literal(wb, sgrproj_info->ep, SGRPROJ_PARAMS_BITS); |
Debargha Mukherjee | cfc12f3 | 2017-04-18 07:03:32 -0700 | [diff] [blame] | 2527 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX0 - SGRPROJ_PRJ_MIN0 + 1, |
| 2528 | SGRPROJ_PRJ_SUBEXP_K, |
| 2529 | ref_sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0, |
| 2530 | sgrproj_info->xqd[0] - SGRPROJ_PRJ_MIN0); |
| 2531 | aom_write_primitive_refsubexpfin(wb, SGRPROJ_PRJ_MAX1 - SGRPROJ_PRJ_MIN1 + 1, |
| 2532 | SGRPROJ_PRJ_SUBEXP_K, |
| 2533 | ref_sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1, |
| 2534 | sgrproj_info->xqd[1] - SGRPROJ_PRJ_MIN1); |
| 2535 | memcpy(ref_sgrproj_info, sgrproj_info, sizeof(*sgrproj_info)); |
Debargha Mukherjee | 8f209a8 | 2016-10-12 10:47:01 -0700 | [diff] [blame] | 2536 | } |
| 2537 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2538 | static void loop_restoration_write_sb_coeffs(const AV1_COMMON *const cm, |
| 2539 | MACROBLOCKD *xd, |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2540 | const RestorationUnitInfo *rui, |
| 2541 | aom_writer *const w, int plane) { |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2542 | const RestorationInfo *rsi = cm->rst_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2543 | RestorationType frame_rtype = rsi->frame_restoration_type; |
| 2544 | if (frame_rtype == RESTORE_NONE) return; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2545 | |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2546 | const int wiener_win = (plane > 0) ? WIENER_WIN_CHROMA : WIENER_WIN; |
| 2547 | WienerInfo *wiener_info = xd->wiener_info + plane; |
| 2548 | SgrprojInfo *sgrproj_info = xd->sgrproj_info + plane; |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2549 | RestorationType unit_rtype = rui->restoration_type; |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2550 | |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2551 | if (frame_rtype == RESTORE_SWITCHABLE) { |
| 2552 | aom_write_symbol(w, unit_rtype, xd->tile_ctx->switchable_restore_cdf, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2553 | RESTORE_SWITCHABLE_TYPES); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2554 | switch (unit_rtype) { |
| 2555 | case RESTORE_WIENER: |
| 2556 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
| 2557 | break; |
| 2558 | case RESTORE_SGRPROJ: |
| 2559 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
| 2560 | break; |
| 2561 | default: assert(unit_rtype == RESTORE_NONE); break; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2562 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2563 | } else if (frame_rtype == RESTORE_WIENER) { |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2564 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2565 | xd->tile_ctx->wiener_restore_cdf, 2); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2566 | if (unit_rtype != RESTORE_NONE) { |
| 2567 | write_wiener_filter(wiener_win, &rui->wiener_info, wiener_info, w); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 2568 | } |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2569 | } else if (frame_rtype == RESTORE_SGRPROJ) { |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2570 | aom_write_symbol(w, unit_rtype != RESTORE_NONE, |
Debargha Mukherjee | bc732ef | 2017-10-12 12:40:25 -0700 | [diff] [blame] | 2571 | xd->tile_ctx->sgrproj_restore_cdf, 2); |
Rupert Swarbrick | dd6f09a | 2017-10-19 16:10:23 +0100 | [diff] [blame] | 2572 | if (unit_rtype != RESTORE_NONE) { |
| 2573 | write_sgrproj_filter(&rui->sgrproj_info, sgrproj_info, w); |
Rupert Swarbrick | 09b5b16 | 2017-08-31 16:32:29 +0100 | [diff] [blame] | 2574 | } |
| 2575 | } |
| 2576 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2577 | #endif // CONFIG_LOOP_RESTORATION |
| 2578 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2579 | static void encode_loopfilter(AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2580 | #if CONFIG_INTRABC |
| 2581 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
| 2582 | #endif // CONFIG_INTRABC |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2583 | int i; |
| 2584 | struct loopfilter *lf = &cm->lf; |
| 2585 | |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2586 | // Encode the loop filter level and type |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2587 | #if !CONFIG_LPF_SB |
Cheng Chen | 13fc819 | 2017-08-19 11:49:28 -0700 | [diff] [blame] | 2588 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2589 | aom_wb_write_literal(wb, lf->filter_level[0], 6); |
| 2590 | aom_wb_write_literal(wb, lf->filter_level[1], 6); |
| 2591 | if (lf->filter_level[0] || lf->filter_level[1]) { |
Cheng Chen | e94df5c | 2017-07-19 17:25:33 -0700 | [diff] [blame] | 2592 | aom_wb_write_literal(wb, lf->filter_level_u, 6); |
| 2593 | aom_wb_write_literal(wb, lf->filter_level_v, 6); |
| 2594 | } |
Cheng Chen | 179479f | 2017-08-04 10:56:39 -0700 | [diff] [blame] | 2595 | #else |
| 2596 | aom_wb_write_literal(wb, lf->filter_level, 6); |
Cheng Chen | f572cd3 | 2017-08-25 18:34:51 -0700 | [diff] [blame] | 2597 | #endif // CONFIG_LOOPFILTER_LEVEL |
| 2598 | #endif // CONFIG_LPF_SB |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2599 | aom_wb_write_literal(wb, lf->sharpness_level, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2600 | |
| 2601 | // Write out loop filter deltas applied at the MB level based on mode or |
| 2602 | // ref frame (if they are enabled). |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2603 | aom_wb_write_bit(wb, lf->mode_ref_delta_enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2604 | |
| 2605 | if (lf->mode_ref_delta_enabled) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2606 | aom_wb_write_bit(wb, lf->mode_ref_delta_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2607 | if (lf->mode_ref_delta_update) { |
| 2608 | for (i = 0; i < TOTAL_REFS_PER_FRAME; i++) { |
| 2609 | const int delta = lf->ref_deltas[i]; |
| 2610 | const int changed = delta != lf->last_ref_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2611 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2612 | if (changed) { |
| 2613 | lf->last_ref_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2614 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2615 | } |
| 2616 | } |
| 2617 | |
| 2618 | for (i = 0; i < MAX_MODE_LF_DELTAS; i++) { |
| 2619 | const int delta = lf->mode_deltas[i]; |
| 2620 | const int changed = delta != lf->last_mode_deltas[i]; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2621 | aom_wb_write_bit(wb, changed); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2622 | if (changed) { |
| 2623 | lf->last_mode_deltas[i] = delta; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2624 | aom_wb_write_inv_signed_literal(wb, delta, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2625 | } |
| 2626 | } |
| 2627 | } |
| 2628 | } |
| 2629 | } |
| 2630 | |
Steinar Midtskogen | a9d41e8 | 2017-03-17 12:48:15 +0100 | [diff] [blame] | 2631 | static void encode_cdef(const AV1_COMMON *cm, struct aom_write_bit_buffer *wb) { |
Hui Su | 27df834 | 2017-11-07 15:16:05 -0800 | [diff] [blame] | 2632 | #if CONFIG_INTRABC |
| 2633 | if (cm->allow_intrabc && NO_FILTER_FOR_IBC) return; |
| 2634 | #endif // CONFIG_INTRABC |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2635 | int i; |
Steinar Midtskogen | 5978212 | 2017-07-20 08:49:43 +0200 | [diff] [blame] | 2636 | #if CONFIG_CDEF_SINGLEPASS |
| 2637 | aom_wb_write_literal(wb, cm->cdef_pri_damping - 3, 2); |
| 2638 | assert(cm->cdef_pri_damping == cm->cdef_sec_damping); |
| 2639 | #else |
Steinar Midtskogen | 94de0aa | 2017-08-02 10:30:12 +0200 | [diff] [blame] | 2640 | aom_wb_write_literal(wb, cm->cdef_pri_damping - 5, 1); |
| 2641 | aom_wb_write_literal(wb, cm->cdef_sec_damping - 3, 2); |
Steinar Midtskogen | 5978212 | 2017-07-20 08:49:43 +0200 | [diff] [blame] | 2642 | #endif |
Jean-Marc Valin | 5f5c132 | 2017-03-21 16:20:21 -0400 | [diff] [blame] | 2643 | aom_wb_write_literal(wb, cm->cdef_bits, 2); |
| 2644 | for (i = 0; i < cm->nb_cdef_strengths; i++) { |
| 2645 | aom_wb_write_literal(wb, cm->cdef_strengths[i], CDEF_STRENGTH_BITS); |
Steinar Midtskogen | 1c1161f | 2017-09-08 15:03:51 +0200 | [diff] [blame] | 2646 | if (cm->subsampling_x == cm->subsampling_y) |
| 2647 | 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] | 2648 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2649 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2650 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2651 | 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] | 2652 | if (delta_q != 0) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2653 | aom_wb_write_bit(wb, 1); |
| 2654 | aom_wb_write_inv_signed_literal(wb, delta_q, 6); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2655 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2656 | aom_wb_write_bit(wb, 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2657 | } |
| 2658 | } |
| 2659 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2660 | static void encode_quantization(const AV1_COMMON *const cm, |
| 2661 | struct aom_write_bit_buffer *wb) { |
| 2662 | aom_wb_write_literal(wb, cm->base_qindex, QINDEX_BITS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2663 | write_delta_q(wb, cm->y_dc_delta_q); |
Yaowu Xu | 6fc47e5 | 2017-12-04 15:07:48 -0800 | [diff] [blame^] | 2664 | int diff_uv_delta = (cm->u_dc_delta_q != cm->v_dc_delta_q) || |
| 2665 | (cm->u_ac_delta_q != cm->v_ac_delta_q); |
| 2666 | #if CONFIG_EXT_QM |
| 2667 | if (cm->separate_uv_delta_q) aom_wb_write_bit(wb, diff_uv_delta); |
| 2668 | #else |
| 2669 | assert(!diff_uv_delta); |
| 2670 | #endif |
Yaowu Xu | be42dc7 | 2017-11-08 17:38:24 -0800 | [diff] [blame] | 2671 | write_delta_q(wb, cm->u_dc_delta_q); |
Yaowu Xu | be42dc7 | 2017-11-08 17:38:24 -0800 | [diff] [blame] | 2672 | write_delta_q(wb, cm->u_ac_delta_q); |
Yaowu Xu | 6fc47e5 | 2017-12-04 15:07:48 -0800 | [diff] [blame^] | 2673 | if (diff_uv_delta) { |
| 2674 | write_delta_q(wb, cm->v_dc_delta_q); |
| 2675 | write_delta_q(wb, cm->v_ac_delta_q); |
| 2676 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2677 | #if CONFIG_AOM_QM |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2678 | aom_wb_write_bit(wb, cm->using_qmatrix); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2679 | if (cm->using_qmatrix) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2680 | aom_wb_write_literal(wb, cm->min_qmlevel, QM_LEVEL_BITS); |
| 2681 | aom_wb_write_literal(wb, cm->max_qmlevel, QM_LEVEL_BITS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2682 | } |
| 2683 | #endif |
| 2684 | } |
| 2685 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2686 | static void encode_segmentation(AV1_COMMON *cm, MACROBLOCKD *xd, |
| 2687 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2688 | int i, j; |
| 2689 | const struct segmentation *seg = &cm->seg; |
| 2690 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2691 | aom_wb_write_bit(wb, seg->enabled); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2692 | if (!seg->enabled) return; |
| 2693 | |
| 2694 | // Segmentation map |
| 2695 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2696 | aom_wb_write_bit(wb, seg->update_map); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2697 | } else { |
| 2698 | assert(seg->update_map == 1); |
| 2699 | } |
| 2700 | if (seg->update_map) { |
| 2701 | // Select the coding strategy (temporal or spatial) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2702 | av1_choose_segmap_coding_method(cm, xd); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2703 | |
| 2704 | // Write out the chosen coding method. |
| 2705 | if (!frame_is_intra_only(cm) && !cm->error_resilient_mode) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2706 | aom_wb_write_bit(wb, seg->temporal_update); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2707 | } else { |
| 2708 | assert(seg->temporal_update == 0); |
| 2709 | } |
| 2710 | } |
| 2711 | |
| 2712 | // Segmentation data |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2713 | aom_wb_write_bit(wb, seg->update_data); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2714 | if (seg->update_data) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2715 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 2716 | for (j = 0; j < SEG_LVL_MAX; j++) { |
| 2717 | const int active = segfeature_active(seg, i, j); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2718 | aom_wb_write_bit(wb, active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2719 | if (active) { |
| 2720 | const int data = get_segdata(seg, i, j); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2721 | const int data_max = av1_seg_feature_data_max(j); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2722 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2723 | if (av1_is_segfeature_signed(j)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2724 | encode_unsigned_max(wb, abs(data), data_max); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2725 | aom_wb_write_bit(wb, data < 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2726 | } else { |
| 2727 | encode_unsigned_max(wb, data, data_max); |
| 2728 | } |
| 2729 | } |
| 2730 | } |
| 2731 | } |
| 2732 | } |
| 2733 | } |
| 2734 | |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 2735 | #if CONFIG_Q_SEGMENTATION |
| 2736 | static void encode_q_segmentation(AV1_COMMON *cm, |
| 2737 | struct aom_write_bit_buffer *wb) { |
| 2738 | int i; |
| 2739 | struct segmentation *seg = &cm->seg; |
| 2740 | |
| 2741 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 2742 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 2743 | seg->q_lvls = 0; |
| 2744 | return; |
| 2745 | } |
| 2746 | } |
| 2747 | |
| 2748 | aom_wb_write_bit(wb, !!seg->q_lvls); |
| 2749 | if (!seg->q_lvls) return; |
| 2750 | |
| 2751 | encode_unsigned_max(wb, seg->q_lvls, MAX_SEGMENTS); |
| 2752 | |
| 2753 | for (i = 0; i < seg->q_lvls; i++) { |
| 2754 | const int val = seg->q_delta[i]; |
| 2755 | encode_unsigned_max(wb, abs(val), MAXQ); |
| 2756 | aom_wb_write_bit(wb, val < 0); |
| 2757 | } |
| 2758 | } |
| 2759 | #endif |
| 2760 | |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2761 | static void write_tx_mode(AV1_COMMON *cm, TX_MODE *mode, |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2762 | struct aom_write_bit_buffer *wb) { |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 2763 | if (cm->all_lossless) { |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2764 | *mode = ONLY_4X4; |
| 2765 | return; |
| 2766 | } |
Debargha Mukherjee | 923b73d | 2017-10-31 18:11:34 -0700 | [diff] [blame] | 2767 | #if CONFIG_SIMPLIFY_TX_MODE |
| 2768 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
| 2769 | #else |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2770 | #if CONFIG_TX64X64 |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2771 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
| 2772 | if (*mode != TX_MODE_SELECT) { |
| 2773 | aom_wb_write_literal(wb, AOMMIN(*mode, ALLOW_32X32), 2); |
| 2774 | if (*mode >= ALLOW_32X32) aom_wb_write_bit(wb, *mode == ALLOW_64X64); |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2775 | } |
| 2776 | #else |
Yue Chen | eeacc4c | 2017-01-17 17:29:17 -0800 | [diff] [blame] | 2777 | aom_wb_write_bit(wb, *mode == TX_MODE_SELECT); |
| 2778 | if (*mode != TX_MODE_SELECT) aom_wb_write_literal(wb, *mode, 2); |
Debargha Mukherjee | 18d38f6 | 2016-11-17 20:30:16 -0800 | [diff] [blame] | 2779 | #endif // CONFIG_TX64X64 |
Debargha Mukherjee | 923b73d | 2017-10-31 18:11:34 -0700 | [diff] [blame] | 2780 | #endif // CONFIG_SIMPLIFY_TX_MODE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2781 | } |
| 2782 | |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 2783 | static void write_frame_interp_filter(InterpFilter filter, |
| 2784 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2785 | aom_wb_write_bit(wb, filter == SWITCHABLE); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2786 | if (filter != SWITCHABLE) |
Angie Chiang | 6305abe | 2016-10-24 12:24:44 -0700 | [diff] [blame] | 2787 | aom_wb_write_literal(wb, filter, LOG_SWITCHABLE_FILTERS); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2788 | } |
| 2789 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2790 | static void fix_interp_filter(AV1_COMMON *cm, FRAME_COUNTS *counts) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2791 | if (cm->interp_filter == SWITCHABLE) { |
| 2792 | // Check to see if only one of the filters is actually used |
| 2793 | int count[SWITCHABLE_FILTERS]; |
| 2794 | int i, j, c = 0; |
| 2795 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2796 | count[i] = 0; |
| 2797 | for (j = 0; j < SWITCHABLE_FILTER_CONTEXTS; ++j) |
| 2798 | count[i] += counts->switchable_interp[j][i]; |
| 2799 | c += (count[i] > 0); |
| 2800 | } |
| 2801 | if (c == 1) { |
| 2802 | // Only one filter is used. So set the filter at frame level |
| 2803 | for (i = 0; i < SWITCHABLE_FILTERS; ++i) { |
| 2804 | if (count[i]) { |
Sarah Parker | 4c10a3c | 2017-04-10 19:37:59 -0700 | [diff] [blame] | 2805 | if (i == EIGHTTAP_REGULAR || WARP_WM_NEIGHBORS_WITH_OBMC) |
Debargha Mukherjee | 604d846 | 2017-04-06 15:27:00 -0700 | [diff] [blame] | 2806 | cm->interp_filter = i; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2807 | break; |
| 2808 | } |
| 2809 | } |
| 2810 | } |
| 2811 | } |
| 2812 | } |
| 2813 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2814 | #if CONFIG_MAX_TILE |
| 2815 | |
| 2816 | // Same function as write_uniform but writing to uncompresses header wb |
| 2817 | static void wb_write_uniform(struct aom_write_bit_buffer *wb, int n, int v) { |
| 2818 | const int l = get_unsigned_bits(n); |
| 2819 | const int m = (1 << l) - n; |
| 2820 | if (l == 0) return; |
| 2821 | if (v < m) { |
| 2822 | aom_wb_write_literal(wb, v, l - 1); |
| 2823 | } else { |
| 2824 | aom_wb_write_literal(wb, m + ((v - m) >> 1), l - 1); |
| 2825 | aom_wb_write_literal(wb, (v - m) & 1, 1); |
| 2826 | } |
| 2827 | } |
| 2828 | |
| 2829 | static void write_tile_info_max_tile(const AV1_COMMON *const cm, |
| 2830 | struct aom_write_bit_buffer *wb) { |
Dominic Symes | 917d6c0 | 2017-10-11 18:00:52 +0200 | [diff] [blame] | 2831 | int width_mi = ALIGN_POWER_OF_TWO(cm->mi_cols, cm->mib_size_log2); |
| 2832 | int height_mi = ALIGN_POWER_OF_TWO(cm->mi_rows, cm->mib_size_log2); |
| 2833 | int width_sb = width_mi >> cm->mib_size_log2; |
| 2834 | int height_sb = height_mi >> cm->mib_size_log2; |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2835 | int size_sb, i; |
| 2836 | |
| 2837 | aom_wb_write_bit(wb, cm->uniform_tile_spacing_flag); |
| 2838 | |
| 2839 | if (cm->uniform_tile_spacing_flag) { |
| 2840 | // Uniform spaced tiles with power-of-two number of rows and columns |
| 2841 | // tile columns |
| 2842 | int ones = cm->log2_tile_cols - cm->min_log2_tile_cols; |
| 2843 | while (ones--) { |
| 2844 | aom_wb_write_bit(wb, 1); |
| 2845 | } |
| 2846 | if (cm->log2_tile_cols < cm->max_log2_tile_cols) { |
| 2847 | aom_wb_write_bit(wb, 0); |
| 2848 | } |
| 2849 | |
| 2850 | // rows |
| 2851 | ones = cm->log2_tile_rows - cm->min_log2_tile_rows; |
| 2852 | while (ones--) { |
| 2853 | aom_wb_write_bit(wb, 1); |
| 2854 | } |
| 2855 | if (cm->log2_tile_rows < cm->max_log2_tile_rows) { |
| 2856 | aom_wb_write_bit(wb, 0); |
| 2857 | } |
| 2858 | } else { |
| 2859 | // Explicit tiles with configurable tile widths and heights |
| 2860 | // columns |
| 2861 | for (i = 0; i < cm->tile_cols; i++) { |
| 2862 | size_sb = cm->tile_col_start_sb[i + 1] - cm->tile_col_start_sb[i]; |
| 2863 | wb_write_uniform(wb, AOMMIN(width_sb, MAX_TILE_WIDTH_SB), size_sb - 1); |
| 2864 | width_sb -= size_sb; |
| 2865 | } |
| 2866 | assert(width_sb == 0); |
| 2867 | |
| 2868 | // rows |
| 2869 | for (i = 0; i < cm->tile_rows; i++) { |
| 2870 | size_sb = cm->tile_row_start_sb[i + 1] - cm->tile_row_start_sb[i]; |
| 2871 | wb_write_uniform(wb, AOMMIN(height_sb, cm->max_tile_height_sb), |
| 2872 | size_sb - 1); |
| 2873 | height_sb -= size_sb; |
| 2874 | } |
| 2875 | assert(height_sb == 0); |
| 2876 | } |
| 2877 | } |
| 2878 | #endif |
| 2879 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2880 | static void write_tile_info(const AV1_COMMON *const cm, |
| 2881 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2882 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2883 | if (cm->large_scale_tile) { |
| 2884 | const int tile_width = |
| 2885 | ALIGN_POWER_OF_TWO(cm->tile_width, cm->mib_size_log2) >> |
| 2886 | cm->mib_size_log2; |
| 2887 | const int tile_height = |
| 2888 | ALIGN_POWER_OF_TWO(cm->tile_height, cm->mib_size_log2) >> |
| 2889 | cm->mib_size_log2; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2890 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2891 | assert(tile_width > 0); |
| 2892 | assert(tile_height > 0); |
Yunqing Wang | d8cd55f | 2017-02-27 12:16:00 -0800 | [diff] [blame] | 2893 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2894 | // Write the tile sizes |
| 2895 | #if CONFIG_EXT_PARTITION |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2896 | if (cm->sb_size == BLOCK_128X128) { |
| 2897 | assert(tile_width <= 32); |
| 2898 | assert(tile_height <= 32); |
| 2899 | aom_wb_write_literal(wb, tile_width - 1, 5); |
| 2900 | aom_wb_write_literal(wb, tile_height - 1, 5); |
| 2901 | } else { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2902 | #endif // CONFIG_EXT_PARTITION |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2903 | assert(tile_width <= 64); |
| 2904 | assert(tile_height <= 64); |
| 2905 | aom_wb_write_literal(wb, tile_width - 1, 6); |
| 2906 | aom_wb_write_literal(wb, tile_height - 1, 6); |
| 2907 | #if CONFIG_EXT_PARTITION |
| 2908 | } |
| 2909 | #endif // CONFIG_EXT_PARTITION |
| 2910 | } else { |
| 2911 | #endif // CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2912 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2913 | #if CONFIG_MAX_TILE |
| 2914 | write_tile_info_max_tile(cm, wb); |
| 2915 | #else |
| 2916 | int min_log2_tile_cols, max_log2_tile_cols, ones; |
| 2917 | 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] | 2918 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2919 | // columns |
| 2920 | ones = cm->log2_tile_cols - min_log2_tile_cols; |
| 2921 | while (ones--) aom_wb_write_bit(wb, 1); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2922 | |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2923 | if (cm->log2_tile_cols < max_log2_tile_cols) aom_wb_write_bit(wb, 0); |
| 2924 | |
| 2925 | // rows |
| 2926 | aom_wb_write_bit(wb, cm->log2_tile_rows != 0); |
| 2927 | if (cm->log2_tile_rows != 0) aom_wb_write_bit(wb, cm->log2_tile_rows != 1); |
| 2928 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 2929 | #if CONFIG_DEPENDENT_HORZTILES |
Dominic Symes | db5d66f | 2017-08-18 18:11:34 +0200 | [diff] [blame] | 2930 | 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] | 2931 | #endif |
| 2932 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2933 | } |
Fangwen Fu | 70bcb89 | 2017-05-06 17:05:19 -0700 | [diff] [blame] | 2934 | #endif // CONFIG_EXT_TILE |
Fangwen Fu | 7b9f2b3 | 2017-01-17 14:01:52 -0800 | [diff] [blame] | 2935 | |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2936 | #if CONFIG_LOOPFILTERING_ACROSS_TILES |
Yunqing Wang | 42015d1 | 2017-10-17 15:43:49 -0700 | [diff] [blame] | 2937 | if (cm->tile_cols * cm->tile_rows > 1) |
| 2938 | aom_wb_write_bit(wb, cm->loop_filter_across_tiles_enabled); |
Ryan Lei | 9b02b0e | 2017-01-30 15:52:20 -0800 | [diff] [blame] | 2939 | #endif // CONFIG_LOOPFILTERING_ACROSS_TILES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2940 | } |
| 2941 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2942 | #if USE_GF16_MULTI_LAYER |
| 2943 | static int get_refresh_mask_gf16(AV1_COMP *cpi) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2944 | int refresh_mask = 0; |
| 2945 | |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2946 | if (cpi->refresh_last_frame || cpi->refresh_golden_frame || |
| 2947 | cpi->refresh_bwd_ref_frame || cpi->refresh_alt2_ref_frame || |
| 2948 | cpi->refresh_alt_ref_frame) { |
| 2949 | assert(cpi->refresh_fb_idx >= 0 && cpi->refresh_fb_idx < REF_FRAMES); |
| 2950 | refresh_mask |= (1 << cpi->refresh_fb_idx); |
| 2951 | } |
| 2952 | |
| 2953 | return refresh_mask; |
| 2954 | } |
| 2955 | #endif // USE_GF16_MULTI_LAYER |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2956 | |
| 2957 | static int get_refresh_mask(AV1_COMP *cpi) { |
Yi Luo | 2e6a9ab | 2017-09-15 08:13:59 -0700 | [diff] [blame] | 2958 | int refresh_mask = 0; |
Zoe Liu | 8dd1c98 | 2017-09-11 10:14:35 -0700 | [diff] [blame] | 2959 | #if USE_GF16_MULTI_LAYER |
| 2960 | if (cpi->rc.baseline_gf_interval == 16) return get_refresh_mask_gf16(cpi); |
| 2961 | #endif // USE_GF16_MULTI_LAYER |
| 2962 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2963 | // NOTE(zoeliu): When LAST_FRAME is to get refreshed, the decoder will be |
| 2964 | // notified to get LAST3_FRAME refreshed and then the virtual indexes for all |
| 2965 | // the 3 LAST reference frames will be updated accordingly, i.e.: |
| 2966 | // (1) The original virtual index for LAST3_FRAME will become the new virtual |
| 2967 | // index for LAST_FRAME; and |
| 2968 | // (2) The original virtual indexes for LAST_FRAME and LAST2_FRAME will be |
| 2969 | // shifted and become the new virtual indexes for LAST2_FRAME and |
| 2970 | // LAST3_FRAME. |
| 2971 | refresh_mask |= |
| 2972 | (cpi->refresh_last_frame << cpi->lst_fb_idxes[LAST_REF_FRAMES - 1]); |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2973 | |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2974 | refresh_mask |= (cpi->refresh_bwd_ref_frame << cpi->bwd_fb_idx); |
| 2975 | refresh_mask |= (cpi->refresh_alt2_ref_frame << cpi->alt2_fb_idx); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2976 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2977 | if (av1_preserve_existing_gf(cpi)) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2978 | // We have decided to preserve the previously existing golden frame as our |
| 2979 | // new ARF frame. However, in the short term we leave it in the GF slot and, |
| 2980 | // if we're updating the GF with the current decoded frame, we save it |
| 2981 | // instead to the ARF slot. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 2982 | // Later, in the function av1_encoder.c:av1_update_reference_frames() we |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2983 | // will swap gld_fb_idx and alt_fb_idx to achieve our objective. We do it |
| 2984 | // there so that it can be done outside of the recode loop. |
| 2985 | // Note: This is highly specific to the use of ARF as a forward reference, |
| 2986 | // and this needs to be generalized as other uses are implemented |
| 2987 | // (like RTC/temporal scalability). |
| 2988 | return refresh_mask | (cpi->refresh_golden_frame << cpi->alt_fb_idx); |
| 2989 | } else { |
Zoe Liu | e9b15e2 | 2017-07-19 15:53:01 -0700 | [diff] [blame] | 2990 | const int arf_idx = cpi->alt_fb_idx; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 2991 | return refresh_mask | (cpi->refresh_golden_frame << cpi->gld_fb_idx) | |
| 2992 | (cpi->refresh_alt_ref_frame << arf_idx); |
| 2993 | } |
| 2994 | } |
| 2995 | |
| 2996 | #if CONFIG_EXT_TILE |
| 2997 | static INLINE int find_identical_tile( |
| 2998 | const int tile_row, const int tile_col, |
| 2999 | TileBufferEnc (*const tile_buffers)[1024]) { |
| 3000 | const MV32 candidate_offset[1] = { { 1, 0 } }; |
| 3001 | const uint8_t *const cur_tile_data = |
| 3002 | tile_buffers[tile_row][tile_col].data + 4; |
Jingning Han | 99ffce6 | 2017-04-25 15:48:41 -0700 | [diff] [blame] | 3003 | 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] | 3004 | |
| 3005 | int i; |
| 3006 | |
| 3007 | if (tile_row == 0) return 0; |
| 3008 | |
| 3009 | // (TODO: yunqingwang) For now, only above tile is checked and used. |
| 3010 | // More candidates such as left tile can be added later. |
| 3011 | for (i = 0; i < 1; i++) { |
| 3012 | int row_offset = candidate_offset[0].row; |
| 3013 | int col_offset = candidate_offset[0].col; |
| 3014 | int row = tile_row - row_offset; |
| 3015 | int col = tile_col - col_offset; |
| 3016 | uint8_t tile_hdr; |
| 3017 | const uint8_t *tile_data; |
| 3018 | TileBufferEnc *candidate; |
| 3019 | |
| 3020 | if (row < 0 || col < 0) continue; |
| 3021 | |
| 3022 | tile_hdr = *(tile_buffers[row][col].data); |
| 3023 | |
| 3024 | // Read out tcm bit |
| 3025 | if ((tile_hdr >> 7) == 1) { |
| 3026 | // The candidate is a copy tile itself |
| 3027 | row_offset += tile_hdr & 0x7f; |
| 3028 | row = tile_row - row_offset; |
| 3029 | } |
| 3030 | |
| 3031 | candidate = &tile_buffers[row][col]; |
| 3032 | |
| 3033 | if (row_offset >= 128 || candidate->size != cur_tile_size) continue; |
| 3034 | |
| 3035 | tile_data = candidate->data + 4; |
| 3036 | |
| 3037 | if (memcmp(tile_data, cur_tile_data, cur_tile_size) != 0) continue; |
| 3038 | |
| 3039 | // Identical tile found |
| 3040 | assert(row_offset > 0); |
| 3041 | return row_offset; |
| 3042 | } |
| 3043 | |
| 3044 | // No identical tile found |
| 3045 | return 0; |
| 3046 | } |
| 3047 | #endif // CONFIG_EXT_TILE |
| 3048 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3049 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3050 | 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] | 3051 | unsigned int *max_tile_size, |
| 3052 | unsigned int *max_tile_col_size) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3053 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3054 | aom_writer mode_bc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3055 | int tile_row, tile_col; |
| 3056 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
clang-format | 67948d3 | 2016-09-07 22:40:40 -0700 | [diff] [blame] | 3057 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3058 | uint32_t total_size = 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3059 | const int tile_cols = cm->tile_cols; |
| 3060 | const int tile_rows = cm->tile_rows; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3061 | unsigned int tile_size = 0; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3062 | const int have_tiles = tile_cols * tile_rows > 1; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3063 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3064 | 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] | 3065 | uint32_t compressed_hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3066 | // Fixed size tile groups for the moment |
| 3067 | const int num_tg_hdrs = cm->num_tg; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3068 | const int tg_size = |
| 3069 | #if CONFIG_EXT_TILE |
| 3070 | (cm->large_scale_tile) |
| 3071 | ? 1 |
| 3072 | : |
| 3073 | #endif // CONFIG_EXT_TILE |
| 3074 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3075 | int tile_count = 0; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3076 | int tg_count = 1; |
| 3077 | int tile_size_bytes = 4; |
| 3078 | int tile_col_size_bytes; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3079 | uint32_t uncompressed_hdr_size = 0; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3080 | struct aom_write_bit_buffer tg_params_wb; |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3081 | struct aom_write_bit_buffer tile_size_bytes_wb; |
James Zern | 71a37de | 2017-04-20 16:03:13 -0700 | [diff] [blame] | 3082 | uint32_t saved_offset; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3083 | int mtu_size = cpi->oxcf.mtu; |
| 3084 | int curr_tg_data_size = 0; |
| 3085 | int hdr_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3086 | |
| 3087 | *max_tile_size = 0; |
| 3088 | *max_tile_col_size = 0; |
| 3089 | |
| 3090 | // All tile size fields are output on 4 bytes. A call to remux_tiles will |
| 3091 | // later compact the data if smaller headers are adequate. |
| 3092 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3093 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3094 | cm->largest_tile_id = 0; |
| 3095 | #endif |
| 3096 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3097 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3098 | if (cm->large_scale_tile) { |
| 3099 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 3100 | TileInfo tile_info; |
| 3101 | const int is_last_col = (tile_col == tile_cols - 1); |
| 3102 | const uint32_t col_offset = total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3103 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3104 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3105 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3106 | // The last column does not have a column header |
| 3107 | if (!is_last_col) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3108 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3109 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 3110 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 3111 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 3112 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 3113 | const int data_offset = have_tiles ? 4 : 0; |
| 3114 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 3115 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 3116 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3117 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3118 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3119 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3120 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 3121 | // even for the last one, unless no tiling is used at all. |
| 3122 | total_size += data_offset; |
| 3123 | // Initialise tile context from the frame context |
| 3124 | this_tile->tctx = *cm->fc; |
| 3125 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 3126 | mode_bc.allow_update_cdf = !cm->large_scale_tile; |
Rupert Swarbrick | 7546b30 | 2017-10-26 10:45:26 +0100 | [diff] [blame] | 3127 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | 7640520 | 2017-11-07 16:35:55 +0000 | [diff] [blame] | 3128 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd); |
Rupert Swarbrick | 7546b30 | 2017-10-26 10:45:26 +0100 | [diff] [blame] | 3129 | #endif // CONFIG_LOOP_RESTORATION |
| 3130 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3131 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 3132 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 3133 | assert(tok == tok_end); |
| 3134 | aom_stop_encode(&mode_bc); |
| 3135 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3136 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3137 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3138 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3139 | if (tile_size > *max_tile_size) { |
| 3140 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 3141 | } |
| 3142 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3143 | // Record the maximum tile size we see, so we can compact headers later. |
| 3144 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3145 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3146 | if (have_tiles) { |
| 3147 | // tile header: size of this tile, or copy offset |
| 3148 | uint32_t tile_header = tile_size; |
| 3149 | const int tile_copy_mode = |
| 3150 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 3151 | ? 1 |
| 3152 | : 0; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3153 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3154 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 3155 | // Very low chances to have copy tiles on the key frames, so don't |
| 3156 | // search on key frames to reduce unnecessary search. |
| 3157 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 3158 | const int idendical_tile_offset = |
| 3159 | find_identical_tile(tile_row, tile_col, tile_buffers); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3160 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3161 | if (idendical_tile_offset > 0) { |
| 3162 | tile_size = 0; |
| 3163 | tile_header = idendical_tile_offset | 0x80; |
| 3164 | tile_header <<= 24; |
| 3165 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3166 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3167 | |
| 3168 | mem_put_le32(buf->data, tile_header); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3169 | } |
| 3170 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3171 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3172 | } |
| 3173 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3174 | if (!is_last_col) { |
| 3175 | uint32_t col_size = total_size - col_offset - 4; |
| 3176 | mem_put_le32(dst + col_offset, col_size); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3177 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3178 | // If it is not final packing, record the maximum tile column size we |
| 3179 | // see, otherwise, check if the tile size is out of the range. |
| 3180 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 3181 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3182 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3183 | } else { |
| 3184 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 3185 | |
| 3186 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3187 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 3188 | #else |
| 3189 | write_uncompressed_header_obu(cpi, &wb); |
| 3190 | #endif |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3191 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3192 | if (cm->show_existing_frame) { |
| 3193 | total_size = aom_wb_bytes_written(&wb); |
| 3194 | return (uint32_t)total_size; |
| 3195 | } |
Jingning Han | d3f441c | 2017-03-06 09:12:54 -0800 | [diff] [blame] | 3196 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3197 | // Write the tile length code |
| 3198 | tile_size_bytes_wb = wb; |
| 3199 | aom_wb_write_literal(&wb, 3, 2); |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3200 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3201 | /* Write a placeholder for the number of tiles in each tile group */ |
| 3202 | tg_params_wb = wb; |
| 3203 | saved_offset = wb.bit_offset; |
| 3204 | if (have_tiles) { |
Imdad Sardharwalla | 857c99b | 2017-11-21 15:53:31 +0000 | [diff] [blame] | 3205 | aom_wb_write_literal(&wb, 3, n_log2_tiles); |
| 3206 | aom_wb_write_literal(&wb, (1 << n_log2_tiles) - 1, n_log2_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3207 | } |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3208 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3209 | if (!use_compressed_header(cm)) { |
| 3210 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 3211 | compressed_hdr_size = 0; |
| 3212 | } else { |
| 3213 | /* Write a placeholder for the compressed header length */ |
| 3214 | struct aom_write_bit_buffer comp_hdr_len_wb = wb; |
| 3215 | aom_wb_write_literal(&wb, 0, 16); |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3216 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3217 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 3218 | compressed_hdr_size = |
| 3219 | write_compressed_header(cpi, dst + uncompressed_hdr_size); |
| 3220 | aom_wb_overwrite_literal(&comp_hdr_len_wb, (int)(compressed_hdr_size), |
| 3221 | 16); |
| 3222 | } |
| 3223 | |
| 3224 | hdr_size = uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3225 | total_size += hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 3226 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3227 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 3228 | TileInfo tile_info; |
| 3229 | const int is_last_row = (tile_row == tile_rows - 1); |
| 3230 | av1_tile_set_row(&tile_info, cm, tile_row); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3231 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3232 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 3233 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 3234 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 3235 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 3236 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 3237 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 3238 | const int is_last_col = (tile_col == tile_cols - 1); |
| 3239 | const int is_last_tile = is_last_col && is_last_row; |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3240 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3241 | if ((!mtu_size && tile_count > tg_size) || |
| 3242 | (mtu_size && tile_count && curr_tg_data_size >= mtu_size)) { |
| 3243 | // New tile group |
| 3244 | tg_count++; |
| 3245 | // We've exceeded the packet size |
| 3246 | if (tile_count > 1) { |
| 3247 | /* The last tile exceeded the packet size. The tile group size |
| 3248 | should therefore be tile_count-1. |
| 3249 | Move the last tile and insert headers before it |
| 3250 | */ |
| 3251 | uint32_t old_total_size = total_size - tile_size - 4; |
| 3252 | memmove(dst + old_total_size + hdr_size, dst + old_total_size, |
| 3253 | (tile_size + 4) * sizeof(uint8_t)); |
| 3254 | // Copy uncompressed header |
| 3255 | memmove(dst + old_total_size, dst, |
| 3256 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 3257 | // Write the number of tiles in the group into the last uncompressed |
| 3258 | // header before the one we've just inserted |
| 3259 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 3260 | n_log2_tiles); |
| 3261 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 2, |
| 3262 | n_log2_tiles); |
| 3263 | // Update the pointer to the last TG params |
| 3264 | tg_params_wb.bit_offset = saved_offset + 8 * old_total_size; |
| 3265 | // Copy compressed header |
| 3266 | memmove(dst + old_total_size + uncompressed_hdr_size, |
| 3267 | dst + uncompressed_hdr_size, |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3268 | compressed_hdr_size * sizeof(uint8_t)); |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3269 | total_size += hdr_size; |
| 3270 | tile_count = 1; |
| 3271 | curr_tg_data_size = hdr_size + tile_size + 4; |
| 3272 | } else { |
| 3273 | // We exceeded the packet size in just one tile |
| 3274 | // Copy uncompressed header |
| 3275 | memmove(dst + total_size, dst, |
| 3276 | uncompressed_hdr_size * sizeof(uint8_t)); |
| 3277 | // Write the number of tiles in the group into the last uncompressed |
| 3278 | // header |
| 3279 | aom_wb_overwrite_literal(&tg_params_wb, tile_idx - tile_count, |
| 3280 | n_log2_tiles); |
| 3281 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, |
| 3282 | n_log2_tiles); |
| 3283 | tg_params_wb.bit_offset = saved_offset + 8 * total_size; |
| 3284 | // Copy compressed header |
| 3285 | memmove(dst + total_size + uncompressed_hdr_size, |
| 3286 | dst + uncompressed_hdr_size, |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3287 | compressed_hdr_size * sizeof(uint8_t)); |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3288 | total_size += hdr_size; |
| 3289 | tile_count = 0; |
| 3290 | curr_tg_data_size = hdr_size; |
| 3291 | } |
Thomas Davies | af6df17 | 2016-11-09 14:04:18 +0000 | [diff] [blame] | 3292 | } |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3293 | tile_count++; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3294 | av1_tile_set_col(&tile_info, cm, tile_col); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3295 | |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 3296 | #if CONFIG_DEPENDENT_HORZTILES |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3297 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
Fangwen Fu | 73126c0 | 2017-02-08 22:37:47 -0800 | [diff] [blame] | 3298 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3299 | buf->data = dst + total_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3300 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3301 | // The last tile does not have a header. |
| 3302 | if (!is_last_tile) total_size += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3303 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3304 | // Initialise tile context from the frame context |
| 3305 | this_tile->tctx = *cm->fc; |
| 3306 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 3307 | mode_bc.allow_update_cdf = 1; |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 3308 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | 7640520 | 2017-11-07 16:35:55 +0000 | [diff] [blame] | 3309 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd); |
Rupert Swarbrick | 6c54521 | 2017-09-01 17:17:25 +0100 | [diff] [blame] | 3310 | #endif // CONFIG_LOOP_RESTORATION |
| 3311 | |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3312 | aom_start_encode(&mode_bc, dst + total_size); |
| 3313 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
Jingning Han | 223b90e | 2017-04-04 09:48:37 -0700 | [diff] [blame] | 3314 | #if !CONFIG_LV_MAP |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3315 | assert(tok == tok_end); |
Jingning Han | 223b90e | 2017-04-04 09:48:37 -0700 | [diff] [blame] | 3316 | #endif // !CONFIG_LV_MAP |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 3317 | aom_stop_encode(&mode_bc); |
| 3318 | tile_size = mode_bc.pos; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3319 | assert(tile_size > 0); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3320 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3321 | curr_tg_data_size += tile_size + 4; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3322 | buf->size = tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3323 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 3324 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 3325 | if (tile_size > *max_tile_size) { |
| 3326 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 3327 | } |
| 3328 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3329 | if (!is_last_tile) { |
| 3330 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 3331 | // size of this tile |
| 3332 | mem_put_le32(buf->data, tile_size); |
| 3333 | } |
| 3334 | |
| 3335 | total_size += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3336 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3337 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3338 | // Write the final tile group size |
| 3339 | if (n_log2_tiles) { |
Dominic Symes | f58f111 | 2017-09-25 12:47:40 +0200 | [diff] [blame] | 3340 | aom_wb_overwrite_literal( |
| 3341 | &tg_params_wb, (tile_cols * tile_rows) - tile_count, n_log2_tiles); |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3342 | aom_wb_overwrite_literal(&tg_params_wb, tile_count - 1, n_log2_tiles); |
| 3343 | } |
| 3344 | // Remux if possible. TODO (Thomas Davies): do this for more than one tile |
| 3345 | // group |
| 3346 | if (have_tiles && tg_count == 1) { |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 3347 | int data_size = |
| 3348 | total_size - (uncompressed_hdr_size + compressed_hdr_size); |
| 3349 | data_size = |
| 3350 | remux_tiles(cm, dst + uncompressed_hdr_size + compressed_hdr_size, |
| 3351 | data_size, *max_tile_size, *max_tile_col_size, |
| 3352 | &tile_size_bytes, &tile_col_size_bytes); |
| 3353 | total_size = data_size + uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3354 | aom_wb_overwrite_literal(&tile_size_bytes_wb, tile_size_bytes - 1, 2); |
| 3355 | } |
Thomas Davies | dbfc4f9 | 2017-01-18 16:46:09 +0000 | [diff] [blame] | 3356 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 3357 | #if CONFIG_EXT_TILE |
| 3358 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3359 | #endif // CONFIG_EXT_TILE |
| 3360 | return (uint32_t)total_size; |
| 3361 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3362 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3363 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3364 | static void write_render_size(const AV1_COMMON *cm, |
| 3365 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3366 | const int scaling_active = !av1_resize_unscaled(cm); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3367 | aom_wb_write_bit(wb, scaling_active); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3368 | if (scaling_active) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3369 | aom_wb_write_literal(wb, cm->render_width - 1, 16); |
| 3370 | aom_wb_write_literal(wb, cm->render_height - 1, 16); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3371 | } |
| 3372 | } |
| 3373 | |
Fergus Simpson | d91c8c9 | 2017-04-07 12:12:00 -0700 | [diff] [blame] | 3374 | #if CONFIG_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3375 | static void write_superres_scale(const AV1_COMMON *const cm, |
| 3376 | struct aom_write_bit_buffer *wb) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3377 | // First bit is whether to to scale or not |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 3378 | if (cm->superres_scale_denominator == SCALE_NUMERATOR) { |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3379 | aom_wb_write_bit(wb, 0); // no scaling |
| 3380 | } else { |
| 3381 | aom_wb_write_bit(wb, 1); // scaling, write scale factor |
Urvang Joshi | 8301018 | 2017-10-27 12:36:02 -0700 | [diff] [blame] | 3382 | assert(cm->superres_scale_denominator >= SUPERRES_SCALE_DENOMINATOR_MIN); |
| 3383 | assert(cm->superres_scale_denominator < |
| 3384 | SUPERRES_SCALE_DENOMINATOR_MIN + (1 << SUPERRES_SCALE_BITS)); |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3385 | aom_wb_write_literal( |
Urvang Joshi | de71d14 | 2017-10-05 12:12:15 -0700 | [diff] [blame] | 3386 | wb, cm->superres_scale_denominator - SUPERRES_SCALE_DENOMINATOR_MIN, |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3387 | SUPERRES_SCALE_BITS); |
| 3388 | } |
| 3389 | } |
Fergus Simpson | d91c8c9 | 2017-04-07 12:12:00 -0700 | [diff] [blame] | 3390 | #endif // CONFIG_FRAME_SUPERRES |
Fergus Simpson | e750841 | 2017-03-14 18:14:09 -0700 | [diff] [blame] | 3391 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3392 | #if CONFIG_FRAME_SIZE |
| 3393 | static void write_frame_size(const AV1_COMMON *cm, int frame_size_override, |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3394 | struct aom_write_bit_buffer *wb) |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3395 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3396 | static void write_frame_size(const AV1_COMMON *cm, |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3397 | struct aom_write_bit_buffer *wb) |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3398 | #endif |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3399 | { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3400 | #if CONFIG_FRAME_SUPERRES |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3401 | const int coded_width = cm->superres_upscaled_width - 1; |
| 3402 | const int coded_height = cm->superres_upscaled_height - 1; |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3403 | #else |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3404 | const int coded_width = cm->width - 1; |
| 3405 | const int coded_height = cm->height - 1; |
| 3406 | #endif |
| 3407 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3408 | #if CONFIG_FRAME_SIZE |
| 3409 | if (frame_size_override) { |
| 3410 | const SequenceHeader *seq_params = &cm->seq_params; |
| 3411 | int num_bits_width = seq_params->num_bits_width; |
| 3412 | int num_bits_height = seq_params->num_bits_height; |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3413 | aom_wb_write_literal(wb, coded_width, num_bits_width); |
| 3414 | aom_wb_write_literal(wb, coded_height, num_bits_height); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3415 | } |
| 3416 | #else |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3417 | aom_wb_write_literal(wb, coded_width, 16); |
| 3418 | aom_wb_write_literal(wb, coded_height, 16); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3419 | #endif |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3420 | |
| 3421 | #if CONFIG_FRAME_SUPERRES |
| 3422 | write_superres_scale(cm, wb); |
| 3423 | #endif |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3424 | write_render_size(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3425 | } |
| 3426 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3427 | static void write_frame_size_with_refs(AV1_COMP *cpi, |
| 3428 | struct aom_write_bit_buffer *wb) { |
| 3429 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3430 | int found = 0; |
| 3431 | |
| 3432 | MV_REFERENCE_FRAME ref_frame; |
| 3433 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 3434 | YV12_BUFFER_CONFIG *cfg = get_ref_frame_buffer(cpi, ref_frame); |
| 3435 | |
| 3436 | if (cfg != NULL) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3437 | #if CONFIG_FRAME_SUPERRES |
| 3438 | found = cm->superres_upscaled_width == cfg->y_crop_width && |
| 3439 | cm->superres_upscaled_height == cfg->y_crop_height; |
| 3440 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3441 | found = |
| 3442 | cm->width == cfg->y_crop_width && cm->height == cfg->y_crop_height; |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3443 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3444 | found &= cm->render_width == cfg->render_width && |
| 3445 | cm->render_height == cfg->render_height; |
| 3446 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3447 | aom_wb_write_bit(wb, found); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3448 | if (found) { |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3449 | #if CONFIG_FRAME_SUPERRES |
| 3450 | write_superres_scale(cm, wb); |
| 3451 | #endif // CONFIG_FRAME_SUPERRES |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3452 | break; |
| 3453 | } |
| 3454 | } |
| 3455 | |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3456 | #if CONFIG_FRAME_SIZE |
| 3457 | if (!found) { |
| 3458 | int frame_size_override = 1; // Allways equal to 1 in this function |
| 3459 | write_frame_size(cm, frame_size_override, wb); |
| 3460 | } |
| 3461 | #else |
Fergus Simpson | d2bcbb5 | 2017-05-22 23:15:05 -0700 | [diff] [blame] | 3462 | if (!found) write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3463 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3464 | } |
| 3465 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3466 | static void write_profile(BITSTREAM_PROFILE profile, |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3467 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3468 | switch (profile) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3469 | case PROFILE_0: aom_wb_write_literal(wb, 0, 2); break; |
| 3470 | case PROFILE_1: aom_wb_write_literal(wb, 2, 2); break; |
| 3471 | case PROFILE_2: aom_wb_write_literal(wb, 1, 2); break; |
| 3472 | case PROFILE_3: aom_wb_write_literal(wb, 6, 3); break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3473 | default: assert(0); |
| 3474 | } |
| 3475 | } |
| 3476 | |
| 3477 | static void write_bitdepth_colorspace_sampling( |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3478 | AV1_COMMON *const cm, struct aom_write_bit_buffer *wb) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3479 | if (cm->profile >= PROFILE_2) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3480 | assert(cm->bit_depth > AOM_BITS_8); |
| 3481 | 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] | 3482 | } |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3483 | #if CONFIG_COLORSPACE_HEADERS |
| 3484 | aom_wb_write_literal(wb, cm->color_space, 5); |
| 3485 | aom_wb_write_literal(wb, cm->transfer_function, 5); |
| 3486 | #else |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3487 | aom_wb_write_literal(wb, cm->color_space, 3); |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3488 | #endif |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3489 | if (cm->color_space != AOM_CS_SRGB) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3490 | // 0: [16, 235] (i.e. xvYCC), 1: [0, 255] |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3491 | aom_wb_write_bit(wb, cm->color_range); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3492 | if (cm->profile == PROFILE_1 || cm->profile == PROFILE_3) { |
| 3493 | assert(cm->subsampling_x != 1 || cm->subsampling_y != 1); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3494 | aom_wb_write_bit(wb, cm->subsampling_x); |
| 3495 | aom_wb_write_bit(wb, cm->subsampling_y); |
| 3496 | aom_wb_write_bit(wb, 0); // unused |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3497 | } else { |
| 3498 | assert(cm->subsampling_x == 1 && cm->subsampling_y == 1); |
| 3499 | } |
anorkin | 76fb126 | 2017-03-22 15:12:12 -0700 | [diff] [blame] | 3500 | #if CONFIG_COLORSPACE_HEADERS |
| 3501 | if (cm->subsampling_x == 1 && cm->subsampling_y == 1) { |
| 3502 | aom_wb_write_literal(wb, cm->chroma_sample_position, 2); |
| 3503 | } |
| 3504 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3505 | } else { |
| 3506 | assert(cm->profile == PROFILE_1 || cm->profile == PROFILE_3); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3507 | aom_wb_write_bit(wb, 0); // unused |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3508 | } |
Yaowu Xu | 6fc47e5 | 2017-12-04 15:07:48 -0800 | [diff] [blame^] | 3509 | #if CONFIG_EXT_QM |
| 3510 | aom_wb_write_bit(wb, cm->separate_uv_delta_q); |
| 3511 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3512 | } |
| 3513 | |
Rupert Swarbrick | b394bfe | 2017-11-07 17:52:13 +0000 | [diff] [blame] | 3514 | #if CONFIG_REFERENCE_BUFFER || CONFIG_OBU |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3515 | void write_sequence_header(AV1_COMP *cpi, struct aom_write_bit_buffer *wb) { |
| 3516 | AV1_COMMON *const cm = &cpi->common; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3517 | SequenceHeader *seq_params = &cm->seq_params; |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3518 | |
| 3519 | #if CONFIG_FRAME_SIZE |
| 3520 | int num_bits_width = 16; |
| 3521 | int num_bits_height = 16; |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3522 | int max_frame_width = cpi->oxcf.width; |
| 3523 | int max_frame_height = cpi->oxcf.height; |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3524 | |
| 3525 | seq_params->num_bits_width = num_bits_width; |
| 3526 | seq_params->num_bits_height = num_bits_height; |
| 3527 | seq_params->max_frame_width = max_frame_width; |
| 3528 | seq_params->max_frame_height = max_frame_height; |
| 3529 | |
| 3530 | aom_wb_write_literal(wb, num_bits_width - 1, 4); |
| 3531 | aom_wb_write_literal(wb, num_bits_height - 1, 4); |
| 3532 | aom_wb_write_literal(wb, max_frame_width - 1, num_bits_width); |
| 3533 | aom_wb_write_literal(wb, max_frame_height - 1, num_bits_height); |
| 3534 | #endif |
| 3535 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3536 | /* Placeholder for actually writing to the bitstream */ |
Yunqing Wang | c2502b5 | 2017-07-19 17:44:18 -0700 | [diff] [blame] | 3537 | seq_params->frame_id_numbers_present_flag = |
| 3538 | #if CONFIG_EXT_TILE |
| 3539 | cm->large_scale_tile ? 0 : |
| 3540 | #endif // CONFIG_EXT_TILE |
| 3541 | FRAME_ID_NUMBERS_PRESENT_FLAG; |
Sebastien Alaiwan | d418f68 | 2017-10-19 15:06:52 +0200 | [diff] [blame] | 3542 | seq_params->frame_id_length = FRAME_ID_LENGTH; |
| 3543 | seq_params->delta_frame_id_length = DELTA_FRAME_ID_LENGTH; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3544 | |
| 3545 | aom_wb_write_bit(wb, seq_params->frame_id_numbers_present_flag); |
| 3546 | if (seq_params->frame_id_numbers_present_flag) { |
Frederic Barbier | 4d5d90e | 2017-10-13 09:22:33 +0200 | [diff] [blame] | 3547 | // We must always have delta_frame_id_length < frame_id_length, |
| 3548 | // in order for a frame to be referenced with a unique delta. |
| 3549 | // Avoid wasting bits by using a coding that enforces this restriction. |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3550 | 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] | 3551 | aom_wb_write_literal( |
| 3552 | wb, seq_params->frame_id_length - seq_params->delta_frame_id_length - 1, |
| 3553 | 3); |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3554 | } |
Rupert Swarbrick | e0b1599 | 2017-11-09 15:04:32 +0000 | [diff] [blame] | 3555 | |
| 3556 | #if CONFIG_MONO_VIDEO |
Rupert Swarbrick | e0b1599 | 2017-11-09 15:04:32 +0000 | [diff] [blame] | 3557 | aom_wb_write_bit(wb, seq_params->monochrome); |
| 3558 | #endif // CONFIG_MONO_VIDEO |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3559 | } |
Rupert Swarbrick | b394bfe | 2017-11-07 17:52:13 +0000 | [diff] [blame] | 3560 | #endif // CONFIG_REFERENCE_BUFFER || CONFIG_OBU |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3561 | |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 3562 | static void write_sb_size(const AV1_COMMON *cm, |
| 3563 | struct aom_write_bit_buffer *wb) { |
| 3564 | (void)cm; |
| 3565 | (void)wb; |
| 3566 | assert(cm->mib_size == mi_size_wide[cm->sb_size]); |
| 3567 | assert(cm->mib_size == 1 << cm->mib_size_log2); |
| 3568 | #if CONFIG_EXT_PARTITION |
| 3569 | assert(cm->sb_size == BLOCK_128X128 || cm->sb_size == BLOCK_64X64); |
| 3570 | aom_wb_write_bit(wb, cm->sb_size == BLOCK_128X128 ? 1 : 0); |
| 3571 | #else |
| 3572 | assert(cm->sb_size == BLOCK_64X64); |
| 3573 | #endif // CONFIG_EXT_PARTITION |
| 3574 | } |
| 3575 | |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3576 | static void write_compound_tools(const AV1_COMMON *cm, |
| 3577 | struct aom_write_bit_buffer *wb) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3578 | if (!frame_is_intra_only(cm) && cm->reference_mode != COMPOUND_REFERENCE) { |
| 3579 | aom_wb_write_bit(wb, cm->allow_interintra_compound); |
| 3580 | } else { |
| 3581 | assert(cm->allow_interintra_compound == 0); |
| 3582 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3583 | if (!frame_is_intra_only(cm) && cm->reference_mode != SINGLE_REFERENCE) { |
| 3584 | aom_wb_write_bit(wb, cm->allow_masked_compound); |
| 3585 | } else { |
| 3586 | assert(cm->allow_masked_compound == 0); |
| 3587 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3588 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3589 | |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3590 | static void write_global_motion_params(const WarpedMotionParams *params, |
| 3591 | const WarpedMotionParams *ref_params, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3592 | struct aom_write_bit_buffer *wb, |
| 3593 | int allow_hp) { |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3594 | const TransformationType type = params->wmtype; |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3595 | |
| 3596 | aom_wb_write_bit(wb, type != IDENTITY); |
| 3597 | if (type != IDENTITY) { |
| 3598 | #if GLOBAL_TRANS_TYPES > 4 |
| 3599 | aom_wb_write_literal(wb, type - 1, GLOBAL_TYPE_BITS); |
| 3600 | #else |
| 3601 | aom_wb_write_bit(wb, type == ROTZOOM); |
| 3602 | if (type != ROTZOOM) aom_wb_write_bit(wb, type == TRANSLATION); |
| 3603 | #endif // GLOBAL_TRANS_TYPES > 4 |
| 3604 | } |
| 3605 | |
Sebastien Alaiwan | e4984ff | 2017-10-31 15:27:44 +0100 | [diff] [blame] | 3606 | if (type >= ROTZOOM) { |
| 3607 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3608 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3609 | (ref_params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - |
| 3610 | (1 << GM_ALPHA_PREC_BITS), |
| 3611 | (params->wmmat[2] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3612 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3613 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3614 | (ref_params->wmmat[3] >> GM_ALPHA_PREC_DIFF), |
| 3615 | (params->wmmat[3] >> GM_ALPHA_PREC_DIFF)); |
| 3616 | } |
| 3617 | |
| 3618 | if (type >= AFFINE) { |
| 3619 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3620 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3621 | (ref_params->wmmat[4] >> GM_ALPHA_PREC_DIFF), |
| 3622 | (params->wmmat[4] >> GM_ALPHA_PREC_DIFF)); |
| 3623 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3624 | wb, GM_ALPHA_MAX + 1, SUBEXPFIN_K, |
| 3625 | (ref_params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - |
| 3626 | (1 << GM_ALPHA_PREC_BITS), |
| 3627 | (params->wmmat[5] >> GM_ALPHA_PREC_DIFF) - (1 << GM_ALPHA_PREC_BITS)); |
| 3628 | } |
| 3629 | |
| 3630 | if (type >= TRANSLATION) { |
| 3631 | const int trans_bits = (type == TRANSLATION) |
| 3632 | ? GM_ABS_TRANS_ONLY_BITS - !allow_hp |
| 3633 | : GM_ABS_TRANS_BITS; |
| 3634 | const int trans_prec_diff = (type == TRANSLATION) |
| 3635 | ? GM_TRANS_ONLY_PREC_DIFF + !allow_hp |
| 3636 | : GM_TRANS_PREC_DIFF; |
| 3637 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3638 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3639 | (ref_params->wmmat[0] >> trans_prec_diff), |
| 3640 | (params->wmmat[0] >> trans_prec_diff)); |
| 3641 | aom_wb_write_signed_primitive_refsubexpfin( |
| 3642 | wb, (1 << trans_bits) + 1, SUBEXPFIN_K, |
| 3643 | (ref_params->wmmat[1] >> trans_prec_diff), |
| 3644 | (params->wmmat[1] >> trans_prec_diff)); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3645 | } |
| 3646 | } |
| 3647 | |
| 3648 | static void write_global_motion(AV1_COMP *cpi, |
| 3649 | struct aom_write_bit_buffer *wb) { |
| 3650 | AV1_COMMON *const cm = &cpi->common; |
| 3651 | int frame; |
| 3652 | for (frame = LAST_FRAME; frame <= ALTREF_FRAME; ++frame) { |
David Barker | d7c8bd5 | 2017-09-25 14:47:29 +0100 | [diff] [blame] | 3653 | const WarpedMotionParams *ref_params = |
| 3654 | cm->error_resilient_mode ? &default_warp_params |
| 3655 | : &cm->prev_frame->global_motion[frame]; |
| 3656 | write_global_motion_params(&cm->global_motion[frame], ref_params, wb, |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3657 | cm->allow_high_precision_mv); |
| 3658 | // TODO(sarahparker, debargha): The logic in the commented out code below |
| 3659 | // does not work currently and causes mismatches when resize is on. |
| 3660 | // Fix it before turning the optimization back on. |
| 3661 | /* |
| 3662 | YV12_BUFFER_CONFIG *ref_buf = get_ref_frame_buffer(cpi, frame); |
| 3663 | if (cpi->source->y_crop_width == ref_buf->y_crop_width && |
| 3664 | cpi->source->y_crop_height == ref_buf->y_crop_height) { |
| 3665 | write_global_motion_params(&cm->global_motion[frame], |
| 3666 | &cm->prev_frame->global_motion[frame], wb, |
| 3667 | cm->allow_high_precision_mv); |
| 3668 | } else { |
| 3669 | assert(cm->global_motion[frame].wmtype == IDENTITY && |
| 3670 | "Invalid warp type for frames of different resolutions"); |
| 3671 | } |
| 3672 | */ |
| 3673 | /* |
| 3674 | printf("Frame %d/%d: Enc Ref %d: %d %d %d %d\n", |
| 3675 | cm->current_video_frame, cm->show_frame, frame, |
| 3676 | cm->global_motion[frame].wmmat[0], |
| 3677 | cm->global_motion[frame].wmmat[1], cm->global_motion[frame].wmmat[2], |
| 3678 | cm->global_motion[frame].wmmat[3]); |
| 3679 | */ |
| 3680 | } |
| 3681 | } |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 3682 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 3683 | #if !CONFIG_OBU |
| 3684 | static void write_uncompressed_header_frame(AV1_COMP *cpi, |
| 3685 | struct aom_write_bit_buffer *wb) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3686 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3687 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 3688 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3689 | aom_wb_write_literal(wb, AOM_FRAME_MARKER, 2); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3690 | |
| 3691 | write_profile(cm->profile, wb); |
| 3692 | |
Yunqing Wang | c2502b5 | 2017-07-19 17:44:18 -0700 | [diff] [blame] | 3693 | #if CONFIG_EXT_TILE |
| 3694 | aom_wb_write_literal(wb, cm->large_scale_tile, 1); |
| 3695 | #endif // CONFIG_EXT_TILE |
| 3696 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3697 | // NOTE: By default all coded frames to be used as a reference |
| 3698 | cm->is_reference_frame = 1; |
| 3699 | |
| 3700 | if (cm->show_existing_frame) { |
| 3701 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 3702 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 3703 | |
| 3704 | 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] | 3705 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3706 | "Buffer %d does not contain a reconstructed frame", |
| 3707 | frame_to_show); |
| 3708 | } |
| 3709 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 3710 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3711 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 3712 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3713 | |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3714 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3715 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3716 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3717 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 3718 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 3719 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 3720 | /* Same logic as when when terminating the entropy coder */ |
| 3721 | /* Consider to have this logic only one place */ |
| 3722 | aom_wb_write_literal(wb, 0, 8); |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3723 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3724 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 788dc23 | 2016-12-20 17:55:52 +0100 | [diff] [blame] | 3725 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3726 | return; |
| 3727 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3728 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3729 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3730 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3731 | aom_wb_write_bit(wb, cm->frame_type); |
| 3732 | aom_wb_write_bit(wb, cm->show_frame); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3733 | if (cm->frame_type != KEY_FRAME) |
| 3734 | if (!cm->show_frame) aom_wb_write_bit(wb, cm->intra_only); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3735 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3736 | |
Pavel Frolov | 3b95c50 | 2017-10-01 21:35:24 +0300 | [diff] [blame] | 3737 | if (frame_is_intra_only(cm)) { |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3738 | #if CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3739 | write_sequence_header(cpi, wb); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3740 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3741 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3742 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3743 | cm->invalid_delta_frame_id_minus1 = 0; |
| 3744 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3745 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3746 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3747 | } |
| 3748 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3749 | |
| 3750 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 3751 | if (cm->width > cm->seq_params.max_frame_width || |
| 3752 | cm->height > cm->seq_params.max_frame_height) { |
| 3753 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 3754 | "Frame dimensions are larger than the maximum values"); |
| 3755 | } |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3756 | #if CONFIG_FRAME_SUPERRES |
| 3757 | const int coded_width = cm->superres_upscaled_width; |
| 3758 | const int coded_height = cm->superres_upscaled_height; |
| 3759 | #else |
| 3760 | const int coded_width = cm->width; |
| 3761 | const int coded_height = cm->height; |
| 3762 | #endif |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3763 | int frame_size_override_flag = |
David Barker | 2217131 | 2017-11-20 11:26:04 +0000 | [diff] [blame] | 3764 | (coded_width != cm->seq_params.max_frame_width || |
| 3765 | coded_height != cm->seq_params.max_frame_height); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3766 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 3767 | #endif |
| 3768 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3769 | if (cm->frame_type == KEY_FRAME) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3770 | write_bitdepth_colorspace_sampling(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3771 | #if CONFIG_FRAME_SIZE |
| 3772 | write_frame_size(cm, frame_size_override_flag, wb); |
| 3773 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3774 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3775 | #endif |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 3776 | write_sb_size(cm, wb); |
| 3777 | |
hui su | 24f7b07 | 2016-10-12 11:36:24 -0700 | [diff] [blame] | 3778 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
Hui Su | 8587878 | 2017-11-07 14:56:31 -0800 | [diff] [blame] | 3779 | #if CONFIG_INTRABC |
| 3780 | if (cm->allow_screen_content_tools) aom_wb_write_bit(wb, cm->allow_intrabc); |
| 3781 | #endif // CONFIG_INTRABC |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3782 | #if CONFIG_AMVR |
| 3783 | if (cm->allow_screen_content_tools) { |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3784 | if (cm->seq_force_integer_mv == 2) { |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3785 | aom_wb_write_bit(wb, 1); |
| 3786 | } else { |
| 3787 | aom_wb_write_bit(wb, 0); |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3788 | aom_wb_write_bit(wb, cm->seq_force_integer_mv); |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3789 | } |
| 3790 | } |
| 3791 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3792 | } else { |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3793 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3794 | if (!cm->error_resilient_mode) { |
| 3795 | if (cm->intra_only) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3796 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3797 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3798 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3799 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3800 | cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 3801 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3802 | aom_wb_write_bit(wb, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3803 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 3804 | } |
| 3805 | } |
Thomas Daede | a6a854b | 2017-06-22 17:49:11 -0700 | [diff] [blame] | 3806 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3807 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3808 | |
| 3809 | if (cm->intra_only) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3810 | write_bitdepth_colorspace_sampling(cm, wb); |
| 3811 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3812 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
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 |
Pavel Frolov | ef4af29 | 2017-11-01 18:23:02 +0300 | [diff] [blame] | 3818 | write_sb_size(cm, wb); |
Hui Su | df89ee3 | 2017-11-21 11:47:58 -0800 | [diff] [blame] | 3819 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 3820 | #if CONFIG_INTRABC |
| 3821 | if (cm->allow_screen_content_tools) |
| 3822 | aom_wb_write_bit(wb, cm->allow_intrabc); |
| 3823 | #endif // CONFIG_INTRABC |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3824 | } else { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3825 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3826 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3827 | if (!cpi->refresh_frame_mask) { |
| 3828 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 3829 | // will not be used as a reference |
| 3830 | cm->is_reference_frame = 0; |
| 3831 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3832 | |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 3833 | for (MV_REFERENCE_FRAME ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; |
| 3834 | ++ref_frame) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3835 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3836 | 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] | 3837 | REF_FRAMES_LOG2); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 3838 | #if !CONFIG_FRAME_SIGN_BIAS |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3839 | aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 3840 | #endif // !CONFIG_FRAME_SIGN_BIAS |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3841 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3842 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 3843 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 3844 | int frame_id_len = cm->seq_params.frame_id_length; |
| 3845 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3846 | int delta_frame_id_minus1 = |
| 3847 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 3848 | (1 << frame_id_len)) % |
| 3849 | (1 << frame_id_len)) - |
| 3850 | 1; |
| 3851 | if (delta_frame_id_minus1 < 0 || |
| 3852 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 3853 | cm->invalid_delta_frame_id_minus1 = 1; |
| 3854 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3855 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3856 | #endif // CONFIG_REFERENCE_BUFFER |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3857 | } |
| 3858 | |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3859 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3860 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3861 | write_frame_size_with_refs(cpi, wb); |
| 3862 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 3863 | write_frame_size(cm, frame_size_override_flag, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3864 | } |
| 3865 | #else |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3866 | write_frame_size_with_refs(cpi, wb); |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 3867 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3868 | |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3869 | #if CONFIG_AMVR |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3870 | if (cm->seq_force_integer_mv == 2) { |
| 3871 | aom_wb_write_bit(wb, cm->cur_frame_force_integer_mv); |
RogerZhou | 3b63524 | 2017-09-19 10:06:46 -0700 | [diff] [blame] | 3872 | } |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3873 | if (cm->cur_frame_force_integer_mv) { |
| 3874 | cm->allow_high_precision_mv = 0; |
| 3875 | } else { |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3876 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3877 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3878 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3879 | } |
| 3880 | #else |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3881 | #if !CONFIG_EIGHTH_PEL_MV_ONLY |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3882 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
Debargha Mukherjee | b214775 | 2017-11-01 07:00:45 -0700 | [diff] [blame] | 3883 | #endif // !CONFIG_EIGHTH_PEL_MV_ONLY |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 3884 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3885 | fix_interp_filter(cm, cpi->td.counts); |
Angie Chiang | 5678ad9 | 2016-11-21 09:38:40 -0800 | [diff] [blame] | 3886 | write_frame_interp_filter(cm->interp_filter, wb); |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 3887 | #if CONFIG_TEMPMV_SIGNALING |
Jingning Han | e17ebe9 | 2017-11-03 15:25:42 -0700 | [diff] [blame] | 3888 | if (frame_might_use_prev_frame_mvs(cm)) |
| 3889 | aom_wb_write_bit(wb, cm->use_ref_frame_mvs); |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 3890 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3891 | } |
| 3892 | } |
| 3893 | |
Jingning Han | ea255c9 | 2017-09-29 08:12:09 -0700 | [diff] [blame] | 3894 | #if CONFIG_FRAME_MARKER |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3895 | if (cm->show_frame == 0) { |
| 3896 | int arf_offset = AOMMIN( |
| 3897 | (MAX_GF_INTERVAL - 1), |
| 3898 | cpi->twopass.gf_group.arf_src_offset[cpi->twopass.gf_group.index]); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3899 | int brf_offset = |
| 3900 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 3901 | |
| 3902 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Cheng Chen | d300f0e | 2017-12-01 10:46:23 -0800 | [diff] [blame] | 3903 | aom_wb_write_literal(wb, arf_offset, FRAME_OFFSET_BITS); |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3904 | } |
Zoe Liu | f40a957 | 2017-10-13 12:37:19 -0700 | [diff] [blame] | 3905 | |
| 3906 | #if CONFIG_EXT_SKIP |
| 3907 | if (cm->is_skip_mode_allowed) aom_wb_write_bit(wb, cm->skip_mode_flag); |
| 3908 | #endif // CONFIG_EXT_SKIP |
| 3909 | #endif // CONFIG_FRAME_MARKER |
Jingning Han | c723b34 | 2017-08-24 11:19:46 -0700 | [diff] [blame] | 3910 | |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3911 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 3912 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 3913 | cm->refresh_mask = |
| 3914 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 3915 | } |
| 3916 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 3917 | |
Rupert Swarbrick | 84b05ac | 2017-10-27 18:10:53 +0100 | [diff] [blame] | 3918 | #if CONFIG_EXT_TILE |
| 3919 | const int might_bwd_adapt = |
| 3920 | !(cm->error_resilient_mode || cm->large_scale_tile); |
| 3921 | #else |
| 3922 | const int might_bwd_adapt = !cm->error_resilient_mode; |
| 3923 | #endif // CONFIG_EXT_TILE |
| 3924 | if (might_bwd_adapt) { |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3925 | aom_wb_write_bit( |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3926 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 3927 | } |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3928 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3929 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
Thomas Daede | da4d8b9 | 2017-06-05 15:44:14 -0700 | [diff] [blame] | 3930 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3931 | encode_loopfilter(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3932 | encode_quantization(cm, wb); |
| 3933 | encode_segmentation(cm, xd, wb); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 3934 | #if CONFIG_Q_SEGMENTATION |
| 3935 | encode_q_segmentation(cm, wb); |
| 3936 | #endif |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3937 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3938 | int delta_q_allowed = 1; |
| 3939 | #if !CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3940 | int i; |
| 3941 | struct segmentation *const seg = &cm->seg; |
| 3942 | int segment_quantizer_active = 0; |
| 3943 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 3944 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 3945 | segment_quantizer_active = 1; |
| 3946 | } |
| 3947 | } |
Rostislav Pehlivanov | da06779 | 2017-11-14 05:23:12 +0000 | [diff] [blame] | 3948 | #if CONFIG_Q_SEGMENTATION |
| 3949 | segment_quantizer_active |= !!seg->q_lvls; |
| 3950 | #endif |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3951 | delta_q_allowed = !segment_quantizer_active; |
| 3952 | #endif |
Arild Fuldseth (arilfuld) | 54de7d6 | 2017-03-20 13:07:11 +0100 | [diff] [blame] | 3953 | |
Yaowu Xu | 288f816 | 2017-10-10 15:03:22 -0700 | [diff] [blame] | 3954 | if (cm->delta_q_present_flag) assert(cm->base_qindex > 0); |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 3955 | // Segment quantizer and delta_q both allowed if CONFIG_EXT_DELTA_Q |
| 3956 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3957 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 3958 | if (cm->delta_q_present_flag) { |
Thomas Davies | f693610 | 2016-09-05 16:51:31 +0100 | [diff] [blame] | 3959 | 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] | 3960 | xd->prev_qindex = cm->base_qindex; |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3961 | #if CONFIG_EXT_DELTA_Q |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3962 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
| 3963 | if (cm->delta_lf_present_flag) { |
| 3964 | 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] | 3965 | xd->prev_delta_lf_from_base = 0; |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 3966 | #if CONFIG_LOOPFILTER_LEVEL |
Cheng Chen | 880166a | 2017-10-02 17:48:48 -0700 | [diff] [blame] | 3967 | aom_wb_write_bit(wb, cm->delta_lf_multi); |
Cheng Chen | a97394f | 2017-09-27 15:05:14 -0700 | [diff] [blame] | 3968 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 3969 | xd->prev_delta_lf[lf_id] = 0; |
| 3970 | #endif // CONFIG_LOOPFILTER_LEVEL |
Fangwen Fu | 231fe42 | 2017-04-24 17:52:29 -0700 | [diff] [blame] | 3971 | } |
| 3972 | #endif // CONFIG_EXT_DELTA_Q |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 3973 | } |
| 3974 | } |
| 3975 | } |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 3976 | if (!cm->all_lossless) { |
| 3977 | encode_cdef(cm, wb); |
| 3978 | } |
Thomas Daede | f636d5c | 2017-06-29 13:48:27 -0700 | [diff] [blame] | 3979 | #if CONFIG_LOOP_RESTORATION |
| 3980 | encode_restoration_mode(cm, wb); |
| 3981 | #endif // CONFIG_LOOP_RESTORATION |
| 3982 | write_tx_mode(cm, &cm->tx_mode, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3983 | |
| 3984 | if (cpi->allow_comp_inter_inter) { |
| 3985 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 3986 | #if !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3987 | const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE; |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 3988 | #endif // !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3989 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3990 | aom_wb_write_bit(wb, use_hybrid_pred); |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 3991 | #if !CONFIG_REF_ADAPT |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3992 | if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred); |
Zoe Liu | b05e5d1 | 2017-02-07 14:32:53 -0800 | [diff] [blame] | 3993 | #endif // !CONFIG_REF_ADAPT |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3994 | } |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 3995 | write_compound_tools(cm, wb); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3996 | |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 3997 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Sarah Parker | e68a3e4 | 2017-02-16 14:03:24 -0800 | [diff] [blame] | 3998 | |
Angie Chiang | 6dbffbf | 2017-10-06 16:59:54 -0700 | [diff] [blame] | 3999 | #if CONFIG_ADAPT_SCAN |
Yunqing Wang | ea35e65 | 2017-11-09 12:33:30 -0800 | [diff] [blame] | 4000 | #if CONFIG_EXT_TILE |
| 4001 | if (cm->large_scale_tile) |
| 4002 | assert(cm->use_adapt_scan == 0); |
| 4003 | else |
| 4004 | #endif // CONFIG_EXT_TILE |
| 4005 | aom_wb_write_bit(wb, cm->use_adapt_scan); |
Angie Chiang | 6dbffbf | 2017-10-06 16:59:54 -0700 | [diff] [blame] | 4006 | #endif |
| 4007 | |
Sarah Parker | f289f9f | 2017-09-12 18:50:02 -0700 | [diff] [blame] | 4008 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Sarah Parker | 3e579a6 | 2017-08-23 16:53:20 -0700 | [diff] [blame] | 4009 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4010 | write_tile_info(cm, wb); |
| 4011 | } |
| 4012 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4013 | #else |
| 4014 | // New function based on HLS R18 |
| 4015 | static void write_uncompressed_header_obu(AV1_COMP *cpi, |
| 4016 | struct aom_write_bit_buffer *wb) { |
| 4017 | AV1_COMMON *const cm = &cpi->common; |
| 4018 | MACROBLOCKD *const xd = &cpi->td.mb.e_mbd; |
| 4019 | |
| 4020 | #if CONFIG_EXT_TILE |
| 4021 | aom_wb_write_literal(wb, cm->large_scale_tile, 1); |
| 4022 | #endif // CONFIG_EXT_TILE |
| 4023 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4024 | // NOTE: By default all coded frames to be used as a reference |
| 4025 | cm->is_reference_frame = 1; |
| 4026 | |
| 4027 | if (cm->show_existing_frame) { |
| 4028 | RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs; |
| 4029 | const int frame_to_show = cm->ref_frame_map[cpi->existing_fb_idx_to_show]; |
| 4030 | |
| 4031 | if (frame_to_show < 0 || frame_bufs[frame_to_show].ref_count < 1) { |
| 4032 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 4033 | "Buffer %d does not contain a reconstructed frame", |
| 4034 | frame_to_show); |
| 4035 | } |
| 4036 | ref_cnt_fb(frame_bufs, &cm->new_fb_idx, frame_to_show); |
| 4037 | |
| 4038 | aom_wb_write_bit(wb, 1); // show_existing_frame |
| 4039 | aom_wb_write_literal(wb, cpi->existing_fb_idx_to_show, 3); |
| 4040 | |
| 4041 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4042 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4043 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4044 | int display_frame_id = cm->ref_frame_id[cpi->existing_fb_idx_to_show]; |
| 4045 | aom_wb_write_literal(wb, display_frame_id, frame_id_len); |
| 4046 | /* Add a zero byte to prevent emulation of superframe marker */ |
| 4047 | /* Same logic as when when terminating the entropy coder */ |
| 4048 | /* Consider to have this logic only one place */ |
| 4049 | aom_wb_write_literal(wb, 0, 8); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4050 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4051 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4052 | |
| 4053 | return; |
| 4054 | } else { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4055 | aom_wb_write_bit(wb, 0); // show_existing_frame |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4056 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4057 | |
| 4058 | cm->frame_type = cm->intra_only ? INTRA_ONLY_FRAME : cm->frame_type; |
| 4059 | aom_wb_write_literal(wb, cm->frame_type, 2); |
| 4060 | |
| 4061 | if (cm->intra_only) cm->frame_type = INTRA_ONLY_FRAME; |
| 4062 | |
| 4063 | aom_wb_write_bit(wb, cm->show_frame); |
| 4064 | aom_wb_write_bit(wb, cm->error_resilient_mode); |
| 4065 | |
| 4066 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4067 | cm->invalid_delta_frame_id_minus1 = 0; |
| 4068 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4069 | int frame_id_len = cm->seq_params.frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4070 | aom_wb_write_literal(wb, cm->current_frame_id, frame_id_len); |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4071 | } |
| 4072 | #endif // CONFIG_REFERENCE_BUFFER |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4073 | |
| 4074 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 4075 | if (cm->width > cm->seq_params.max_frame_width || |
| 4076 | cm->height > cm->seq_params.max_frame_height) { |
| 4077 | aom_internal_error(&cm->error, AOM_CODEC_UNSUP_BITSTREAM, |
| 4078 | "Frame dimensions are larger than the maximum values"); |
| 4079 | } |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4080 | int frame_size_override_flag = |
| 4081 | (cm->width != cm->seq_params.max_frame_width || |
| 4082 | cm->height != cm->seq_params.max_frame_height); |
| 4083 | aom_wb_write_bit(wb, frame_size_override_flag); |
| 4084 | #endif |
| 4085 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4086 | if (cm->frame_type == KEY_FRAME) { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4087 | #if CONFIG_FRAME_SIZE |
| 4088 | write_frame_size(cm, frame_size_override_flag, wb); |
| 4089 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4090 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4091 | #endif |
Debargha Mukherjee | d2630fa | 2017-09-22 10:32:51 -0700 | [diff] [blame] | 4092 | write_sb_size(cm, wb); |
| 4093 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4094 | aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 4095 | #if CONFIG_AMVR |
| 4096 | if (cm->allow_screen_content_tools) { |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4097 | if (cm->seq_force_integer_mv == 2) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4098 | aom_wb_write_bit(wb, 1); |
| 4099 | } else { |
| 4100 | aom_wb_write_bit(wb, 0); |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4101 | aom_wb_write_bit(wb, cm->seq_force_integer_mv == 0); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4102 | } |
| 4103 | } |
| 4104 | #endif |
| 4105 | } else if (cm->frame_type == INTRA_ONLY_FRAME) { |
| 4106 | if (cm->intra_only) aom_wb_write_bit(wb, cm->allow_screen_content_tools); |
| 4107 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4108 | if (!cm->error_resilient_mode) { |
| 4109 | if (cm->intra_only) { |
| 4110 | aom_wb_write_bit(wb, |
| 4111 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4112 | } |
| 4113 | } |
| 4114 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4115 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4116 | |
| 4117 | if (cm->intra_only) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4118 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4119 | #if CONFIG_FRAME_SIZE |
| 4120 | write_frame_size(cm, frame_size_override_flag, wb); |
| 4121 | #else |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4122 | write_frame_size(cm, wb); |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4123 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4124 | } |
| 4125 | } else if (cm->frame_type == INTER_FRAME) { |
| 4126 | MV_REFERENCE_FRAME ref_frame; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4127 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4128 | if (!cm->error_resilient_mode) { |
| 4129 | aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 4130 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
| 4131 | aom_wb_write_bit(wb, |
| 4132 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4133 | } |
| 4134 | #endif |
| 4135 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4136 | cpi->refresh_frame_mask = get_refresh_mask(cpi); |
| 4137 | aom_wb_write_literal(wb, cpi->refresh_frame_mask, REF_FRAMES); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4138 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4139 | if (!cpi->refresh_frame_mask) { |
| 4140 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 4141 | // will not be used as a reference |
| 4142 | cm->is_reference_frame = 0; |
| 4143 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4144 | |
| 4145 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 4146 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
| 4147 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 4148 | REF_FRAMES_LOG2); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 4149 | #if !CONFIG_FRAME_SIGN_BIAS |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4150 | aom_wb_write_bit(wb, cm->ref_frame_sign_bias[ref_frame]); |
Zoe Liu | 17af274 | 2017-10-06 10:36:42 -0700 | [diff] [blame] | 4151 | #endif // !CONFIG_FRAME_SIGN_BIAS |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4152 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4153 | if (cm->seq_params.frame_id_numbers_present_flag) { |
| 4154 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4155 | int frame_id_len = cm->seq_params.frame_id_length; |
| 4156 | int diff_len = cm->seq_params.delta_frame_id_length; |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4157 | int delta_frame_id_minus1 = |
| 4158 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 4159 | (1 << frame_id_len)) % |
| 4160 | (1 << frame_id_len)) - |
| 4161 | 1; |
| 4162 | if (delta_frame_id_minus1 < 0 || |
| 4163 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 4164 | cm->invalid_delta_frame_id_minus1 = 1; |
| 4165 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4166 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4167 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4168 | } |
| 4169 | |
| 4170 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4171 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4172 | write_frame_size_with_refs(cpi, wb); |
| 4173 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4174 | write_frame_size(cm, frame_size_override_flag, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4175 | } |
| 4176 | #else |
| 4177 | write_frame_size_with_refs(cpi, wb); |
| 4178 | #endif |
| 4179 | |
| 4180 | #if CONFIG_AMVR |
RogerZhou | 10a0380 | 2017-10-26 11:49:48 -0700 | [diff] [blame] | 4181 | if (cm->seq_force_integer_mv == 2) { |
| 4182 | 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] | 4183 | } |
| 4184 | #endif |
| 4185 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
| 4186 | |
| 4187 | fix_interp_filter(cm, cpi->td.counts); |
| 4188 | write_frame_interp_filter(cm->interp_filter, wb); |
| 4189 | #if CONFIG_TEMPMV_SIGNALING |
| 4190 | if (frame_might_use_prev_frame_mvs(cm)) { |
| 4191 | aom_wb_write_bit(wb, cm->use_prev_frame_mvs); |
| 4192 | } |
| 4193 | #endif |
| 4194 | } else if (cm->frame_type == S_FRAME) { |
| 4195 | MV_REFERENCE_FRAME ref_frame; |
| 4196 | |
| 4197 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4198 | if (!cm->error_resilient_mode) { |
| 4199 | aom_wb_write_bit(wb, cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE); |
| 4200 | if (cm->reset_frame_context != RESET_FRAME_CONTEXT_NONE) |
| 4201 | aom_wb_write_bit(wb, |
| 4202 | cm->reset_frame_context == RESET_FRAME_CONTEXT_ALL); |
| 4203 | } |
| 4204 | #endif |
| 4205 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4206 | if (!cpi->refresh_frame_mask) { |
| 4207 | // NOTE: "cpi->refresh_frame_mask == 0" indicates that the coded frame |
| 4208 | // will not be used as a reference |
| 4209 | cm->is_reference_frame = 0; |
| 4210 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4211 | |
| 4212 | for (ref_frame = LAST_FRAME; ref_frame <= ALTREF_FRAME; ++ref_frame) { |
| 4213 | assert(get_ref_frame_map_idx(cpi, ref_frame) != INVALID_IDX); |
| 4214 | aom_wb_write_literal(wb, get_ref_frame_map_idx(cpi, ref_frame), |
| 4215 | REF_FRAMES_LOG2); |
| 4216 | assert(cm->ref_frame_sign_bias[ref_frame] == 0); |
| 4217 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4218 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4219 | int i = get_ref_frame_map_idx(cpi, ref_frame); |
Frederic Barbier | e83fcfe | 2017-10-13 10:37:50 +0200 | [diff] [blame] | 4220 | int frame_id_len = cm->seq_params.frame_id_length; |
| 4221 | int diff_len = cm->seq_params.delta_frame_id_length; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4222 | int delta_frame_id_minus1 = |
| 4223 | ((cm->current_frame_id - cm->ref_frame_id[i] + |
| 4224 | (1 << frame_id_len)) % |
| 4225 | (1 << frame_id_len)) - |
| 4226 | 1; |
| 4227 | if (delta_frame_id_minus1 < 0 || |
| 4228 | delta_frame_id_minus1 >= (1 << diff_len)) |
| 4229 | cm->invalid_delta_frame_id_minus1 = 1; |
| 4230 | aom_wb_write_literal(wb, delta_frame_id_minus1, diff_len); |
| 4231 | } |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4232 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4233 | } |
| 4234 | |
| 4235 | #if CONFIG_FRAME_SIZE |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4236 | if (cm->error_resilient_mode == 0 && frame_size_override_flag) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4237 | write_frame_size_with_refs(cpi, wb); |
| 4238 | } else { |
Arild Fuldseth (arilfuld) | 7193f02 | 2017-10-30 12:24:57 +0100 | [diff] [blame] | 4239 | write_frame_size(cm, frame_size_override_flag, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4240 | } |
| 4241 | #else |
| 4242 | write_frame_size_with_refs(cpi, wb); |
| 4243 | #endif |
| 4244 | |
| 4245 | aom_wb_write_bit(wb, cm->allow_high_precision_mv); |
| 4246 | |
| 4247 | fix_interp_filter(cm, cpi->td.counts); |
| 4248 | write_frame_interp_filter(cm->interp_filter, wb); |
| 4249 | #if CONFIG_TEMPMV_SIGNALING |
| 4250 | if (frame_might_use_prev_frame_mvs(cm)) { |
| 4251 | aom_wb_write_bit(wb, cm->use_prev_frame_mvs); |
| 4252 | } |
| 4253 | #endif |
| 4254 | } |
| 4255 | |
Soo-Chul Han | ebdbcb4 | 2017-11-02 18:26:21 -0400 | [diff] [blame] | 4256 | #if CONFIG_FRAME_MARKER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4257 | if (cm->show_frame == 0) { |
| 4258 | int arf_offset = AOMMIN( |
| 4259 | (MAX_GF_INTERVAL - 1), |
| 4260 | 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] | 4261 | int brf_offset = |
| 4262 | cpi->twopass.gf_group.brf_src_offset[cpi->twopass.gf_group.index]; |
| 4263 | |
| 4264 | arf_offset = AOMMIN((MAX_GF_INTERVAL - 1), arf_offset + brf_offset); |
Cheng Chen | d300f0e | 2017-12-01 10:46:23 -0800 | [diff] [blame] | 4265 | aom_wb_write_literal(wb, arf_offset, FRAME_OFFSET_BITS); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4266 | } |
| 4267 | #endif |
| 4268 | |
| 4269 | #if CONFIG_REFERENCE_BUFFER |
David Barker | 5e70a11 | 2017-10-03 14:28:17 +0100 | [diff] [blame] | 4270 | if (cm->seq_params.frame_id_numbers_present_flag) { |
Debargha Mukherjee | 778023d | 2017-09-26 17:50:27 -0700 | [diff] [blame] | 4271 | cm->refresh_mask = |
| 4272 | cm->frame_type == KEY_FRAME ? 0xFF : get_refresh_mask(cpi); |
| 4273 | } |
| 4274 | #endif // CONFIG_REFERENCE_BUFFER |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4275 | |
| 4276 | if (!cm->error_resilient_mode) { |
| 4277 | aom_wb_write_bit( |
| 4278 | wb, cm->refresh_frame_context == REFRESH_FRAME_CONTEXT_FORWARD); |
| 4279 | } |
| 4280 | #if !CONFIG_NO_FRAME_CONTEXT_SIGNALING |
| 4281 | aom_wb_write_literal(wb, cm->frame_context_idx, FRAME_CONTEXTS_LOG2); |
| 4282 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4283 | encode_loopfilter(cm, wb); |
| 4284 | encode_quantization(cm, wb); |
| 4285 | encode_segmentation(cm, xd, wb); |
Rostislav Pehlivanov | f624dd5 | 2017-10-24 16:46:09 +0100 | [diff] [blame] | 4286 | #if CONFIG_Q_SEGMENTATION |
| 4287 | encode_q_segmentation(cm, wb); |
| 4288 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4289 | { |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4290 | int delta_q_allowed = 1; |
| 4291 | #if !CONFIG_EXT_DELTA_Q |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4292 | int i; |
| 4293 | struct segmentation *const seg = &cm->seg; |
| 4294 | int segment_quantizer_active = 0; |
| 4295 | for (i = 0; i < MAX_SEGMENTS; i++) { |
| 4296 | if (segfeature_active(seg, i, SEG_LVL_ALT_Q)) { |
| 4297 | segment_quantizer_active = 1; |
| 4298 | } |
| 4299 | } |
Rostislav Pehlivanov | da06779 | 2017-11-14 05:23:12 +0000 | [diff] [blame] | 4300 | #if CONFIG_Q_SEGMENTATION |
| 4301 | segment_quantizer_active |= !!seg->q_lvls; |
| 4302 | #endif |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4303 | delta_q_allowed = !segment_quantizer_active; |
| 4304 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4305 | |
| 4306 | if (cm->delta_q_present_flag) |
Thomas Davies | 28444be | 2017-10-13 18:12:25 +0100 | [diff] [blame] | 4307 | assert(delta_q_allowed == 1 && cm->base_qindex > 0); |
| 4308 | if (delta_q_allowed == 1 && cm->base_qindex > 0) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4309 | aom_wb_write_bit(wb, cm->delta_q_present_flag); |
| 4310 | if (cm->delta_q_present_flag) { |
| 4311 | aom_wb_write_literal(wb, OD_ILOG_NZ(cm->delta_q_res) - 1, 2); |
| 4312 | xd->prev_qindex = cm->base_qindex; |
| 4313 | #if CONFIG_EXT_DELTA_Q |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4314 | aom_wb_write_bit(wb, cm->delta_lf_present_flag); |
| 4315 | if (cm->delta_lf_present_flag) { |
| 4316 | 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] | 4317 | #if CONFIG_LOOPFILTER_LEVEL |
| 4318 | for (int lf_id = 0; lf_id < FRAME_LF_COUNT; ++lf_id) |
| 4319 | xd->prev_delta_lf[lf_id] = 0; |
| 4320 | #endif // CONFIG_LOOPFILTER_LEVEL |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4321 | xd->prev_delta_lf_from_base = 0; |
| 4322 | } |
| 4323 | #endif // CONFIG_EXT_DELTA_Q |
| 4324 | } |
| 4325 | } |
| 4326 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4327 | if (!cm->all_lossless) { |
| 4328 | encode_cdef(cm, wb); |
| 4329 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4330 | #if CONFIG_LOOP_RESTORATION |
| 4331 | encode_restoration_mode(cm, wb); |
| 4332 | #endif // CONFIG_LOOP_RESTORATION |
| 4333 | write_tx_mode(cm, &cm->tx_mode, wb); |
| 4334 | |
| 4335 | if (cpi->allow_comp_inter_inter) { |
| 4336 | const int use_hybrid_pred = cm->reference_mode == REFERENCE_MODE_SELECT; |
| 4337 | #if !CONFIG_REF_ADAPT |
| 4338 | const int use_compound_pred = cm->reference_mode != SINGLE_REFERENCE; |
| 4339 | #endif // !CONFIG_REF_ADAPT |
| 4340 | |
| 4341 | aom_wb_write_bit(wb, use_hybrid_pred); |
| 4342 | #if !CONFIG_REF_ADAPT |
| 4343 | if (!use_hybrid_pred) aom_wb_write_bit(wb, use_compound_pred); |
| 4344 | #endif // !CONFIG_REF_ADAPT |
| 4345 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4346 | write_compound_tools(cm, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4347 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4348 | aom_wb_write_bit(wb, cm->reduced_tx_set_used); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4349 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4350 | if (!frame_is_intra_only(cm)) write_global_motion(cpi, wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4351 | |
| 4352 | write_tile_info(cm, wb); |
| 4353 | } |
| 4354 | #endif // CONFIG_OBU |
| 4355 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4356 | static uint32_t write_compressed_header(AV1_COMP *cpi, uint8_t *data) { |
| 4357 | AV1_COMMON *const cm = &cpi->common; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4358 | FRAME_CONTEXT *const fc = cm->fc; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4359 | aom_writer *header_bc; |
Ryan | f0e3919 | 2017-10-09 09:45:13 -0700 | [diff] [blame] | 4360 | |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4361 | const int probwt = cm->num_tg; |
Thomas Davies | 04e5aa7 | 2017-06-28 14:36:39 +0100 | [diff] [blame] | 4362 | (void)probwt; |
Thomas Davies | 04e5aa7 | 2017-06-28 14:36:39 +0100 | [diff] [blame] | 4363 | (void)fc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4364 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4365 | aom_writer real_header_bc; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4366 | header_bc = &real_header_bc; |
Alex Converse | 30f0e15 | 2017-03-28 10:13:27 -0700 | [diff] [blame] | 4367 | aom_start_encode(header_bc, data); |
Debargha Mukherjee | 5cd2ab9 | 2016-09-08 15:15:17 -0700 | [diff] [blame] | 4368 | |
Debargha Mukherjee | 801cc92 | 2017-09-22 17:22:50 -0700 | [diff] [blame] | 4369 | if (!frame_is_intra_only(cm)) { |
Debargha Mukherjee | 9e2c7a6 | 2017-05-23 21:18:42 -0700 | [diff] [blame] | 4370 | if (cm->reference_mode != COMPOUND_REFERENCE && |
| 4371 | cm->allow_interintra_compound) { |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4372 | } |
Sarah Parker | 689b0ca | 2016-10-11 12:06:33 -0700 | [diff] [blame] | 4373 | } |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4374 | aom_stop_encode(header_bc); |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4375 | assert(header_bc->pos <= 0xffff); |
| 4376 | return header_bc->pos; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4377 | } |
| 4378 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4379 | #if !CONFIG_OBU || CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4380 | static int choose_size_bytes(uint32_t size, int spare_msbs) { |
| 4381 | // Choose the number of bytes required to represent size, without |
| 4382 | // using the 'spare_msbs' number of most significant bits. |
| 4383 | |
| 4384 | // Make sure we will fit in 4 bytes to start with.. |
| 4385 | if (spare_msbs > 0 && size >> (32 - spare_msbs) != 0) return -1; |
| 4386 | |
| 4387 | // Normalise to 32 bits |
| 4388 | size <<= spare_msbs; |
| 4389 | |
| 4390 | if (size >> 24 != 0) |
| 4391 | return 4; |
| 4392 | else if (size >> 16 != 0) |
| 4393 | return 3; |
| 4394 | else if (size >> 8 != 0) |
| 4395 | return 2; |
| 4396 | else |
| 4397 | return 1; |
| 4398 | } |
| 4399 | |
| 4400 | static void mem_put_varsize(uint8_t *const dst, const int sz, const int val) { |
| 4401 | switch (sz) { |
| 4402 | case 1: dst[0] = (uint8_t)(val & 0xff); break; |
| 4403 | case 2: mem_put_le16(dst, val); break; |
| 4404 | case 3: mem_put_le24(dst, val); break; |
| 4405 | case 4: mem_put_le32(dst, val); break; |
James Zern | 06c372d | 2017-04-20 16:08:29 -0700 | [diff] [blame] | 4406 | default: assert(0 && "Invalid size"); break; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4407 | } |
| 4408 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4409 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4410 | static int remux_tiles(const AV1_COMMON *const cm, uint8_t *dst, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4411 | const uint32_t data_size, const uint32_t max_tile_size, |
| 4412 | const uint32_t max_tile_col_size, |
| 4413 | int *const tile_size_bytes, |
| 4414 | int *const tile_col_size_bytes) { |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4415 | // Choose the tile size bytes (tsb) and tile column size bytes (tcsb) |
| 4416 | int tsb; |
| 4417 | int tcsb; |
| 4418 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4419 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4420 | if (cm->large_scale_tile) { |
| 4421 | // The top bit in the tile size field indicates tile copy mode, so we |
| 4422 | // have 1 less bit to code the tile size |
| 4423 | tsb = choose_size_bytes(max_tile_size, 1); |
| 4424 | tcsb = choose_size_bytes(max_tile_col_size, 0); |
| 4425 | } else { |
| 4426 | #endif // CONFIG_EXT_TILE |
| 4427 | tsb = choose_size_bytes(max_tile_size, 0); |
| 4428 | tcsb = 4; // This is ignored |
| 4429 | (void)max_tile_col_size; |
| 4430 | #if CONFIG_EXT_TILE |
| 4431 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4432 | #endif // CONFIG_EXT_TILE |
| 4433 | |
| 4434 | assert(tsb > 0); |
| 4435 | assert(tcsb > 0); |
| 4436 | |
| 4437 | *tile_size_bytes = tsb; |
| 4438 | *tile_col_size_bytes = tcsb; |
| 4439 | |
| 4440 | if (tsb == 4 && tcsb == 4) { |
| 4441 | return data_size; |
| 4442 | } else { |
| 4443 | uint32_t wpos = 0; |
| 4444 | uint32_t rpos = 0; |
| 4445 | |
| 4446 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4447 | if (cm->large_scale_tile) { |
| 4448 | int tile_row; |
| 4449 | int tile_col; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4450 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4451 | for (tile_col = 0; tile_col < cm->tile_cols; tile_col++) { |
| 4452 | // All but the last column has a column header |
| 4453 | if (tile_col < cm->tile_cols - 1) { |
| 4454 | uint32_t tile_col_size = mem_get_le32(dst + rpos); |
| 4455 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4456 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4457 | // Adjust the tile column size by the number of bytes removed |
| 4458 | // from the tile size fields. |
| 4459 | tile_col_size -= (4 - tsb) * cm->tile_rows; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4460 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4461 | mem_put_varsize(dst + wpos, tcsb, tile_col_size); |
| 4462 | wpos += tcsb; |
| 4463 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4464 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4465 | for (tile_row = 0; tile_row < cm->tile_rows; tile_row++) { |
| 4466 | // All, including the last row has a header |
| 4467 | uint32_t tile_header = mem_get_le32(dst + rpos); |
| 4468 | rpos += 4; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4469 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4470 | // If this is a copy tile, we need to shift the MSB to the |
| 4471 | // top bit of the new width, and there is no data to copy. |
| 4472 | if (tile_header >> 31 != 0) { |
| 4473 | if (tsb < 4) tile_header >>= 32 - 8 * tsb; |
| 4474 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4475 | wpos += tsb; |
| 4476 | } else { |
| 4477 | mem_put_varsize(dst + wpos, tsb, tile_header); |
| 4478 | wpos += tsb; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4479 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4480 | memmove(dst + wpos, dst + rpos, tile_header); |
| 4481 | rpos += tile_header; |
| 4482 | wpos += tile_header; |
| 4483 | } |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4484 | } |
| 4485 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4486 | } else { |
| 4487 | #endif // CONFIG_EXT_TILE |
| 4488 | const int n_tiles = cm->tile_cols * cm->tile_rows; |
| 4489 | int n; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4490 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4491 | for (n = 0; n < n_tiles; n++) { |
| 4492 | int tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4493 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4494 | if (n == n_tiles - 1) { |
| 4495 | tile_size = data_size - rpos; |
| 4496 | } else { |
| 4497 | tile_size = mem_get_le32(dst + rpos); |
| 4498 | rpos += 4; |
| 4499 | mem_put_varsize(dst + wpos, tsb, tile_size); |
| 4500 | wpos += tsb; |
| 4501 | } |
| 4502 | |
| 4503 | memmove(dst + wpos, dst + rpos, tile_size); |
| 4504 | |
| 4505 | rpos += tile_size; |
| 4506 | wpos += tile_size; |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4507 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4508 | #if CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4509 | } |
| 4510 | #endif // CONFIG_EXT_TILE |
| 4511 | |
| 4512 | assert(rpos > wpos); |
| 4513 | assert(rpos == data_size); |
| 4514 | |
| 4515 | return wpos; |
| 4516 | } |
| 4517 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4518 | #endif |
| 4519 | |
| 4520 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4521 | |
| 4522 | uint32_t write_obu_header(OBU_TYPE obu_type, int obu_extension, |
| 4523 | uint8_t *const dst) { |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4524 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4525 | uint32_t size = 0; |
| 4526 | |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4527 | // first bit is obu_forbidden_bit according to R19 |
| 4528 | aom_wb_write_literal(&wb, 0, 1); |
| 4529 | aom_wb_write_literal(&wb, (int)obu_type, 4); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4530 | aom_wb_write_literal(&wb, 0, 2); |
| 4531 | aom_wb_write_literal(&wb, obu_extension ? 1 : 0, 1); |
| 4532 | if (obu_extension) { |
| 4533 | aom_wb_write_literal(&wb, obu_extension & 0xFF, 8); |
| 4534 | } |
| 4535 | |
| 4536 | size = aom_wb_bytes_written(&wb); |
| 4537 | return size; |
| 4538 | } |
| 4539 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4540 | static uint32_t write_sequence_header_obu(AV1_COMP *cpi, uint8_t *const dst) { |
| 4541 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4542 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4543 | uint32_t size = 0; |
| 4544 | |
| 4545 | write_profile(cm->profile, &wb); |
| 4546 | |
| 4547 | aom_wb_write_literal(&wb, 0, 4); |
| 4548 | |
Arild Fuldseth (arilfuld) | b638074 | 2017-11-03 09:42:05 +0100 | [diff] [blame] | 4549 | write_sequence_header(cpi, &wb); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4550 | |
| 4551 | // color_config |
| 4552 | write_bitdepth_colorspace_sampling(cm, &wb); |
| 4553 | |
| 4554 | size = aom_wb_bytes_written(&wb); |
| 4555 | return size; |
| 4556 | } |
| 4557 | |
| 4558 | static uint32_t write_frame_header_obu(AV1_COMP *cpi, uint8_t *const dst) { |
| 4559 | AV1_COMMON *const cm = &cpi->common; |
| 4560 | struct aom_write_bit_buffer wb = { dst, 0 }; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4561 | uint32_t total_size = 0; |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4562 | uint32_t compressed_hdr_size, uncompressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4563 | |
| 4564 | write_uncompressed_header_obu(cpi, &wb); |
| 4565 | |
| 4566 | if (cm->show_existing_frame) { |
| 4567 | total_size = aom_wb_bytes_written(&wb); |
| 4568 | return total_size; |
| 4569 | } |
| 4570 | |
| 4571 | // write the tile length code (Always 4 bytes for now) |
| 4572 | aom_wb_write_literal(&wb, 3, 2); |
| 4573 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4574 | if (!use_compressed_header(cm)) { |
| 4575 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 4576 | compressed_hdr_size = 0; |
| 4577 | } else { |
| 4578 | // placeholder for the compressed header length |
| 4579 | struct aom_write_bit_buffer compr_hdr_len_wb = wb; |
| 4580 | aom_wb_write_literal(&wb, 0, 16); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4581 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4582 | uncompressed_hdr_size = aom_wb_bytes_written(&wb); |
| 4583 | compressed_hdr_size = |
| 4584 | write_compressed_header(cpi, dst + uncompressed_hdr_size); |
| 4585 | aom_wb_overwrite_literal(&compr_hdr_len_wb, (int)(compressed_hdr_size), 16); |
| 4586 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4587 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4588 | total_size = uncompressed_hdr_size + compressed_hdr_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4589 | return total_size; |
| 4590 | } |
| 4591 | |
| 4592 | static uint32_t write_tile_group_header(uint8_t *const dst, int startTile, |
| 4593 | int endTile, int tiles_log2) { |
| 4594 | struct aom_write_bit_buffer wb = { dst, 0 }; |
| 4595 | uint32_t size = 0; |
| 4596 | |
| 4597 | aom_wb_write_literal(&wb, startTile, tiles_log2); |
| 4598 | aom_wb_write_literal(&wb, endTile, tiles_log2); |
| 4599 | |
| 4600 | size = aom_wb_bytes_written(&wb); |
| 4601 | return size; |
| 4602 | } |
| 4603 | |
| 4604 | static uint32_t write_tiles_in_tg_obus(AV1_COMP *const cpi, uint8_t *const dst, |
| 4605 | unsigned int *max_tile_size, |
| 4606 | unsigned int *max_tile_col_size, |
| 4607 | uint8_t *const frame_header_obu_location, |
| 4608 | uint32_t frame_header_obu_size, |
| 4609 | int insert_frame_header_obu_flag) { |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4610 | AV1_COMMON *const cm = &cpi->common; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4611 | aom_writer mode_bc; |
| 4612 | int tile_row, tile_col; |
| 4613 | TOKENEXTRA *(*const tok_buffers)[MAX_TILE_COLS] = cpi->tile_tok; |
| 4614 | TileBufferEnc(*const tile_buffers)[MAX_TILE_COLS] = cpi->tile_buffers; |
| 4615 | uint32_t total_size = 0; |
| 4616 | const int tile_cols = cm->tile_cols; |
| 4617 | const int tile_rows = cm->tile_rows; |
| 4618 | unsigned int tile_size = 0; |
| 4619 | const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; |
| 4620 | // Fixed size tile groups for the moment |
| 4621 | const int num_tg_hdrs = cm->num_tg; |
| 4622 | const int tg_size = |
| 4623 | #if CONFIG_EXT_TILE |
| 4624 | (cm->large_scale_tile) |
| 4625 | ? 1 |
| 4626 | : |
| 4627 | #endif // CONFIG_EXT_TILE |
| 4628 | (tile_rows * tile_cols + num_tg_hdrs - 1) / num_tg_hdrs; |
| 4629 | int tile_count = 0; |
| 4630 | int curr_tg_data_size = 0; |
| 4631 | uint8_t *data = dst; |
| 4632 | int new_tg = 1; |
| 4633 | #if CONFIG_EXT_TILE |
| 4634 | const int have_tiles = tile_cols * tile_rows > 1; |
| 4635 | #endif |
| 4636 | |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4637 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4638 | cm->largest_tile_id = 0; |
| 4639 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4640 | *max_tile_size = 0; |
| 4641 | *max_tile_col_size = 0; |
| 4642 | |
| 4643 | #if CONFIG_EXT_TILE |
| 4644 | if (cm->large_scale_tile) { |
| 4645 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4646 | TileInfo tile_info; |
| 4647 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4648 | const uint32_t col_offset = total_size; |
| 4649 | |
| 4650 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4651 | |
| 4652 | // The last column does not have a column header |
| 4653 | if (!is_last_col) total_size += 4; |
| 4654 | |
| 4655 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4656 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4657 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4658 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4659 | const int data_offset = have_tiles ? 4 : 0; |
| 4660 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4661 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4662 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4663 | |
| 4664 | buf->data = dst + total_size; |
| 4665 | |
| 4666 | // Is CONFIG_EXT_TILE = 1, every tile in the row has a header, |
| 4667 | // even for the last one, unless no tiling is used at all. |
| 4668 | total_size += data_offset; |
| 4669 | // Initialise tile context from the frame context |
| 4670 | this_tile->tctx = *cm->fc; |
| 4671 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 4672 | mode_bc.allow_update_cdf = !cm->large_scale_tile; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4673 | aom_start_encode(&mode_bc, buf->data + data_offset); |
| 4674 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 4675 | assert(tok == tok_end); |
| 4676 | aom_stop_encode(&mode_bc); |
| 4677 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4678 | buf->size = tile_size; |
| 4679 | |
| 4680 | // 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] | 4681 | if (tile_size > *max_tile_size) { |
| 4682 | *max_tile_size = tile_size; |
| 4683 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4684 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 4685 | #endif |
| 4686 | } |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4687 | |
| 4688 | if (have_tiles) { |
| 4689 | // tile header: size of this tile, or copy offset |
| 4690 | uint32_t tile_header = tile_size; |
| 4691 | const int tile_copy_mode = |
| 4692 | ((AOMMAX(cm->tile_width, cm->tile_height) << MI_SIZE_LOG2) <= 256) |
| 4693 | ? 1 |
| 4694 | : 0; |
| 4695 | |
| 4696 | // If tile_copy_mode = 1, check if this tile is a copy tile. |
| 4697 | // Very low chances to have copy tiles on the key frames, so don't |
| 4698 | // search on key frames to reduce unnecessary search. |
| 4699 | if (cm->frame_type != KEY_FRAME && tile_copy_mode) { |
| 4700 | const int idendical_tile_offset = |
| 4701 | find_identical_tile(tile_row, tile_col, tile_buffers); |
| 4702 | |
| 4703 | if (idendical_tile_offset > 0) { |
| 4704 | tile_size = 0; |
| 4705 | tile_header = idendical_tile_offset | 0x80; |
| 4706 | tile_header <<= 24; |
| 4707 | } |
| 4708 | } |
| 4709 | |
| 4710 | mem_put_le32(buf->data, tile_header); |
| 4711 | } |
| 4712 | |
| 4713 | total_size += tile_size; |
| 4714 | } |
| 4715 | |
| 4716 | if (!is_last_col) { |
| 4717 | uint32_t col_size = total_size - col_offset - 4; |
| 4718 | mem_put_le32(dst + col_offset, col_size); |
| 4719 | |
| 4720 | // If it is not final packing, record the maximum tile column size we |
| 4721 | // see, otherwise, check if the tile size is out of the range. |
| 4722 | *max_tile_col_size = AOMMAX(*max_tile_col_size, col_size); |
| 4723 | } |
| 4724 | } |
| 4725 | } else { |
| 4726 | #endif // CONFIG_EXT_TILE |
| 4727 | |
| 4728 | for (tile_row = 0; tile_row < tile_rows; tile_row++) { |
| 4729 | TileInfo tile_info; |
| 4730 | const int is_last_row = (tile_row == tile_rows - 1); |
| 4731 | av1_tile_set_row(&tile_info, cm, tile_row); |
| 4732 | |
| 4733 | for (tile_col = 0; tile_col < tile_cols; tile_col++) { |
| 4734 | const int tile_idx = tile_row * tile_cols + tile_col; |
| 4735 | TileBufferEnc *const buf = &tile_buffers[tile_row][tile_col]; |
| 4736 | TileDataEnc *this_tile = &cpi->tile_data[tile_idx]; |
| 4737 | const TOKENEXTRA *tok = tok_buffers[tile_row][tile_col]; |
| 4738 | const TOKENEXTRA *tok_end = tok + cpi->tok_count[tile_row][tile_col]; |
| 4739 | const int is_last_col = (tile_col == tile_cols - 1); |
| 4740 | const int is_last_tile = is_last_col && is_last_row; |
| 4741 | int is_last_tile_in_tg = 0; |
| 4742 | |
| 4743 | if (new_tg) { |
| 4744 | if (insert_frame_header_obu_flag && tile_idx) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4745 | // insert a copy of frame header OBU (including |
| 4746 | // PRE_OBU_SIZE_BYTES-byte size), |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4747 | // except before the first tile group |
| 4748 | data = dst + total_size; |
| 4749 | memmove(data, frame_header_obu_location, frame_header_obu_size); |
| 4750 | total_size += frame_header_obu_size; |
| 4751 | } |
| 4752 | data = dst + total_size; |
| 4753 | // A new tile group begins at this tile. Write the obu header and |
| 4754 | // tile group header |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4755 | curr_tg_data_size = |
| 4756 | 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] | 4757 | if (n_log2_tiles) |
| 4758 | curr_tg_data_size += write_tile_group_header( |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4759 | data + curr_tg_data_size + PRE_OBU_SIZE_BYTES, tile_idx, |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4760 | AOMMIN(tile_idx + tg_size - 1, tile_cols * tile_rows - 1), |
| 4761 | n_log2_tiles); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4762 | total_size += curr_tg_data_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4763 | new_tg = 0; |
| 4764 | tile_count = 0; |
| 4765 | } |
| 4766 | tile_count++; |
| 4767 | av1_tile_set_col(&tile_info, cm, tile_col); |
| 4768 | |
| 4769 | if (tile_count == tg_size || tile_idx == (tile_cols * tile_rows - 1)) { |
| 4770 | is_last_tile_in_tg = 1; |
| 4771 | new_tg = 1; |
| 4772 | } else { |
| 4773 | is_last_tile_in_tg = 0; |
| 4774 | } |
| 4775 | |
| 4776 | #if CONFIG_DEPENDENT_HORZTILES |
| 4777 | av1_tile_set_tg_boundary(&tile_info, cm, tile_row, tile_col); |
| 4778 | #endif |
| 4779 | buf->data = dst + total_size; |
| 4780 | |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4781 | // The last tile of the tile group does not have a header. |
| 4782 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4783 | if (!is_last_tile_in_tg) total_size += 4; |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4784 | #else |
| 4785 | total_size += 4; |
| 4786 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4787 | |
| 4788 | // Initialise tile context from the frame context |
| 4789 | this_tile->tctx = *cm->fc; |
| 4790 | cpi->td.mb.e_mbd.tile_ctx = &this_tile->tctx; |
Yunqing Wang | 0e141b5 | 2017-11-02 15:08:58 -0700 | [diff] [blame] | 4791 | mode_bc.allow_update_cdf = 1; |
Soo-Chul Han | 13f0d9c | 2017-10-22 21:55:52 -0400 | [diff] [blame] | 4792 | #if CONFIG_LOOP_RESTORATION |
Rupert Swarbrick | 7640520 | 2017-11-07 16:35:55 +0000 | [diff] [blame] | 4793 | av1_reset_loop_restoration(&cpi->td.mb.e_mbd); |
Soo-Chul Han | 13f0d9c | 2017-10-22 21:55:52 -0400 | [diff] [blame] | 4794 | #endif // CONFIG_LOOP_RESTORATION |
| 4795 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4796 | aom_start_encode(&mode_bc, dst + total_size); |
| 4797 | write_modes(cpi, &tile_info, &mode_bc, &tok, tok_end); |
| 4798 | #if !CONFIG_LV_MAP |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4799 | assert(tok == tok_end); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4800 | #endif // !CONFIG_LV_MAP |
| 4801 | aom_stop_encode(&mode_bc); |
| 4802 | tile_size = mode_bc.pos; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4803 | assert(tile_size > 0); |
| 4804 | |
| 4805 | curr_tg_data_size += (tile_size + (is_last_tile_in_tg ? 0 : 4)); |
| 4806 | buf->size = tile_size; |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4807 | #if CONFIG_SIMPLE_BWD_ADAPT |
| 4808 | if (tile_size > *max_tile_size) { |
| 4809 | cm->largest_tile_id = tile_cols * tile_row + tile_col; |
| 4810 | } |
| 4811 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4812 | if (!is_last_tile) { |
| 4813 | *max_tile_size = AOMMAX(*max_tile_size, tile_size); |
| 4814 | } |
Thomas Davies | 4822e14 | 2017-10-10 11:30:36 +0100 | [diff] [blame] | 4815 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4816 | if (!is_last_tile_in_tg) { |
| 4817 | // size of this tile |
| 4818 | mem_put_le32(buf->data, tile_size); |
| 4819 | } else { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4820 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4821 | // write current tile group size |
| 4822 | mem_put_le32(data, curr_tg_data_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4823 | #else |
| 4824 | mem_put_le32(buf->data, tile_size); |
| 4825 | #endif |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4826 | } |
| 4827 | |
| 4828 | total_size += tile_size; |
| 4829 | } |
| 4830 | } |
| 4831 | #if CONFIG_EXT_TILE |
| 4832 | } |
| 4833 | #endif // CONFIG_EXT_TILE |
| 4834 | return (uint32_t)total_size; |
| 4835 | } |
| 4836 | |
| 4837 | #endif |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4838 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4839 | 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] | 4840 | uint8_t *data = dst; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4841 | uint32_t data_size; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 4842 | #if CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4843 | AV1_COMMON *const cm = &cpi->common; |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4844 | uint32_t compressed_hdr_size = 0; |
| 4845 | uint32_t uncompressed_hdr_size; |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4846 | struct aom_write_bit_buffer saved_wb; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 4847 | struct aom_write_bit_buffer wb = { data, 0 }; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4848 | const int have_tiles = cm->tile_cols * cm->tile_rows > 1; |
| 4849 | int tile_size_bytes; |
| 4850 | int tile_col_size_bytes; |
Thomas Davies | b25ba50 | 2017-07-18 10:18:24 +0100 | [diff] [blame] | 4851 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 4852 | unsigned int max_tile_size; |
| 4853 | unsigned int max_tile_col_size; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4854 | #if CONFIG_OBU |
| 4855 | #if !CONFIG_EXT_TILE |
| 4856 | AV1_COMMON *const cm = &cpi->common; |
| 4857 | #endif |
| 4858 | uint32_t obu_size; |
| 4859 | uint8_t *frame_header_location; |
| 4860 | uint32_t frame_header_size; |
| 4861 | #endif |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 4862 | |
Angie Chiang | b11aedf | 2017-03-10 17:31:46 -0800 | [diff] [blame] | 4863 | #if CONFIG_BITSTREAM_DEBUG |
| 4864 | bitstream_queue_reset_write(); |
| 4865 | #endif |
| 4866 | |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4867 | #if CONFIG_OBU |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4868 | // The TD is now written outside the frame encode loop |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4869 | |
| 4870 | // write sequence header obu if KEY_FRAME, preceded by 4-byte size |
| 4871 | if (cm->frame_type == KEY_FRAME) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4872 | obu_size = |
| 4873 | write_obu_header(OBU_SEQUENCE_HEADER, 0, data + PRE_OBU_SIZE_BYTES); |
| 4874 | obu_size += |
| 4875 | write_sequence_header_obu(cpi, data + PRE_OBU_SIZE_BYTES + obu_size); |
| 4876 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4877 | mem_put_le32(data, obu_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4878 | #endif |
| 4879 | data += obu_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4880 | } |
| 4881 | |
| 4882 | // write frame header obu, preceded by 4-byte size |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4883 | frame_header_location = data + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4884 | 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] | 4885 | frame_header_size = |
| 4886 | 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] | 4887 | obu_size += frame_header_size; |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4888 | #if CONFIG_ADD_4BYTES_OBUSIZE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4889 | mem_put_le32(data, obu_size); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4890 | #endif |
| 4891 | data += obu_size + PRE_OBU_SIZE_BYTES; |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4892 | |
| 4893 | if (cm->show_existing_frame) { |
| 4894 | data_size = 0; |
| 4895 | } else { |
| 4896 | // Each tile group obu will be preceded by 4-byte size of the tile group |
| 4897 | // obu |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4898 | data_size = write_tiles_in_tg_obus( |
| 4899 | cpi, data, &max_tile_size, &max_tile_col_size, |
| 4900 | frame_header_location - PRE_OBU_SIZE_BYTES, |
| 4901 | obu_size + PRE_OBU_SIZE_BYTES, 1 /* cm->error_resilient_mode */); |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4902 | } |
| 4903 | |
| 4904 | #endif |
| 4905 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4906 | #if CONFIG_EXT_TILE |
| 4907 | if (cm->large_scale_tile) { |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4908 | #if !CONFIG_OBU |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4909 | write_uncompressed_header_frame(cpi, &wb); |
Soo-Chul Han | 38427e8 | 2017-09-27 15:06:13 -0400 | [diff] [blame] | 4910 | #else |
| 4911 | write_uncompressed_header_obu(cpi, &wb); |
| 4912 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4913 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4914 | if (cm->show_existing_frame) { |
| 4915 | *size = aom_wb_bytes_written(&wb); |
| 4916 | return; |
| 4917 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4918 | |
| 4919 | // We do not know these in advance. Output placeholder bit. |
| 4920 | saved_wb = wb; |
| 4921 | // Write tile size magnitudes |
| 4922 | if (have_tiles) { |
| 4923 | // Note that the last item in the uncompressed header is the data |
| 4924 | // describing tile configuration. |
| 4925 | // Number of bytes in tile column size - 1 |
| 4926 | aom_wb_write_literal(&wb, 0, 2); |
| 4927 | |
| 4928 | // Number of bytes in tile size - 1 |
| 4929 | aom_wb_write_literal(&wb, 0, 2); |
| 4930 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4931 | |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4932 | if (!use_compressed_header(cm)) { |
| 4933 | uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb); |
| 4934 | aom_clear_system_state(); |
| 4935 | compressed_hdr_size = 0; |
| 4936 | } else { |
| 4937 | // Size of compressed header |
| 4938 | aom_wb_write_literal(&wb, 0, 16); |
| 4939 | uncompressed_hdr_size = (uint32_t)aom_wb_bytes_written(&wb); |
| 4940 | aom_clear_system_state(); |
| 4941 | // Write the compressed header |
| 4942 | compressed_hdr_size = |
| 4943 | write_compressed_header(cpi, data + uncompressed_hdr_size); |
| 4944 | } |
| 4945 | data += uncompressed_hdr_size + compressed_hdr_size; |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4946 | |
Yunqing Wang | b041d8a | 2017-11-15 12:31:18 -0800 | [diff] [blame] | 4947 | #define EXT_TILE_DEBUG 0 |
| 4948 | #if EXT_TILE_DEBUG |
| 4949 | { |
| 4950 | char fn[20] = "./fh"; |
| 4951 | fn[4] = cm->current_video_frame / 100 + '0'; |
| 4952 | fn[5] = (cm->current_video_frame % 100) / 10 + '0'; |
| 4953 | fn[6] = (cm->current_video_frame % 10) + '0'; |
| 4954 | fn[7] = '\0'; |
| 4955 | av1_print_uncompressed_frame_header( |
| 4956 | data - uncompressed_hdr_size - compressed_hdr_size, |
| 4957 | uncompressed_hdr_size, fn); |
| 4958 | } |
| 4959 | #endif // EXT_TILE_DEBUG |
| 4960 | #undef EXT_TILE_DEBUG |
| 4961 | |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4962 | // Write the encoded tile data |
| 4963 | data_size = write_tiles(cpi, data, &max_tile_size, &max_tile_col_size); |
| 4964 | } else { |
| 4965 | #endif // CONFIG_EXT_TILE |
Soo-Chul Han | 65c00ae | 2017-09-07 13:12:35 -0400 | [diff] [blame] | 4966 | #if !CONFIG_OBU |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4967 | 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] | 4968 | #endif |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4969 | #if CONFIG_EXT_TILE |
| 4970 | } |
| 4971 | #endif // CONFIG_EXT_TILE |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4972 | #if CONFIG_EXT_TILE |
| 4973 | if (cm->large_scale_tile) { |
| 4974 | if (have_tiles) { |
| 4975 | data_size = |
| 4976 | remux_tiles(cm, data, data_size, max_tile_size, max_tile_col_size, |
| 4977 | &tile_size_bytes, &tile_col_size_bytes); |
| 4978 | } |
| 4979 | |
| 4980 | data += data_size; |
| 4981 | |
| 4982 | // Now fill in the gaps in the uncompressed header. |
| 4983 | if (have_tiles) { |
| 4984 | assert(tile_col_size_bytes >= 1 && tile_col_size_bytes <= 4); |
| 4985 | aom_wb_write_literal(&saved_wb, tile_col_size_bytes - 1, 2); |
| 4986 | |
| 4987 | assert(tile_size_bytes >= 1 && tile_size_bytes <= 4); |
| 4988 | aom_wb_write_literal(&saved_wb, tile_size_bytes - 1, 2); |
| 4989 | } |
Debargha Mukherjee | 2eada61 | 2017-09-22 15:37:39 -0700 | [diff] [blame] | 4990 | // TODO(jbb): Figure out what to do if compressed_hdr_size > 16 bits. |
| 4991 | assert(compressed_hdr_size <= 0xffff); |
Rupert Swarbrick | 5368590 | 2017-10-27 13:35:19 +0100 | [diff] [blame] | 4992 | // Fill in the compressed header size (but only if we're using one) |
| 4993 | if (use_compressed_header(cm)) { |
| 4994 | aom_wb_write_literal(&saved_wb, compressed_hdr_size, 16); |
| 4995 | } |
Yunqing Wang | eeb08a9 | 2017-07-07 21:25:18 -0700 | [diff] [blame] | 4996 | } else { |
| 4997 | #endif // CONFIG_EXT_TILE |
| 4998 | data += data_size; |
| 4999 | #if CONFIG_EXT_TILE |
| 5000 | } |
| 5001 | #endif // CONFIG_EXT_TILE |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 5002 | *size = data - dst; |
| 5003 | } |