| Index: source/libvpx/vp9/common/vp9_alloccommon.c
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_alloccommon.c (revision 232232)
|
| +++ source/libvpx/vp9/common/vp9_alloccommon.c (working copy)
|
| @@ -41,30 +41,25 @@
|
|
|
| vpx_free(cm->mip);
|
| vpx_free(cm->prev_mip);
|
| - vpx_free(cm->above_seg_context);
|
| vpx_free(cm->last_frame_seg_map);
|
| vpx_free(cm->mi_grid_base);
|
| vpx_free(cm->prev_mi_grid_base);
|
|
|
| - vpx_free(cm->above_context[0]);
|
| - for (i = 0; i < MAX_MB_PLANE; i++)
|
| - cm->above_context[i] = 0;
|
| cm->mip = NULL;
|
| cm->prev_mip = NULL;
|
| - cm->above_seg_context = NULL;
|
| cm->last_frame_seg_map = NULL;
|
| cm->mi_grid_base = NULL;
|
| cm->prev_mi_grid_base = NULL;
|
| }
|
|
|
| static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) {
|
| - cm->mb_cols = (aligned_width + 8) >> 4;
|
| - cm->mb_rows = (aligned_height + 8) >> 4;
|
| - cm->MBs = cm->mb_rows * cm->mb_cols;
|
| -
|
| cm->mi_cols = aligned_width >> MI_SIZE_LOG2;
|
| cm->mi_rows = aligned_height >> MI_SIZE_LOG2;
|
| cm->mode_info_stride = cm->mi_cols + MI_BLOCK_SIZE;
|
| +
|
| + cm->mb_cols = (cm->mi_cols + 1) >> 1;
|
| + cm->mb_rows = (cm->mi_rows + 1) >> 1;
|
| + cm->MBs = cm->mb_rows * cm->mb_cols;
|
| }
|
|
|
| static void setup_mi(VP9_COMMON *cm) {
|
| @@ -85,7 +80,7 @@
|
| }
|
|
|
| int vp9_alloc_frame_buffers(VP9_COMMON *cm, int width, int height) {
|
| - int i, mi_cols;
|
| + int i;
|
|
|
| const int aligned_width = ALIGN_POWER_OF_TWO(width, MI_SIZE_LOG2);
|
| const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2);
|
| @@ -140,21 +135,6 @@
|
|
|
| setup_mi(cm);
|
|
|
| - // FIXME(jkoleszar): allocate subsampled arrays for U/V once subsampling
|
| - // information is exposed at this level
|
| - mi_cols = mi_cols_aligned_to_sb(cm->mi_cols);
|
| -
|
| - // 2 contexts per 'mi unit', so that we have one context per 4x4 txfm
|
| - // block where mi unit size is 8x8.
|
| - cm->above_context[0] = vpx_calloc(sizeof(ENTROPY_CONTEXT) * MAX_MB_PLANE *
|
| - (2 * mi_cols), 1);
|
| - if (!cm->above_context[0])
|
| - goto fail;
|
| -
|
| - cm->above_seg_context = vpx_calloc(sizeof(PARTITION_CONTEXT) * mi_cols, 1);
|
| - if (!cm->above_seg_context)
|
| - goto fail;
|
| -
|
| // Create the segmentation map structure and set to 0.
|
| cm->last_frame_seg_map = vpx_calloc(cm->mi_rows * cm->mi_cols, 1);
|
| if (!cm->last_frame_seg_map)
|
| @@ -170,13 +150,8 @@
|
| void vp9_create_common(VP9_COMMON *cm) {
|
| vp9_machine_specific_config(cm);
|
|
|
| - vp9_init_mbmode_probs(cm);
|
| -
|
| cm->tx_mode = ONLY_4X4;
|
| cm->comp_pred_mode = HYBRID_PREDICTION;
|
| -
|
| - // Initialize reference frame sign bias structure to defaults
|
| - vpx_memset(cm->ref_frame_sign_bias, 0, sizeof(cm->ref_frame_sign_bias));
|
| }
|
|
|
| void vp9_remove_common(VP9_COMMON *cm) {
|
| @@ -184,24 +159,19 @@
|
| }
|
|
|
| void vp9_initialize_common() {
|
| + vp9_init_neighbors();
|
| vp9_coef_tree_initialize();
|
| vp9_entropy_mode_init();
|
| vp9_entropy_mv_init();
|
| }
|
|
|
| void vp9_update_frame_size(VP9_COMMON *cm) {
|
| - int i, mi_cols;
|
| const int aligned_width = ALIGN_POWER_OF_TWO(cm->width, MI_SIZE_LOG2);
|
| const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2);
|
|
|
| set_mb_mi(cm, aligned_width, aligned_height);
|
| setup_mi(cm);
|
|
|
| - mi_cols = mi_cols_aligned_to_sb(cm->mi_cols);
|
| - for (i = 1; i < MAX_MB_PLANE; i++)
|
| - cm->above_context[i] =
|
| - cm->above_context[0] + i * sizeof(ENTROPY_CONTEXT) * 2 * mi_cols;
|
| -
|
| // Initialize the previous frame segment map to 0.
|
| if (cm->last_frame_seg_map)
|
| vpx_memset(cm->last_frame_seg_map, 0, cm->mi_rows * cm->mi_cols);
|
|
|