2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
11 #ifndef VPX_VP9_ENCODER_VP9_BLOCK_H_
12 #define VPX_VP9_ENCODER_VP9_BLOCK_H_
14 #include "vpx_util/vpx_thread.h"
16 #include "vp9/common/vp9_entropymv.h"
17 #include "vp9/common/vp9_entropy.h"
29 struct macroblock_plane {
30 DECLARE_ALIGNED(16, int16_t, src_diff[64 * 64]);
44 int64_t quant_thred[2];
47 /* The [2] dimension is for whether we skip the EOB node (i.e. if previous
48 * coefficient in this block was zero) or not. */
49 typedef unsigned int vp9_coeff_cost[PLANE_TYPES][REF_TYPES][COEF_BANDS][2]
50 [COEFF_CONTEXTS][ENTROPY_TOKENS];
53 int_mv ref_mvs[MAX_REF_FRAMES][MAX_MV_REF_CANDIDATES];
54 uint8_t mode_context[MAX_REF_FRAMES];
64 typedef struct macroblock MACROBLOCK;
66 // cf. https://bugs.chromium.org/p/webm/issues/detail?id=1054
67 #if defined(_MSC_VER) && _MSC_VER < 1900
68 int64_t bsse[MAX_MB_PLANE << 2];
71 struct macroblock_plane plane[MAX_MB_PLANE];
74 MB_MODE_INFO_EXT *mbmi_ext;
75 MB_MODE_INFO_EXT *mbmi_ext_base;
84 // The equivalent error at the current rdmult of one whole bit (not one
87 // The equivalend SAD error of one (whole) bit at the current quantizer
90 // The equivalend SAD error of one (whole) bit at the current quantizer
91 // for sub-8x8 blocks.
98 // These are set to their default values at the beginning, and then adjusted
99 // further in the encoding process.
100 BLOCK_SIZE min_partition_size;
101 BLOCK_SIZE max_partition_size;
103 int mv_best_ref_index[MAX_REF_FRAMES];
104 unsigned int max_mv_context[MAX_REF_FRAMES];
105 unsigned int source_variance;
106 unsigned int pred_sse[MAX_REF_FRAMES];
107 int pred_mv_sad[MAX_REF_FRAMES];
109 int nmvjointcost[MV_JOINTS];
114 int nmvjointsadcost[MV_JOINTS];
116 int *nmvsadcost_hp[2];
119 // sharpness is used to disable skip mode and change rd_mult
122 // aq mode is used to adjust rd based on segment.
123 int adjust_rdmult_by_segment;
125 // These define limits to motion vector components to prevent them
126 // from extending outside the UMV borders
129 // Notes transform blocks where no coefficents are coded.
130 // Set during mode selection. Read during block encoding.
131 uint8_t zcoeff_blk[TX_SIZES][256];
133 // Accumulate the tx block eobs in a partition block.
134 int32_t sum_y_eobs[TX_SIZES];
140 // note that token_costs is the cost when eob node is skipped
141 vp9_coeff_cost token_costs[TX_SIZES];
145 // indicate if it is in the rd search loop or encoding process
149 // In first pass, intra prediction is done based on source pixels
150 // at tile boundaries
153 // use fast quantization process
156 // skip forward transform and quantization
157 uint8_t skip_txfm[MAX_MB_PLANE << 2];
158 #define SKIP_TXFM_NONE 0
159 #define SKIP_TXFM_AC_DC 1
160 #define SKIP_TXFM_AC_ONLY 2
162 // cf. https://bugs.chromium.org/p/webm/issues/detail?id=1054
163 #if !defined(_MSC_VER) || _MSC_VER >= 1900
164 int64_t bsse[MAX_MB_PLANE << 2];
167 // Used to store sub partition's choices.
168 MV pred_mv[MAX_REF_FRAMES];
170 // Strong color activity detection. Used in RTC coding mode to enhance
171 // the visual quality at the boundary of moving color objects.
172 uint8_t color_sensitivity[2];
176 uint8_t skip_low_source_sad;
178 uint8_t lowvar_highsumdiff;
180 uint8_t last_sb_high_content;
188 int sb_pickmode_part;
190 int zero_temp_sad_source;
192 // For each superblock: saves the content value (e.g., low/high sad/sumdiff)
193 // based on source sad, prior to encoding the frame.
194 uint8_t content_state_sb;
196 // Used to save the status of whether a block has a low variance in
197 // choose_partitioning. 0 for 64x64, 1~2 for 64x32, 3~4 for 32x64, 5~8 for
198 // 32x32, 9~24 for 16x16.
199 uint8_t variance_low[25];
201 uint8_t arf_frame_usage;
202 uint8_t lastgolden_frame_usage;
204 void (*fwd_txfm4x4)(const int16_t *input, tran_low_t *output, int stride);
205 void (*inv_txfm_add)(const tran_low_t *input, uint8_t *dest, int stride,
207 #if CONFIG_VP9_HIGHBITDEPTH
208 void (*highbd_inv_txfm_add)(const tran_low_t *input, uint16_t *dest,
209 int stride, int eob, int bd);
211 #if CONFIG_ML_VAR_PARTITION
212 DECLARE_ALIGNED(16, uint8_t, est_pred[64 * 64]);
213 #endif // CONFIG_ML_VAR_PARTITION
215 struct scale_factors *me_sf;
222 #endif // VPX_VP9_ENCODER_VP9_BLOCK_H_