michael@0: /* michael@0: * Copyright (c) 2010 The WebM project authors. All Rights Reserved. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license michael@0: * that can be found in the LICENSE file in the root of the source michael@0: * tree. An additional intellectual property rights grant can be found michael@0: * in the file PATENTS. All contributing project authors may michael@0: * be found in the AUTHORS file in the root of the source tree. michael@0: */ michael@0: michael@0: #ifndef VP9_COMMON_VP9_ONYXC_INT_H_ michael@0: #define VP9_COMMON_VP9_ONYXC_INT_H_ michael@0: michael@0: #include "./vpx_config.h" michael@0: #include "vpx/internal/vpx_codec_internal.h" michael@0: #include "./vp9_rtcd.h" michael@0: #include "vp9/common/vp9_loopfilter.h" michael@0: #include "vp9/common/vp9_entropymv.h" michael@0: #include "vp9/common/vp9_entropy.h" michael@0: #include "vp9/common/vp9_entropymode.h" michael@0: #include "vp9/common/vp9_quant_common.h" michael@0: #include "vp9/common/vp9_tile_common.h" michael@0: michael@0: #if CONFIG_VP9_POSTPROC michael@0: #include "vp9/common/vp9_postproc.h" michael@0: #endif michael@0: michael@0: #define ALLOWED_REFS_PER_FRAME 3 michael@0: michael@0: #define NUM_REF_FRAMES_LOG2 3 michael@0: #define NUM_REF_FRAMES (1 << NUM_REF_FRAMES_LOG2) michael@0: michael@0: // 1 scratch frame for the new frame, 3 for scaled references on the encoder michael@0: // TODO(jkoleszar): These 3 extra references could probably come from the michael@0: // normal reference pool. michael@0: #define NUM_YV12_BUFFERS (NUM_REF_FRAMES + 4) michael@0: michael@0: #define NUM_FRAME_CONTEXTS_LOG2 2 michael@0: #define NUM_FRAME_CONTEXTS (1 << NUM_FRAME_CONTEXTS_LOG2) michael@0: michael@0: typedef struct frame_contexts { michael@0: vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; michael@0: vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; michael@0: vp9_prob partition_prob[PARTITION_CONTEXTS][PARTITION_TYPES - 1]; michael@0: vp9_coeff_probs_model coef_probs[TX_SIZES][BLOCK_TYPES]; michael@0: vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] michael@0: [SWITCHABLE_FILTERS - 1]; michael@0: vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; michael@0: vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; michael@0: vp9_prob comp_inter_prob[COMP_INTER_CONTEXTS]; michael@0: vp9_prob single_ref_prob[REF_CONTEXTS][2]; michael@0: vp9_prob comp_ref_prob[REF_CONTEXTS]; michael@0: struct tx_probs tx_probs; michael@0: vp9_prob mbskip_probs[MBSKIP_CONTEXTS]; michael@0: nmv_context nmvc; michael@0: } FRAME_CONTEXT; michael@0: michael@0: typedef struct { michael@0: unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; michael@0: unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; michael@0: unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; michael@0: vp9_coeff_count_model coef[TX_SIZES][BLOCK_TYPES]; michael@0: unsigned int eob_branch[TX_SIZES][BLOCK_TYPES][REF_TYPES] michael@0: [COEF_BANDS][PREV_COEF_CONTEXTS]; michael@0: unsigned int switchable_interp[SWITCHABLE_FILTER_CONTEXTS] michael@0: [SWITCHABLE_FILTERS]; michael@0: unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; michael@0: unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; michael@0: unsigned int comp_inter[COMP_INTER_CONTEXTS][2]; michael@0: unsigned int single_ref[REF_CONTEXTS][2][2]; michael@0: unsigned int comp_ref[REF_CONTEXTS][2]; michael@0: struct tx_counts tx; michael@0: unsigned int mbskip[MBSKIP_CONTEXTS][2]; michael@0: nmv_context_counts mv; michael@0: } FRAME_COUNTS; michael@0: michael@0: michael@0: typedef enum { michael@0: SINGLE_PREDICTION_ONLY = 0, michael@0: COMP_PREDICTION_ONLY = 1, michael@0: HYBRID_PREDICTION = 2, michael@0: NB_PREDICTION_TYPES = 3, michael@0: } COMPPREDMODE_TYPE; michael@0: michael@0: typedef struct VP9Common { michael@0: struct vpx_internal_error_info error; michael@0: michael@0: DECLARE_ALIGNED(16, int16_t, y_dequant[QINDEX_RANGE][8]); michael@0: DECLARE_ALIGNED(16, int16_t, uv_dequant[QINDEX_RANGE][8]); michael@0: #if CONFIG_ALPHA michael@0: DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); michael@0: #endif michael@0: michael@0: COLOR_SPACE color_space; michael@0: michael@0: int width; michael@0: int height; michael@0: int display_width; michael@0: int display_height; michael@0: int last_width; michael@0: int last_height; michael@0: michael@0: // TODO(jkoleszar): this implies chroma ss right now, but could vary per michael@0: // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to michael@0: // support additional planes. michael@0: int subsampling_x; michael@0: int subsampling_y; michael@0: michael@0: YV12_BUFFER_CONFIG *frame_to_show; michael@0: michael@0: YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS]; michael@0: int fb_idx_ref_cnt[NUM_YV12_BUFFERS]; /* reference counts */ michael@0: int ref_frame_map[NUM_REF_FRAMES]; /* maps fb_idx to reference slot */ michael@0: michael@0: // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and michael@0: // roll new_fb_idx into it. michael@0: michael@0: // Each frame can reference ALLOWED_REFS_PER_FRAME buffers michael@0: int active_ref_idx[ALLOWED_REFS_PER_FRAME]; michael@0: struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME]; michael@0: struct scale_factors_common active_ref_scale_comm[ALLOWED_REFS_PER_FRAME]; michael@0: int new_fb_idx; michael@0: michael@0: YV12_BUFFER_CONFIG post_proc_buffer; michael@0: michael@0: FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/ michael@0: FRAME_TYPE frame_type; michael@0: michael@0: int show_frame; michael@0: int last_show_frame; michael@0: michael@0: // Flag signaling that the frame is encoded using only INTRA modes. michael@0: int intra_only; michael@0: michael@0: int allow_high_precision_mv; michael@0: michael@0: // Flag signaling that the frame context should be reset to default values. michael@0: // 0 or 1 implies don't reset, 2 reset just the context specified in the michael@0: // frame header, 3 reset all contexts. michael@0: int reset_frame_context; michael@0: michael@0: int frame_flags; michael@0: // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in michael@0: // MODE_INFO (8-pixel) units. michael@0: int MBs; michael@0: int mb_rows, mi_rows; michael@0: int mb_cols, mi_cols; michael@0: int mode_info_stride; michael@0: michael@0: /* profile settings */ michael@0: TX_MODE tx_mode; michael@0: michael@0: int base_qindex; michael@0: int y_dc_delta_q; michael@0: int uv_dc_delta_q; michael@0: int uv_ac_delta_q; michael@0: #if CONFIG_ALPHA michael@0: int a_dc_delta_q; michael@0: int a_ac_delta_q; michael@0: #endif michael@0: michael@0: /* We allocate a MODE_INFO struct for each macroblock, together with michael@0: an extra row on top and column on the left to simplify prediction. */ michael@0: michael@0: MODE_INFO *mip; /* Base of allocated array */ michael@0: MODE_INFO *mi; /* Corresponds to upper left visible macroblock */ michael@0: MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ michael@0: MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ michael@0: michael@0: MODE_INFO **mi_grid_base; michael@0: MODE_INFO **mi_grid_visible; michael@0: MODE_INFO **prev_mi_grid_base; michael@0: MODE_INFO **prev_mi_grid_visible; michael@0: michael@0: // Persistent mb segment id map used in prediction. michael@0: unsigned char *last_frame_seg_map; michael@0: michael@0: INTERPOLATION_TYPE mcomp_filter_type; michael@0: michael@0: loop_filter_info_n lf_info; michael@0: michael@0: int refresh_frame_context; /* Two state 0 = NO, 1 = YES */ michael@0: michael@0: int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ michael@0: michael@0: struct loopfilter lf; michael@0: struct segmentation seg; michael@0: michael@0: // Context probabilities for reference frame prediction michael@0: int allow_comp_inter_inter; michael@0: MV_REFERENCE_FRAME comp_fixed_ref; michael@0: MV_REFERENCE_FRAME comp_var_ref[2]; michael@0: COMPPREDMODE_TYPE comp_pred_mode; michael@0: michael@0: FRAME_CONTEXT fc; /* this frame entropy */ michael@0: FRAME_CONTEXT frame_contexts[NUM_FRAME_CONTEXTS]; michael@0: unsigned int frame_context_idx; /* Context to use/update */ michael@0: FRAME_COUNTS counts; michael@0: michael@0: unsigned int current_video_frame; michael@0: int version; michael@0: michael@0: #if CONFIG_VP9_POSTPROC michael@0: struct postproc_state postproc_state; michael@0: #endif michael@0: michael@0: int error_resilient_mode; michael@0: int frame_parallel_decoding_mode; michael@0: michael@0: int log2_tile_cols, log2_tile_rows; michael@0: } VP9_COMMON; michael@0: michael@0: // ref == 0 => LAST_FRAME michael@0: // ref == 1 => GOLDEN_FRAME michael@0: // ref == 2 => ALTREF_FRAME michael@0: static YV12_BUFFER_CONFIG *get_frame_ref_buffer(VP9_COMMON *cm, int ref) { michael@0: return &cm->yv12_fb[cm->active_ref_idx[ref]]; michael@0: } michael@0: michael@0: static YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) { michael@0: return &cm->yv12_fb[cm->new_fb_idx]; michael@0: } michael@0: michael@0: static int get_free_fb(VP9_COMMON *cm) { michael@0: int i; michael@0: for (i = 0; i < NUM_YV12_BUFFERS; i++) michael@0: if (cm->fb_idx_ref_cnt[i] == 0) michael@0: break; michael@0: michael@0: assert(i < NUM_YV12_BUFFERS); michael@0: cm->fb_idx_ref_cnt[i] = 1; michael@0: return i; michael@0: } michael@0: michael@0: static void ref_cnt_fb(int *buf, int *idx, int new_idx) { michael@0: if (buf[*idx] > 0) michael@0: buf[*idx]--; michael@0: michael@0: *idx = new_idx; michael@0: michael@0: buf[new_idx]++; michael@0: } michael@0: michael@0: static int mi_cols_aligned_to_sb(int n_mis) { michael@0: return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); michael@0: } michael@0: michael@0: static INLINE const vp9_prob* get_partition_probs(VP9_COMMON *cm, int ctx) { michael@0: return cm->frame_type == KEY_FRAME ? vp9_kf_partition_probs[ctx] michael@0: : cm->fc.partition_prob[ctx]; michael@0: } michael@0: michael@0: static INLINE void set_skip_context( michael@0: MACROBLOCKD *xd, michael@0: ENTROPY_CONTEXT *above_context[MAX_MB_PLANE], michael@0: ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16], michael@0: int mi_row, int mi_col) { michael@0: const int above_idx = mi_col * 2; michael@0: const int left_idx = (mi_row * 2) & 15; michael@0: int i; michael@0: for (i = 0; i < MAX_MB_PLANE; i++) { michael@0: struct macroblockd_plane *const pd = &xd->plane[i]; michael@0: pd->above_context = above_context[i] + (above_idx >> pd->subsampling_x); michael@0: pd->left_context = left_context[i] + (left_idx >> pd->subsampling_y); michael@0: } michael@0: } michael@0: michael@0: static void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile, michael@0: int mi_row, int bh, michael@0: int mi_col, int bw, michael@0: int mi_rows, int mi_cols) { michael@0: xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); michael@0: xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; michael@0: xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8); michael@0: xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; michael@0: michael@0: // Are edges available for intra prediction? michael@0: xd->up_available = (mi_row != 0); michael@0: xd->left_available = (mi_col > tile->mi_col_start); michael@0: } michael@0: michael@0: static void set_prev_mi(VP9_COMMON *cm) { michael@0: const int use_prev_in_find_mv_refs = cm->width == cm->last_width && michael@0: cm->height == cm->last_height && michael@0: !cm->error_resilient_mode && michael@0: !cm->intra_only && michael@0: cm->last_show_frame; michael@0: // Special case: set prev_mi to NULL when the previous mode info michael@0: // context cannot be used. michael@0: cm->prev_mi = use_prev_in_find_mv_refs ? michael@0: cm->prev_mip + cm->mode_info_stride + 1 : NULL; michael@0: } michael@0: michael@0: static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) { michael@0: return cm->frame_type == KEY_FRAME || cm->intra_only; michael@0: } michael@0: michael@0: static INLINE void update_partition_context( michael@0: PARTITION_CONTEXT *above_seg_context, michael@0: PARTITION_CONTEXT left_seg_context[8], michael@0: int mi_row, int mi_col, michael@0: BLOCK_SIZE sb_type, michael@0: BLOCK_SIZE sb_size) { michael@0: PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; michael@0: PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); michael@0: michael@0: const int bsl = b_width_log2(sb_size), bs = (1 << bsl) / 2; michael@0: const int bwl = b_width_log2(sb_type); michael@0: const int bhl = b_height_log2(sb_type); michael@0: const int boffset = b_width_log2(BLOCK_64X64) - bsl; michael@0: const char pcval0 = ~(0xe << boffset); michael@0: const char pcval1 = ~(0xf << boffset); michael@0: const char pcvalue[2] = {pcval0, pcval1}; michael@0: michael@0: assert(MAX(bwl, bhl) <= bsl); michael@0: michael@0: // update the partition context at the end notes. set partition bits michael@0: // of block sizes larger than the current one to be one, and partition michael@0: // bits of smaller block sizes to be zero. michael@0: vpx_memset(above_ctx, pcvalue[bwl == bsl], bs); michael@0: vpx_memset(left_ctx, pcvalue[bhl == bsl], bs); michael@0: } michael@0: michael@0: static INLINE int partition_plane_context( michael@0: const PARTITION_CONTEXT *above_seg_context, michael@0: const PARTITION_CONTEXT left_seg_context[8], michael@0: int mi_row, int mi_col, michael@0: BLOCK_SIZE sb_type) { michael@0: const PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; michael@0: const PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); michael@0: michael@0: int bsl = mi_width_log2(sb_type), bs = 1 << bsl; michael@0: int above = 0, left = 0, i; michael@0: int boffset = mi_width_log2(BLOCK_64X64) - bsl; michael@0: michael@0: assert(mi_width_log2(sb_type) == mi_height_log2(sb_type)); michael@0: assert(bsl >= 0); michael@0: assert(boffset >= 0); michael@0: michael@0: for (i = 0; i < bs; i++) { michael@0: above |= above_ctx[i]; michael@0: left |= left_ctx[i]; michael@0: } michael@0: above = (above & (1 << boffset)) > 0; michael@0: left = (left & (1 << boffset)) > 0; michael@0: michael@0: return (left * 2 + above) + bsl * PARTITION_PLOFFSET; michael@0: } michael@0: michael@0: #endif // VP9_COMMON_VP9_ONYXC_INT_H_