OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef VP9_COMMON_VP9_ONYXC_INT_H_ | 11 #ifndef VP9_COMMON_VP9_ONYXC_INT_H_ |
12 #define VP9_COMMON_VP9_ONYXC_INT_H_ | 12 #define VP9_COMMON_VP9_ONYXC_INT_H_ |
13 | 13 |
14 #include "vpx_config.h" | 14 #include "./vpx_config.h" |
15 #include "vpx/internal/vpx_codec_internal.h" | 15 #include "vpx/internal/vpx_codec_internal.h" |
16 #include "vp9_rtcd.h" | 16 #include "./vp9_rtcd.h" |
17 #include "vp9/common/vp9_loopfilter.h" | 17 #include "vp9/common/vp9_loopfilter.h" |
18 #include "vp9/common/vp9_entropymv.h" | 18 #include "vp9/common/vp9_entropymv.h" |
19 #include "vp9/common/vp9_entropy.h" | 19 #include "vp9/common/vp9_entropy.h" |
20 #include "vp9/common/vp9_entropymode.h" | 20 #include "vp9/common/vp9_entropymode.h" |
21 #include "vp9/common/vp9_quant_common.h" | 21 #include "vp9/common/vp9_quant_common.h" |
| 22 #include "vp9/common/vp9_tile_common.h" |
22 | 23 |
23 #if CONFIG_VP9_POSTPROC | 24 #if CONFIG_VP9_POSTPROC |
24 #include "vp9/common/vp9_postproc.h" | 25 #include "vp9/common/vp9_postproc.h" |
25 #endif | 26 #endif |
26 | 27 |
27 #define ALLOWED_REFS_PER_FRAME 3 | 28 #define ALLOWED_REFS_PER_FRAME 3 |
28 | 29 |
29 #define NUM_REF_FRAMES_LOG2 3 | 30 #define NUM_REF_FRAMES_LOG2 3 |
30 #define NUM_REF_FRAMES (1 << NUM_REF_FRAMES_LOG2) | 31 #define NUM_REF_FRAMES (1 << NUM_REF_FRAMES_LOG2) |
31 | 32 |
32 // 1 scratch frame for the new frame, 3 for scaled references on the encoder | 33 // 1 scratch frame for the new frame, 3 for scaled references on the encoder |
33 // TODO(jkoleszar): These 3 extra references could probably come from the | 34 // TODO(jkoleszar): These 3 extra references could probably come from the |
34 // normal reference pool. | 35 // normal reference pool. |
35 #define NUM_YV12_BUFFERS (NUM_REF_FRAMES + 4) | 36 #define NUM_YV12_BUFFERS (NUM_REF_FRAMES + 4) |
36 | 37 |
37 #define NUM_FRAME_CONTEXTS_LOG2 2 | 38 #define NUM_FRAME_CONTEXTS_LOG2 2 |
38 #define NUM_FRAME_CONTEXTS (1 << NUM_FRAME_CONTEXTS_LOG2) | 39 #define NUM_FRAME_CONTEXTS (1 << NUM_FRAME_CONTEXTS_LOG2) |
39 | 40 |
40 typedef struct frame_contexts { | 41 typedef struct frame_contexts { |
41 vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; | 42 vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; |
42 vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; | 43 vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; |
43 vp9_prob partition_prob[NUM_FRAME_TYPES][NUM_PARTITION_CONTEXTS] | 44 vp9_prob partition_prob[FRAME_TYPES][PARTITION_CONTEXTS][PARTITION_TYPES - 1]; |
44 [PARTITION_TYPES - 1]; | |
45 vp9_coeff_probs_model coef_probs[TX_SIZES][BLOCK_TYPES]; | 45 vp9_coeff_probs_model coef_probs[TX_SIZES][BLOCK_TYPES]; |
46 vp9_prob switchable_interp_prob[SWITCHABLE_FILTERS + 1] | 46 vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] |
47 [SWITCHABLE_FILTERS - 1]; | 47 [SWITCHABLE_FILTERS - 1]; |
48 vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; | 48 vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; |
49 vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; | 49 vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; |
50 vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS]; | 50 vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS]; |
51 vp9_prob single_ref_prob[REF_CONTEXTS][2]; | 51 vp9_prob single_ref_prob[REF_CONTEXTS][2]; |
52 vp9_prob comp_ref_prob[REF_CONTEXTS]; | 52 vp9_prob comp_ref_prob[REF_CONTEXTS]; |
53 struct tx_probs tx_probs; | 53 struct tx_probs tx_probs; |
54 vp9_prob mbskip_probs[MBSKIP_CONTEXTS]; | 54 vp9_prob mbskip_probs[MBSKIP_CONTEXTS]; |
55 nmv_context nmvc; | 55 nmv_context nmvc; |
56 } FRAME_CONTEXT; | 56 } FRAME_CONTEXT; |
57 | 57 |
58 typedef struct { | 58 typedef struct { |
59 unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; | 59 unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; |
60 unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; | 60 unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; |
61 unsigned int partition[NUM_PARTITION_CONTEXTS][PARTITION_TYPES]; | 61 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; |
62 vp9_coeff_count_model coef[TX_SIZES][BLOCK_TYPES]; | 62 vp9_coeff_count_model coef[TX_SIZES][BLOCK_TYPES]; |
63 unsigned int eob_branch[TX_SIZES][BLOCK_TYPES][REF_TYPES] | 63 unsigned int eob_branch[TX_SIZES][BLOCK_TYPES][REF_TYPES] |
64 [COEF_BANDS][PREV_COEF_CONTEXTS]; | 64 [COEF_BANDS][PREV_COEF_CONTEXTS]; |
65 unsigned int switchable_interp[SWITCHABLE_FILTERS + 1] | 65 unsigned int switchable_interp[SWITCHABLE_FILTER_CONTEXTS] |
66 [SWITCHABLE_FILTERS]; | 66 [SWITCHABLE_FILTERS]; |
67 unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; | 67 unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; |
68 unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; | 68 unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; |
69 unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; | 69 unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; |
70 unsigned int single_ref[REF_CONTEXTS][2][2]; | 70 unsigned int single_ref[REF_CONTEXTS][2][2]; |
71 unsigned int comp_ref[REF_CONTEXTS][2]; | 71 unsigned int comp_ref[REF_CONTEXTS][2]; |
72 struct tx_counts tx; | 72 struct tx_counts tx; |
73 unsigned int mbskip[MBSKIP_CONTEXTS][2]; | 73 unsigned int mbskip[MBSKIP_CONTEXTS][2]; |
74 nmv_context_counts mv; | 74 nmv_context_counts mv; |
75 } FRAME_COUNTS; | 75 } FRAME_COUNTS; |
76 | 76 |
77 | 77 |
78 typedef enum { | 78 typedef enum { |
79 SINGLE_PREDICTION_ONLY = 0, | 79 SINGLE_PREDICTION_ONLY = 0, |
80 COMP_PREDICTION_ONLY = 1, | 80 COMP_PREDICTION_ONLY = 1, |
81 HYBRID_PREDICTION = 2, | 81 HYBRID_PREDICTION = 2, |
82 NB_PREDICTION_TYPES = 3, | 82 NB_PREDICTION_TYPES = 3, |
83 } COMPPREDMODE_TYPE; | 83 } COMPPREDMODE_TYPE; |
84 | 84 |
85 typedef struct VP9Common { | 85 typedef struct VP9Common { |
86 struct vpx_internal_error_info error; | 86 struct vpx_internal_error_info error; |
87 | 87 |
88 DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]); | 88 DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]); |
89 DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]); | 89 DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]); |
90 #if CONFIG_ALPHA | 90 #if CONFIG_ALPHA |
91 DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); | 91 DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); |
92 #endif | 92 #endif |
93 | 93 |
| 94 COLOR_SPACE color_space; |
| 95 |
94 int width; | 96 int width; |
95 int height; | 97 int height; |
96 int display_width; | 98 int display_width; |
97 int display_height; | 99 int display_height; |
98 int last_width; | 100 int last_width; |
99 int last_height; | 101 int last_height; |
100 | 102 |
101 // TODO(jkoleszar): this implies chroma ss right now, but could vary per | 103 // TODO(jkoleszar): this implies chroma ss right now, but could vary per |
102 // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to | 104 // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to |
103 // support additional planes. | 105 // support additional planes. |
104 int subsampling_x; | 106 int subsampling_x; |
105 int subsampling_y; | 107 int subsampling_y; |
106 | 108 |
107 YV12_BUFFER_CONFIG *frame_to_show; | 109 YV12_BUFFER_CONFIG *frame_to_show; |
108 | 110 |
109 YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; | 111 YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; |
110 int fb_idx_ref_cnt[NUM_YV12_BUFFERS]; /* reference counts */ | 112 int fb_idx_ref_cnt[NUM_YV12_BUFFERS]; /* reference counts */ |
111 int ref_frame_map[NUM_REF_FRAMES]; /* maps fb_idx to reference slot */ | 113 int ref_frame_map[NUM_REF_FRAMES]; /* maps fb_idx to reference slot */ |
112 | 114 |
113 // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and | 115 // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and |
114 // roll new_fb_idx into it. | 116 // roll new_fb_idx into it. |
115 | 117 |
116 // Each frame can reference ALLOWED_REFS_PER_FRAME buffers | 118 // Each frame can reference ALLOWED_REFS_PER_FRAME buffers |
117 int active_ref_idx[ALLOWED_REFS_PER_FRAME]; | 119 int active_ref_idx[ALLOWED_REFS_PER_FRAME]; |
118 struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME]; | 120 struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME]; |
| 121 struct scale_factors_common active_ref_scale_comm[ALLOWED_REFS_PER_FRAME]; |
119 int new_fb_idx; | 122 int new_fb_idx; |
120 | 123 |
121 YV12_BUFFER_CONFIG post_proc_buffer; | 124 YV12_BUFFER_CONFIG post_proc_buffer; |
122 | 125 |
123 FRAME_TYPE last_frame_type; /* Save last frame's frame type for motion search
. */ | 126 FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/ |
124 FRAME_TYPE frame_type; | 127 FRAME_TYPE frame_type; |
125 | 128 |
126 int show_frame; | 129 int show_frame; |
127 int last_show_frame; | 130 int last_show_frame; |
128 | 131 |
129 // Flag signaling that the frame is encoded using only INTRA modes. | 132 // Flag signaling that the frame is encoded using only INTRA modes. |
130 int intra_only; | 133 int intra_only; |
131 | 134 |
| 135 int allow_high_precision_mv; |
| 136 |
132 // Flag signaling that the frame context should be reset to default values. | 137 // Flag signaling that the frame context should be reset to default values. |
133 // 0 or 1 implies don't reset, 2 reset just the context specified in the | 138 // 0 or 1 implies don't reset, 2 reset just the context specified in the |
134 // frame header, 3 reset all contexts. | 139 // frame header, 3 reset all contexts. |
135 int reset_frame_context; | 140 int reset_frame_context; |
136 | 141 |
137 int frame_flags; | 142 int frame_flags; |
138 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in | 143 // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in |
139 // MODE_INFO (8-pixel) units. | 144 // MODE_INFO (8-pixel) units. |
140 int MBs; | 145 int MBs; |
141 int mb_rows, mi_rows; | 146 int mb_rows, mi_rows; |
142 int mb_cols, mi_cols; | 147 int mb_cols, mi_cols; |
143 int mode_info_stride; | 148 int mode_info_stride; |
144 | 149 |
145 /* profile settings */ | 150 /* profile settings */ |
146 TX_MODE tx_mode; | 151 TX_MODE tx_mode; |
147 | 152 |
148 int base_qindex; | 153 int base_qindex; |
149 int last_kf_gf_q; /* Q used on the last GF or KF */ | |
150 | |
151 int y_dc_delta_q; | 154 int y_dc_delta_q; |
152 int uv_dc_delta_q; | 155 int uv_dc_delta_q; |
153 int uv_ac_delta_q; | 156 int uv_ac_delta_q; |
154 #if CONFIG_ALPHA | 157 #if CONFIG_ALPHA |
155 int a_dc_delta_q; | 158 int a_dc_delta_q; |
156 int a_ac_delta_q; | 159 int a_ac_delta_q; |
157 #endif | 160 #endif |
158 | 161 |
159 /* We allocate a MODE_INFO struct for each macroblock, together with | 162 /* We allocate a MODE_INFO struct for each macroblock, together with |
160 an extra row on top and column on the left to simplify prediction. */ | 163 an extra row on top and column on the left to simplify prediction. */ |
161 | 164 |
162 MODE_INFO *mip; /* Base of allocated array */ | 165 MODE_INFO *mip; /* Base of allocated array */ |
163 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */ | 166 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */ |
164 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ | 167 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ |
165 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ | 168 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ |
166 | 169 |
167 MODE_INFO **mi_grid_base; | 170 MODE_INFO **mi_grid_base; |
168 MODE_INFO **mi_grid_visible; | 171 MODE_INFO **mi_grid_visible; |
169 MODE_INFO **prev_mi_grid_base; | 172 MODE_INFO **prev_mi_grid_base; |
170 MODE_INFO **prev_mi_grid_visible; | 173 MODE_INFO **prev_mi_grid_visible; |
171 | 174 |
172 // Persistent mb segment id map used in prediction. | 175 // Persistent mb segment id map used in prediction. |
173 unsigned char *last_frame_seg_map; | 176 unsigned char *last_frame_seg_map; |
174 | 177 |
175 INTERPOLATIONFILTERTYPE mcomp_filter_type; | 178 INTERPOLATION_TYPE mcomp_filter_type; |
176 | 179 |
177 loop_filter_info_n lf_info; | 180 loop_filter_info_n lf_info; |
178 | 181 |
179 int refresh_frame_context; /* Two state 0 = NO, 1 = YES */ | 182 int refresh_frame_context; /* Two state 0 = NO, 1 = YES */ |
180 | 183 |
181 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ | 184 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ |
182 | 185 |
183 struct loopfilter lf; | 186 struct loopfilter lf; |
184 struct segmentation seg; | 187 struct segmentation seg; |
185 | 188 |
186 /* Y,U,V */ | |
187 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; | |
188 ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16]; | |
189 | |
190 // partition contexts | |
191 PARTITION_CONTEXT *above_seg_context; | |
192 PARTITION_CONTEXT left_seg_context[8]; | |
193 | |
194 // Context probabilities for reference frame prediction | 189 // Context probabilities for reference frame prediction |
195 int allow_comp_inter_inter; | 190 int allow_comp_inter_inter; |
196 MV_REFERENCE_FRAME comp_fixed_ref; | 191 MV_REFERENCE_FRAME comp_fixed_ref; |
197 MV_REFERENCE_FRAME comp_var_ref[2]; | 192 MV_REFERENCE_FRAME comp_var_ref[2]; |
198 COMPPREDMODE_TYPE comp_pred_mode; | 193 COMPPREDMODE_TYPE comp_pred_mode; |
199 | 194 |
200 FRAME_CONTEXT fc; /* this frame entropy */ | 195 FRAME_CONTEXT fc; /* this frame entropy */ |
201 FRAME_CONTEXT frame_contexts[NUM_FRAME_CONTEXTS]; | 196 FRAME_CONTEXT frame_contexts[NUM_FRAME_CONTEXTS]; |
202 unsigned int frame_context_idx; /* Context to use/update */ | 197 unsigned int frame_context_idx; /* Context to use/update */ |
203 FRAME_COUNTS counts; | 198 FRAME_COUNTS counts; |
204 | 199 |
205 unsigned int current_video_frame; | 200 unsigned int current_video_frame; |
206 int version; | 201 int version; |
207 | 202 |
208 #if CONFIG_VP9_POSTPROC | 203 #if CONFIG_VP9_POSTPROC |
209 struct postproc_state postproc_state; | 204 struct postproc_state postproc_state; |
210 #endif | 205 #endif |
211 | 206 |
212 int error_resilient_mode; | 207 int error_resilient_mode; |
213 int frame_parallel_decoding_mode; | 208 int frame_parallel_decoding_mode; |
214 | 209 |
215 int log2_tile_cols, log2_tile_rows; | 210 int log2_tile_cols, log2_tile_rows; |
216 int cur_tile_mi_col_start, cur_tile_mi_col_end; | |
217 int cur_tile_mi_row_start, cur_tile_mi_row_end; | |
218 } VP9_COMMON; | 211 } VP9_COMMON; |
219 | 212 |
| 213 // ref == 0 => LAST_FRAME |
| 214 // ref == 1 => GOLDEN_FRAME |
| 215 // ref == 2 => ALTREF_FRAME |
| 216 static YV12_BUFFER_CONFIG *get_frame_ref_buffer(VP9_COMMON *cm, int ref) { |
| 217 return &cm->yv12_fb[cm->active_ref_idx[ref]]; |
| 218 } |
| 219 |
| 220 static YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) { |
| 221 return &cm->yv12_fb[cm->new_fb_idx]; |
| 222 } |
| 223 |
220 static int get_free_fb(VP9_COMMON *cm) { | 224 static int get_free_fb(VP9_COMMON *cm) { |
221 int i; | 225 int i; |
222 for (i = 0; i < NUM_YV12_BUFFERS; i++) | 226 for (i = 0; i < NUM_YV12_BUFFERS; i++) |
223 if (cm->fb_idx_ref_cnt[i] == 0) | 227 if (cm->fb_idx_ref_cnt[i] == 0) |
224 break; | 228 break; |
225 | 229 |
226 assert(i < NUM_YV12_BUFFERS); | 230 assert(i < NUM_YV12_BUFFERS); |
227 cm->fb_idx_ref_cnt[i] = 1; | 231 cm->fb_idx_ref_cnt[i] = 1; |
228 return i; | 232 return i; |
229 } | 233 } |
230 | 234 |
231 static void ref_cnt_fb(int *buf, int *idx, int new_idx) { | 235 static void ref_cnt_fb(int *buf, int *idx, int new_idx) { |
232 if (buf[*idx] > 0) | 236 if (buf[*idx] > 0) |
233 buf[*idx]--; | 237 buf[*idx]--; |
234 | 238 |
235 *idx = new_idx; | 239 *idx = new_idx; |
236 | 240 |
237 buf[new_idx]++; | 241 buf[new_idx]++; |
238 } | 242 } |
239 | 243 |
240 static int mi_cols_aligned_to_sb(int n_mis) { | 244 static int mi_cols_aligned_to_sb(int n_mis) { |
241 return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); | 245 return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); |
242 } | 246 } |
243 | 247 |
244 static INLINE void set_skip_context(VP9_COMMON *cm, MACROBLOCKD *xd, | 248 static INLINE void set_skip_context( |
245 int mi_row, int mi_col) { | 249 MACROBLOCKD *xd, |
| 250 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE], |
| 251 ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16], |
| 252 int mi_row, int mi_col) { |
246 const int above_idx = mi_col * 2; | 253 const int above_idx = mi_col * 2; |
247 const int left_idx = (mi_row * 2) & 15; | 254 const int left_idx = (mi_row * 2) & 15; |
248 int i; | 255 int i; |
249 for (i = 0; i < MAX_MB_PLANE; i++) { | 256 for (i = 0; i < MAX_MB_PLANE; i++) { |
250 struct macroblockd_plane *const pd = &xd->plane[i]; | 257 struct macroblockd_plane *const pd = &xd->plane[i]; |
251 pd->above_context = cm->above_context[i] + (above_idx >> pd->subsampling_x); | 258 pd->above_context = above_context[i] + (above_idx >> pd->subsampling_x); |
252 pd->left_context = cm->left_context[i] + (left_idx >> pd->subsampling_y); | 259 pd->left_context = left_context[i] + (left_idx >> pd->subsampling_y); |
253 } | 260 } |
254 } | 261 } |
255 | 262 |
256 static INLINE void set_partition_seg_context(VP9_COMMON *cm, MACROBLOCKD *xd, | 263 static void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile, |
257 int mi_row, int mi_col) { | 264 int mi_row, int bh, |
258 xd->above_seg_context = cm->above_seg_context + mi_col; | 265 int mi_col, int bw, |
259 xd->left_seg_context = cm->left_seg_context + (mi_row & MI_MASK); | 266 int mi_rows, int mi_cols) { |
260 } | 267 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); |
261 | 268 xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; |
262 // return the node index in the prob tree for binary coding | 269 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8); |
263 static int check_bsize_coverage(int bs, int mi_rows, int mi_cols, | 270 xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; |
264 int mi_row, int mi_col) { | |
265 const int r = (mi_row + bs < mi_rows); | |
266 const int c = (mi_col + bs < mi_cols); | |
267 | |
268 if (r && c) | |
269 return 0; | |
270 | |
271 if (c && !r) | |
272 return 1; // only allow horizontal/split partition types | |
273 | |
274 if (r && !c) | |
275 return 2; // only allow vertical/split partition types | |
276 | |
277 return -1; | |
278 } | |
279 | |
280 static void set_mi_row_col(VP9_COMMON *cm, MACROBLOCKD *xd, | |
281 int mi_row, int bh, | |
282 int mi_col, int bw) { | |
283 xd->mb_to_top_edge = -((mi_row * MI_SIZE) << 3); | |
284 xd->mb_to_bottom_edge = ((cm->mi_rows - bh - mi_row) * MI_SIZE) << 3; | |
285 xd->mb_to_left_edge = -((mi_col * MI_SIZE) << 3); | |
286 xd->mb_to_right_edge = ((cm->mi_cols - bw - mi_col) * MI_SIZE) << 3; | |
287 | 271 |
288 // Are edges available for intra prediction? | 272 // Are edges available for intra prediction? |
289 xd->up_available = (mi_row != 0); | 273 xd->up_available = (mi_row != 0); |
290 xd->left_available = (mi_col > cm->cur_tile_mi_col_start); | 274 xd->left_available = (mi_col > tile->mi_col_start); |
291 xd->right_available = (mi_col + bw < cm->cur_tile_mi_col_end); | |
292 } | |
293 | |
294 static int get_token_alloc(int mb_rows, int mb_cols) { | |
295 return mb_rows * mb_cols * (48 * 16 + 4); | |
296 } | 275 } |
297 | 276 |
298 static void set_prev_mi(VP9_COMMON *cm) { | 277 static void set_prev_mi(VP9_COMMON *cm) { |
299 const int use_prev_in_find_mv_refs = cm->width == cm->last_width && | 278 const int use_prev_in_find_mv_refs = cm->width == cm->last_width && |
300 cm->height == cm->last_height && | 279 cm->height == cm->last_height && |
301 !cm->error_resilient_mode && | 280 !cm->error_resilient_mode && |
302 !cm->intra_only && | 281 !cm->intra_only && |
303 cm->last_show_frame; | 282 cm->last_show_frame; |
304 // Special case: set prev_mi to NULL when the previous mode info | 283 // Special case: set prev_mi to NULL when the previous mode info |
305 // context cannot be used. | 284 // context cannot be used. |
306 cm->prev_mi = use_prev_in_find_mv_refs ? | 285 cm->prev_mi = use_prev_in_find_mv_refs ? |
307 cm->prev_mip + cm->mode_info_stride + 1 : NULL; | 286 cm->prev_mip + cm->mode_info_stride + 1 : NULL; |
308 } | 287 } |
| 288 |
| 289 static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) { |
| 290 return cm->frame_type == KEY_FRAME || cm->intra_only; |
| 291 } |
| 292 |
| 293 static INLINE void update_partition_context( |
| 294 PARTITION_CONTEXT *above_seg_context, |
| 295 PARTITION_CONTEXT left_seg_context[8], |
| 296 int mi_row, int mi_col, |
| 297 BLOCK_SIZE sb_type, |
| 298 BLOCK_SIZE sb_size) { |
| 299 PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; |
| 300 PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); |
| 301 |
| 302 const int bsl = b_width_log2(sb_size), bs = (1 << bsl) / 2; |
| 303 const int bwl = b_width_log2(sb_type); |
| 304 const int bhl = b_height_log2(sb_type); |
| 305 const int boffset = b_width_log2(BLOCK_64X64) - bsl; |
| 306 const char pcval0 = ~(0xe << boffset); |
| 307 const char pcval1 = ~(0xf << boffset); |
| 308 const char pcvalue[2] = {pcval0, pcval1}; |
| 309 |
| 310 assert(MAX(bwl, bhl) <= bsl); |
| 311 |
| 312 // update the partition context at the end notes. set partition bits |
| 313 // of block sizes larger than the current one to be one, and partition |
| 314 // bits of smaller block sizes to be zero. |
| 315 vpx_memset(above_ctx, pcvalue[bwl == bsl], bs); |
| 316 vpx_memset(left_ctx, pcvalue[bhl == bsl], bs); |
| 317 } |
| 318 |
| 319 static INLINE int partition_plane_context( |
| 320 const PARTITION_CONTEXT *above_seg_context, |
| 321 const PARTITION_CONTEXT left_seg_context[8], |
| 322 int mi_row, int mi_col, |
| 323 BLOCK_SIZE sb_type) { |
| 324 const PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; |
| 325 const PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); |
| 326 |
| 327 int bsl = mi_width_log2(sb_type), bs = 1 << bsl; |
| 328 int above = 0, left = 0, i; |
| 329 int boffset = mi_width_log2(BLOCK_64X64) - bsl; |
| 330 |
| 331 assert(mi_width_log2(sb_type) == mi_height_log2(sb_type)); |
| 332 assert(bsl >= 0); |
| 333 assert(boffset >= 0); |
| 334 |
| 335 for (i = 0; i < bs; i++) |
| 336 above |= (above_ctx[i] & (1 << boffset)); |
| 337 for (i = 0; i < bs; i++) |
| 338 left |= (left_ctx[i] & (1 << boffset)); |
| 339 |
| 340 above = (above > 0); |
| 341 left = (left > 0); |
| 342 |
| 343 return (left * 2 + above) + bsl * PARTITION_PLOFFSET; |
| 344 } |
| 345 |
309 #endif // VP9_COMMON_VP9_ONYXC_INT_H_ | 346 #endif // VP9_COMMON_VP9_ONYXC_INT_H_ |
OLD | NEW |