Index: source/libvpx/vp9/common/vp9_onyxc_int.h |
=================================================================== |
--- source/libvpx/vp9/common/vp9_onyxc_int.h (revision 232232) |
+++ source/libvpx/vp9/common/vp9_onyxc_int.h (working copy) |
@@ -11,14 +11,15 @@ |
#ifndef VP9_COMMON_VP9_ONYXC_INT_H_ |
#define VP9_COMMON_VP9_ONYXC_INT_H_ |
-#include "vpx_config.h" |
+#include "./vpx_config.h" |
#include "vpx/internal/vpx_codec_internal.h" |
-#include "vp9_rtcd.h" |
+#include "./vp9_rtcd.h" |
#include "vp9/common/vp9_loopfilter.h" |
#include "vp9/common/vp9_entropymv.h" |
#include "vp9/common/vp9_entropy.h" |
#include "vp9/common/vp9_entropymode.h" |
#include "vp9/common/vp9_quant_common.h" |
+#include "vp9/common/vp9_tile_common.h" |
#if CONFIG_VP9_POSTPROC |
#include "vp9/common/vp9_postproc.h" |
@@ -40,10 +41,9 @@ |
typedef struct frame_contexts { |
vp9_prob y_mode_prob[BLOCK_SIZE_GROUPS][INTRA_MODES - 1]; |
vp9_prob uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; |
- vp9_prob partition_prob[NUM_FRAME_TYPES][NUM_PARTITION_CONTEXTS] |
- [PARTITION_TYPES - 1]; |
+ vp9_prob partition_prob[FRAME_TYPES][PARTITION_CONTEXTS][PARTITION_TYPES - 1]; |
vp9_coeff_probs_model coef_probs[TX_SIZES][BLOCK_TYPES]; |
- vp9_prob switchable_interp_prob[SWITCHABLE_FILTERS + 1] |
+ vp9_prob switchable_interp_prob[SWITCHABLE_FILTER_CONTEXTS] |
[SWITCHABLE_FILTERS - 1]; |
vp9_prob inter_mode_probs[INTER_MODE_CONTEXTS][INTER_MODES - 1]; |
vp9_prob intra_inter_prob[INTRA_INTER_CONTEXTS]; |
@@ -58,11 +58,11 @@ |
typedef struct { |
unsigned int y_mode[BLOCK_SIZE_GROUPS][INTRA_MODES]; |
unsigned int uv_mode[INTRA_MODES][INTRA_MODES]; |
- unsigned int partition[NUM_PARTITION_CONTEXTS][PARTITION_TYPES]; |
+ unsigned int partition[PARTITION_CONTEXTS][PARTITION_TYPES]; |
vp9_coeff_count_model coef[TX_SIZES][BLOCK_TYPES]; |
unsigned int eob_branch[TX_SIZES][BLOCK_TYPES][REF_TYPES] |
[COEF_BANDS][PREV_COEF_CONTEXTS]; |
- unsigned int switchable_interp[SWITCHABLE_FILTERS + 1] |
+ unsigned int switchable_interp[SWITCHABLE_FILTER_CONTEXTS] |
[SWITCHABLE_FILTERS]; |
unsigned int inter_mode[INTER_MODE_CONTEXTS][INTER_MODES]; |
unsigned int intra_inter[INTRA_INTER_CONTEXTS][2]; |
@@ -91,6 +91,8 @@ |
DECLARE_ALIGNED(16, int16_t, a_dequant[QINDEX_RANGE][8]); |
#endif |
+ COLOR_SPACE color_space; |
+ |
int width; |
int height; |
int display_width; |
@@ -116,11 +118,12 @@ |
// Each frame can reference ALLOWED_REFS_PER_FRAME buffers |
int active_ref_idx[ALLOWED_REFS_PER_FRAME]; |
struct scale_factors active_ref_scale[ALLOWED_REFS_PER_FRAME]; |
+ struct scale_factors_common active_ref_scale_comm[ALLOWED_REFS_PER_FRAME]; |
int new_fb_idx; |
YV12_BUFFER_CONFIG post_proc_buffer; |
- FRAME_TYPE last_frame_type; /* Save last frame's frame type for motion search. */ |
+ FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/ |
FRAME_TYPE frame_type; |
int show_frame; |
@@ -129,6 +132,8 @@ |
// Flag signaling that the frame is encoded using only INTRA modes. |
int intra_only; |
+ int allow_high_precision_mv; |
+ |
// Flag signaling that the frame context should be reset to default values. |
// 0 or 1 implies don't reset, 2 reset just the context specified in the |
// frame header, 3 reset all contexts. |
@@ -146,8 +151,6 @@ |
TX_MODE tx_mode; |
int base_qindex; |
- int last_kf_gf_q; /* Q used on the last GF or KF */ |
- |
int y_dc_delta_q; |
int uv_dc_delta_q; |
int uv_ac_delta_q; |
@@ -172,7 +175,7 @@ |
// Persistent mb segment id map used in prediction. |
unsigned char *last_frame_seg_map; |
- INTERPOLATIONFILTERTYPE mcomp_filter_type; |
+ INTERPOLATION_TYPE mcomp_filter_type; |
loop_filter_info_n lf_info; |
@@ -183,14 +186,6 @@ |
struct loopfilter lf; |
struct segmentation seg; |
- /* Y,U,V */ |
- ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; |
- ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16]; |
- |
- // partition contexts |
- PARTITION_CONTEXT *above_seg_context; |
- PARTITION_CONTEXT left_seg_context[8]; |
- |
// Context probabilities for reference frame prediction |
int allow_comp_inter_inter; |
MV_REFERENCE_FRAME comp_fixed_ref; |
@@ -213,10 +208,19 @@ |
int frame_parallel_decoding_mode; |
int log2_tile_cols, log2_tile_rows; |
- int cur_tile_mi_col_start, cur_tile_mi_col_end; |
- int cur_tile_mi_row_start, cur_tile_mi_row_end; |
} VP9_COMMON; |
+// ref == 0 => LAST_FRAME |
+// ref == 1 => GOLDEN_FRAME |
+// ref == 2 => ALTREF_FRAME |
+static YV12_BUFFER_CONFIG *get_frame_ref_buffer(VP9_COMMON *cm, int ref) { |
+ return &cm->yv12_fb[cm->active_ref_idx[ref]]; |
+} |
+ |
+static YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) { |
+ return &cm->yv12_fb[cm->new_fb_idx]; |
+} |
+ |
static int get_free_fb(VP9_COMMON *cm) { |
int i; |
for (i = 0; i < NUM_YV12_BUFFERS; i++) |
@@ -241,60 +245,35 @@ |
return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2); |
} |
-static INLINE void set_skip_context(VP9_COMMON *cm, MACROBLOCKD *xd, |
- int mi_row, int mi_col) { |
+static INLINE void set_skip_context( |
+ MACROBLOCKD *xd, |
+ ENTROPY_CONTEXT *above_context[MAX_MB_PLANE], |
+ ENTROPY_CONTEXT left_context[MAX_MB_PLANE][16], |
+ int mi_row, int mi_col) { |
const int above_idx = mi_col * 2; |
const int left_idx = (mi_row * 2) & 15; |
int i; |
for (i = 0; i < MAX_MB_PLANE; i++) { |
struct macroblockd_plane *const pd = &xd->plane[i]; |
- pd->above_context = cm->above_context[i] + (above_idx >> pd->subsampling_x); |
- pd->left_context = cm->left_context[i] + (left_idx >> pd->subsampling_y); |
+ pd->above_context = above_context[i] + (above_idx >> pd->subsampling_x); |
+ pd->left_context = left_context[i] + (left_idx >> pd->subsampling_y); |
} |
} |
-static INLINE void set_partition_seg_context(VP9_COMMON *cm, MACROBLOCKD *xd, |
- int mi_row, int mi_col) { |
- xd->above_seg_context = cm->above_seg_context + mi_col; |
- xd->left_seg_context = cm->left_seg_context + (mi_row & MI_MASK); |
-} |
+static void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile, |
+ int mi_row, int bh, |
+ int mi_col, int bw, |
+ int mi_rows, int mi_cols) { |
+ xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8); |
+ xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8; |
+ xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8); |
+ xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8; |
-// return the node index in the prob tree for binary coding |
-static int check_bsize_coverage(int bs, int mi_rows, int mi_cols, |
- int mi_row, int mi_col) { |
- const int r = (mi_row + bs < mi_rows); |
- const int c = (mi_col + bs < mi_cols); |
- |
- if (r && c) |
- return 0; |
- |
- if (c && !r) |
- return 1; // only allow horizontal/split partition types |
- |
- if (r && !c) |
- return 2; // only allow vertical/split partition types |
- |
- return -1; |
-} |
- |
-static void set_mi_row_col(VP9_COMMON *cm, MACROBLOCKD *xd, |
- int mi_row, int bh, |
- int mi_col, int bw) { |
- xd->mb_to_top_edge = -((mi_row * MI_SIZE) << 3); |
- xd->mb_to_bottom_edge = ((cm->mi_rows - bh - mi_row) * MI_SIZE) << 3; |
- xd->mb_to_left_edge = -((mi_col * MI_SIZE) << 3); |
- xd->mb_to_right_edge = ((cm->mi_cols - bw - mi_col) * MI_SIZE) << 3; |
- |
// Are edges available for intra prediction? |
xd->up_available = (mi_row != 0); |
- xd->left_available = (mi_col > cm->cur_tile_mi_col_start); |
- xd->right_available = (mi_col + bw < cm->cur_tile_mi_col_end); |
+ xd->left_available = (mi_col > tile->mi_col_start); |
} |
-static int get_token_alloc(int mb_rows, int mb_cols) { |
- return mb_rows * mb_cols * (48 * 16 + 4); |
-} |
- |
static void set_prev_mi(VP9_COMMON *cm) { |
const int use_prev_in_find_mv_refs = cm->width == cm->last_width && |
cm->height == cm->last_height && |
@@ -306,4 +285,62 @@ |
cm->prev_mi = use_prev_in_find_mv_refs ? |
cm->prev_mip + cm->mode_info_stride + 1 : NULL; |
} |
+ |
+static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) { |
+ return cm->frame_type == KEY_FRAME || cm->intra_only; |
+} |
+ |
+static INLINE void update_partition_context( |
+ PARTITION_CONTEXT *above_seg_context, |
+ PARTITION_CONTEXT left_seg_context[8], |
+ int mi_row, int mi_col, |
+ BLOCK_SIZE sb_type, |
+ BLOCK_SIZE sb_size) { |
+ PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; |
+ PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); |
+ |
+ const int bsl = b_width_log2(sb_size), bs = (1 << bsl) / 2; |
+ const int bwl = b_width_log2(sb_type); |
+ const int bhl = b_height_log2(sb_type); |
+ const int boffset = b_width_log2(BLOCK_64X64) - bsl; |
+ const char pcval0 = ~(0xe << boffset); |
+ const char pcval1 = ~(0xf << boffset); |
+ const char pcvalue[2] = {pcval0, pcval1}; |
+ |
+ assert(MAX(bwl, bhl) <= bsl); |
+ |
+ // update the partition context at the end notes. set partition bits |
+ // of block sizes larger than the current one to be one, and partition |
+ // bits of smaller block sizes to be zero. |
+ vpx_memset(above_ctx, pcvalue[bwl == bsl], bs); |
+ vpx_memset(left_ctx, pcvalue[bhl == bsl], bs); |
+} |
+ |
+static INLINE int partition_plane_context( |
+ const PARTITION_CONTEXT *above_seg_context, |
+ const PARTITION_CONTEXT left_seg_context[8], |
+ int mi_row, int mi_col, |
+ BLOCK_SIZE sb_type) { |
+ const PARTITION_CONTEXT *above_ctx = above_seg_context + mi_col; |
+ const PARTITION_CONTEXT *left_ctx = left_seg_context + (mi_row & MI_MASK); |
+ |
+ int bsl = mi_width_log2(sb_type), bs = 1 << bsl; |
+ int above = 0, left = 0, i; |
+ int boffset = mi_width_log2(BLOCK_64X64) - bsl; |
+ |
+ assert(mi_width_log2(sb_type) == mi_height_log2(sb_type)); |
+ assert(bsl >= 0); |
+ assert(boffset >= 0); |
+ |
+ for (i = 0; i < bs; i++) |
+ above |= (above_ctx[i] & (1 << boffset)); |
+ for (i = 0; i < bs; i++) |
+ left |= (left_ctx[i] & (1 << boffset)); |
+ |
+ above = (above > 0); |
+ left = (left > 0); |
+ |
+ return (left * 2 + above) + bsl * PARTITION_PLOFFSET; |
+} |
+ |
#endif // VP9_COMMON_VP9_ONYXC_INT_H_ |