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 #include "vp9/common/vp9_tile_common.h" |
23 | 23 |
24 #if CONFIG_VP9_POSTPROC | 24 #if CONFIG_VP9_POSTPROC |
25 #include "vp9/common/vp9_postproc.h" | 25 #include "vp9/common/vp9_postproc.h" |
26 #endif | 26 #endif |
27 | 27 |
28 #define ALLOWED_REFS_PER_FRAME 3 | 28 #define REFS_PER_FRAME 3 |
29 | 29 |
30 #define NUM_REF_FRAMES_LOG2 3 | 30 #define REF_FRAMES_LOG2 3 |
31 #define NUM_REF_FRAMES (1 << NUM_REF_FRAMES_LOG2) | 31 #define REF_FRAMES (1 << REF_FRAMES_LOG2) |
32 | 32 |
33 // 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 |
34 // TODO(jkoleszar): These 3 extra references could probably come from the | 34 // TODO(jkoleszar): These 3 extra references could probably come from the |
35 // normal reference pool. | 35 // normal reference pool. |
36 #define NUM_YV12_BUFFERS (NUM_REF_FRAMES + 4) | 36 #define FRAME_BUFFERS (REF_FRAMES + 4) |
37 | 37 |
38 #define NUM_FRAME_CONTEXTS_LOG2 2 | 38 #define FRAME_CONTEXTS_LOG2 2 |
39 #define NUM_FRAME_CONTEXTS (1 << NUM_FRAME_CONTEXTS_LOG2) | 39 #define FRAME_CONTEXTS (1 << FRAME_CONTEXTS_LOG2) |
| 40 |
| 41 extern const struct { |
| 42 PARTITION_CONTEXT above; |
| 43 PARTITION_CONTEXT left; |
| 44 } partition_context_lookup[BLOCK_SIZES]; |
40 | 45 |
41 typedef struct frame_contexts { | 46 typedef struct frame_contexts { |
42 vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; | 47 vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; |
43 vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; | 48 vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; |
44 vp9_prob partition_prob[FRAME_TYPES][PARTITION_CONTEXTS][PARTITION_TYPES - 1]; | 49 vp9_prob partition_prob[PARTITION_CONTEXTS][PARTITION_TYPES - 1]; |
45 vp9_coeff_probs_model coef_probs[TX_SIZES][BLOCK_TYPES]; | 50 vp9_coeff_probs_model coef_probs[TX_SIZES][PLANE_TYPES]; |
46 vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] | 51 vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] |
47 [SWITCHABLE_FILTERS - 1]; | 52 [SWITCHABLE_FILTERS - 1]; |
48 vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; | 53 vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; |
49 vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; | 54 vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; |
50 vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS]; | 55 vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS]; |
51 vp9_prob single_ref_prob[REF_CONTEXTS][2]; | 56 vp9_prob single_ref_prob[REF_CONTEXTS][2]; |
52 vp9_prob comp_ref_prob[REF_CONTEXTS]; | 57 vp9_prob comp_ref_prob[REF_CONTEXTS]; |
53 struct tx_probs tx_probs; | 58 struct tx_probs tx_probs; |
54 vp9_prob mbskip_probs[MBSKIP_CONTEXTS]; | 59 vp9_prob mbskip_probs[MBSKIP_CONTEXTS]; |
55 nmv_context nmvc; | 60 nmv_context nmvc; |
56 } FRAME_CONTEXT; | 61 } FRAME_CONTEXT; |
57 | 62 |
58 typedef struct { | 63 typedef struct { |
59 unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; | 64 unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; |
60 unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; | 65 unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; |
61 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; | 66 unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; |
62 vp9_coeff_count_model coef[TX_SIZES][BLOCK_TYPES]; | 67 vp9_coeff_count_model coef[TX_SIZES][PLANE_TYPES]; |
63 unsigned int eob_branch[TX_SIZES][BLOCK_TYPES][REF_TYPES] | 68 unsigned int eob_branch[TX_SIZES][PLANE_TYPES][REF_TYPES] |
64 [COEF_BANDS][PREV_COEF_CONTEXTS]; | 69 [COEF_BANDS][COEFF_CONTEXTS]; |
65 unsigned int switchable_interp[SWITCHABLE_FILTER_CONTEXTS] | 70 unsigned int switchable_interp[SWITCHABLE_FILTER_CONTEXTS] |
66 [SWITCHABLE_FILTERS]; | 71 [SWITCHABLE_FILTERS]; |
67 unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; | 72 unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; |
68 unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; | 73 unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; |
69 unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; | 74 unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; |
70 unsigned int single_ref[REF_CONTEXTS][2][2]; | 75 unsigned int single_ref[REF_CONTEXTS][2][2]; |
71 unsigned int comp_ref[REF_CONTEXTS][2]; | 76 unsigned int comp_ref[REF_CONTEXTS][2]; |
72 struct tx_counts tx; | 77 struct tx_counts tx; |
73 unsigned int mbskip[MBSKIP_CONTEXTS][2]; | 78 unsigned int mbskip[MBSKIP_CONTEXTS][2]; |
74 nmv_context_counts mv; | 79 nmv_context_counts mv; |
75 } FRAME_COUNTS; | 80 } FRAME_COUNTS; |
76 | 81 |
77 | 82 |
78 typedef enum { | 83 typedef enum { |
79 SINGLE_PREDICTION_ONLY = 0, | 84 SINGLE_REFERENCE = 0, |
80 COMP_PREDICTION_ONLY = 1, | 85 COMPOUND_REFERENCE = 1, |
81 HYBRID_PREDICTION = 2, | 86 REFERENCE_MODE_SELECT = 2, |
82 NB_PREDICTION_TYPES = 3, | 87 REFERENCE_MODES = 3, |
83 } COMPPREDMODE_TYPE; | 88 } REFERENCE_MODE; |
84 | 89 |
85 typedef struct VP9Common { | 90 typedef struct VP9Common { |
86 struct vpx_internal_error_info error; | 91 struct vpx_internal_error_info error; |
87 | 92 |
88 DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]); | 93 DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]); |
89 DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]); | 94 DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]); |
90 #if CONFIG_ALPHA | 95 #if CONFIG_ALPHA |
91 DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); | 96 DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); |
92 #endif | 97 #endif |
93 | 98 |
94 COLOR_SPACE color_space; | 99 COLOR_SPACE color_space; |
95 | 100 |
96 int width; | 101 int width; |
97 int height; | 102 int height; |
98 int display_width; | 103 int display_width; |
99 int display_height; | 104 int display_height; |
100 int last_width; | 105 int last_width; |
101 int last_height; | 106 int last_height; |
102 | 107 |
103 // TODO(jkoleszar): this implies chroma ss right now, but could vary per | 108 // TODO(jkoleszar): this implies chroma ss right now, but could vary per |
104 // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to | 109 // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to |
105 // support additional planes. | 110 // support additional planes. |
106 int subsampling_x; | 111 int subsampling_x; |
107 int subsampling_y; | 112 int subsampling_y; |
108 | 113 |
109 YV12_BUFFER_CONFIG *frame_to_show; | 114 YV12_BUFFER_CONFIG *frame_to_show; |
110 | 115 |
111 YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; | 116 YV12_BUFFER_CONFIG *yv12_fb; |
112 int fb_idx_ref_cnt[NUM_YV12_BUFFERS]; /* reference counts */ | 117 int *fb_idx_ref_cnt; /* reference counts */ |
113 int ref_frame_map[NUM_REF_FRAMES]; /* maps fb_idx to reference slot */ | 118 int ref_frame_map[REF_FRAMES]; /* maps fb_idx to reference slot */ |
114 | 119 |
115 // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and | 120 // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and |
116 // roll new_fb_idx into it. | 121 // roll new_fb_idx into it. |
117 | 122 |
118 // Each frame can reference ALLOWED_REFS_PER_FRAME buffers | 123 // Each frame can reference REFS_PER_FRAME buffers |
119 int active_ref_idx[ALLOWED_REFS_PER_FRAME]; | 124 int active_ref_idx[REFS_PER_FRAME]; |
120 struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME]; | 125 struct scale_factors active_ref_scale[REFS_PER_FRAME]; |
121 struct scale_factors_common active_ref_scale_comm[ALLOWED_REFS_PER_FRAME]; | 126 struct scale_factors_common active_ref_scale_comm[REFS_PER_FRAME]; |
122 int new_fb_idx; | 127 int new_fb_idx; |
123 | 128 |
124 YV12_BUFFER_CONFIG post_proc_buffer; | 129 YV12_BUFFER_CONFIG post_proc_buffer; |
125 | 130 |
126 FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/ | 131 FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/ |
127 FRAME_TYPE frame_type; | 132 FRAME_TYPE frame_type; |
128 | 133 |
129 int show_frame; | 134 int show_frame; |
130 int last_show_frame; | 135 int last_show_frame; |
131 | 136 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 188 |
184 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ | 189 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ |
185 | 190 |
186 struct loopfilter lf; | 191 struct loopfilter lf; |
187 struct segmentation seg; | 192 struct segmentation seg; |
188 | 193 |
189 // Context probabilities for reference frame prediction | 194 // Context probabilities for reference frame prediction |
190 int allow_comp_inter_inter; | 195 int allow_comp_inter_inter; |
191 MV_REFERENCE_FRAME comp_fixed_ref; | 196 MV_REFERENCE_FRAME comp_fixed_ref; |
192 MV_REFERENCE_FRAME comp_var_ref[2]; | 197 MV_REFERENCE_FRAME comp_var_ref[2]; |
193 COMPPREDMODE_TYPE comp_pred_mode; | 198 REFERENCE_MODE reference_mode; |
194 | 199 |
195 FRAME_CONTEXT fc; /* this frame entropy */ | 200 FRAME_CONTEXT fc; /* this frame entropy */ |
196 FRAME_CONTEXT frame_contexts[NUM_FRAME_CONTEXTS]; | 201 FRAME_CONTEXT frame_contexts[FRAME_CONTEXTS]; |
197 unsigned int frame_context_idx; /* Context to use/update */ | 202 unsigned int frame_context_idx; /* Context to use/update */ |
198 FRAME_COUNTS counts; | 203 FRAME_COUNTS counts; |
199 | 204 |
200 unsigned int current_video_frame; | 205 unsigned int current_video_frame; |
201 int version; | 206 int version; |
202 | 207 |
203 #if CONFIG_VP9_POSTPROC | 208 #if CONFIG_VP9_POSTPROC |
204 struct postproc_state postproc_state; | 209 struct postproc_state postproc_state; |
205 #endif | 210 #endif |
206 | 211 |
207 int error_resilient_mode; | 212 int error_resilient_mode; |
208 int frame_parallel_decoding_mode; | 213 int frame_parallel_decoding_mode; |
209 | 214 |
210 int log2_tile_cols, log2_tile_rows; | 215 int log2_tile_cols, log2_tile_rows; |
| 216 |
| 217 vpx_codec_frame_buffer_t *fb_list; // External frame buffers |
| 218 int fb_count; // Total number of frame buffers |
| 219 vpx_realloc_frame_buffer_cb_fn_t realloc_fb_cb; |
| 220 void *user_priv; // Private data associated with the external frame buffers. |
| 221 |
| 222 int fb_lru; // Flag telling if lru is on/off |
| 223 uint32_t *fb_idx_ref_lru; // Frame buffer lru cache |
| 224 uint32_t fb_idx_ref_lru_count; |
211 } VP9_COMMON; | 225 } VP9_COMMON; |
212 | 226 |
213 // ref == 0 => LAST_FRAME | 227 // ref == 0 => LAST_FRAME |
214 // ref == 1 => GOLDEN_FRAME | 228 // ref == 1 => GOLDEN_FRAME |
215 // ref == 2 => ALTREF_FRAME | 229 // ref == 2 => ALTREF_FRAME |
216 static YV12_BUFFER_CONFIG *get_frame_ref_buffer(VP9_COMMON *cm, int ref) { | 230 static YV12_BUFFER_CONFIG *get_frame_ref_buffer(VP9_COMMON *cm, int ref) { |
217 return &cm->yv12_fb[cm->active_ref_idx[ref]]; | 231 return &cm->yv12_fb[cm->active_ref_idx[ref]]; |
218 } | 232 } |
219 | 233 |
220 static YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) { | 234 static YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) { |
221 return &cm->yv12_fb[cm->new_fb_idx]; | 235 return &cm->yv12_fb[cm->new_fb_idx]; |
222 } | 236 } |
223 | 237 |
224 static int get_free_fb(VP9_COMMON *cm) { | 238 static int get_free_fb(VP9_COMMON *cm) { |
225 int i; | 239 int i; |
226 for (i = 0; i < NUM_YV12_BUFFERS; i++) | 240 uint32_t lru_count = cm->fb_idx_ref_lru_count + 1; |
227 if (cm->fb_idx_ref_cnt[i] == 0) | 241 int free_buffer_idx = cm->fb_count; |
228 break; | 242 for (i = 0; i < cm->fb_count; i++) { |
| 243 if (!cm->fb_lru) { |
| 244 if (cm->fb_idx_ref_cnt[i] == 0) { |
| 245 free_buffer_idx = i; |
| 246 break; |
| 247 } |
| 248 } else { |
| 249 if (cm->fb_idx_ref_cnt[i] == 0 && cm->fb_idx_ref_lru[i] < lru_count) { |
| 250 free_buffer_idx = i; |
| 251 lru_count = cm->fb_idx_ref_lru[i]; |
| 252 } |
| 253 } |
| 254 } |
229 | 255 |
230 assert(i < NUM_YV12_BUFFERS); | 256 assert(free_buffer_idx < cm->fb_count); |
231 cm->fb_idx_ref_cnt[i] = 1; | 257 cm->fb_idx_ref_cnt[free_buffer_idx] = 1; |
232 return i; | 258 if (cm->fb_lru) |
| 259 cm->fb_idx_ref_lru[free_buffer_idx] = ++cm->fb_idx_ref_lru_count; |
| 260 return free_buffer_idx; |
233 } | 261 } |
234 | 262 |
235 static void ref_cnt_fb(int *buf, int *idx, int new_idx) { | 263 static void ref_cnt_fb(int *buf, int *idx, int new_idx) { |
236 if (buf[*idx] > 0) | 264 const int ref_index = *idx; |
237 buf[*idx]--; | 265 |
| 266 if (ref_index >= 0 && buf[ref_index] > 0) |
| 267 buf[ref_index]--; |
238 | 268 |
239 *idx = new_idx; | 269 *idx = new_idx; |
240 | 270 |
241 buf[new_idx]++; | 271 buf[new_idx]++; |
242 } | 272 } |
243 | 273 |
244 static int mi_cols_aligned_to_sb(int n_mis) { | 274 static int mi_cols_aligned_to_sb(int n_mis) { |
245 return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); | 275 return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); |
246 } | 276 } |
247 | 277 |
| 278 static INLINE const vp9_prob* get_partition_probs(VP9_COMMON *cm, int ctx) { |
| 279 return cm->frame_type == KEY_FRAME ? vp9_kf_partition_probs[ctx] |
| 280 : cm->fc.partition_prob[ctx]; |
| 281 } |
| 282 |
248 static INLINE void set_skip_context( | 283 static INLINE void set_skip_context( |
249 MACROBLOCKD *xd, | 284 MACROBLOCKD *xd, |
250 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE], | 285 ENTROPY_CONTEXT *above_context[MAX_MB_PLANE], |
251 ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16], | 286 ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16], |
252 int mi_row, int mi_col) { | 287 int mi_row, int mi_col) { |
253 const int above_idx = mi_col * 2; | 288 const int above_idx = mi_col * 2; |
254 const int left_idx = (mi_row * 2) & 15; | 289 const int left_idx = (mi_row * 2) & 15; |
255 int i; | 290 int i; |
256 for (i = 0; i < MAX_MB_PLANE; i++) { | 291 for (i = 0; i < MAX_MB_PLANE; i++) { |
257 struct macroblockd_plane *const pd = &xd->plane[i]; | 292 struct macroblockd_plane *const pd = &xd->plane[i]; |
(...skipping 28 matching lines...) Expand all Loading... |
286 cm->prev_mip + cm->mode_info_stride + 1 : NULL; | 321 cm->prev_mip + cm->mode_info_stride + 1 : NULL; |
287 } | 322 } |
288 | 323 |
289 static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) { | 324 static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) { |
290 return cm->frame_type == KEY_FRAME || cm->intra_only; | 325 return cm->frame_type == KEY_FRAME || cm->intra_only; |
291 } | 326 } |
292 | 327 |
293 static INLINE void update_partition_context( | 328 static INLINE void update_partition_context( |
294 PARTITION_CONTEXT *above_seg_context, | 329 PARTITION_CONTEXT *above_seg_context, |
295 PARTITION_CONTEXT left_seg_context[8], | 330 PARTITION_CONTEXT left_seg_context[8], |
296 int mi_row, int mi_col, | 331 int mi_row, int mi_col, BLOCK_SIZE subsize, BLOCK_SIZE bsize) { |
297 BLOCK_SIZE sb_type, | 332 PARTITION_CONTEXT *const above_ctx = above_seg_context + mi_col; |
298 BLOCK_SIZE sb_size) { | 333 PARTITION_CONTEXT *const left_ctx = left_seg_context + (mi_row & MI_MASK); |
299 PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; | |
300 PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); | |
301 | 334 |
302 const int bsl = b_width_log2(sb_size), bs = (1 << bsl) / 2; | 335 // num_4x4_blocks_wide_lookup[bsize] / 2 |
303 const int bwl = b_width_log2(sb_type); | 336 const int bs = num_8x8_blocks_wide_lookup[bsize]; |
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 | 337 |
312 // update the partition context at the end notes. set partition bits | 338 // 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 | 339 // of block sizes larger than the current one to be one, and partition |
314 // bits of smaller block sizes to be zero. | 340 // bits of smaller block sizes to be zero. |
315 vpx_memset(above_ctx, pcvalue[bwl == bsl], bs); | 341 vpx_memset(above_ctx, partition_context_lookup[subsize].above, bs); |
316 vpx_memset(left_ctx, pcvalue[bhl == bsl], bs); | 342 vpx_memset(left_ctx, partition_context_lookup[subsize].left, bs); |
317 } | 343 } |
318 | 344 |
319 static INLINE int partition_plane_context( | 345 static INLINE int partition_plane_context( |
320 const PARTITION_CONTEXT *above_seg_context, | 346 const PARTITION_CONTEXT *above_seg_context, |
321 const PARTITION_CONTEXT left_seg_context[8], | 347 const PARTITION_CONTEXT left_seg_context[8], |
322 int mi_row, int mi_col, | 348 int mi_row, int mi_col, BLOCK_SIZE bsize) { |
323 BLOCK_SIZE sb_type) { | |
324 const PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; | 349 const PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; |
325 const PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); | 350 const PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); |
326 | 351 |
327 int bsl = mi_width_log2(sb_type), bs = 1 << bsl; | 352 const int bsl = mi_width_log2(bsize); |
| 353 const int bs = 1 << bsl; |
328 int above = 0, left = 0, i; | 354 int above = 0, left = 0, i; |
329 int boffset = mi_width_log2(BLOCK_64X64) - bsl; | |
330 | 355 |
331 assert(mi_width_log2(sb_type) == mi_height_log2(sb_type)); | 356 assert(mi_width_log2(bsize) == mi_height_log2(bsize)); |
332 assert(bsl >= 0); | 357 assert(bsl >= 0); |
333 assert(boffset >= 0); | |
334 | 358 |
335 for (i = 0; i < bs; i++) | 359 for (i = 0; i < bs; i++) { |
336 above |= (above_ctx[i] & (1 << boffset)); | 360 above |= above_ctx[i]; |
337 for (i = 0; i < bs; i++) | 361 left |= left_ctx[i]; |
338 left |= (left_ctx[i] & (1 << boffset)); | 362 } |
339 | 363 above = (above & bs) > 0; |
340 above = (above > 0); | 364 left = (left & bs) > 0; |
341 left = (left > 0); | |
342 | 365 |
343 return (left * 2 + above) + bsl * PARTITION_PLOFFSET; | 366 return (left * 2 + above) + bsl * PARTITION_PLOFFSET; |
344 } | 367 } |
345 | 368 |
346 #endif // VP9_COMMON_VP9_ONYXC_INT_H_ | 369 #endif // VP9_COMMON_VP9_ONYXC_INT_H_ |
OLD | NEW |