vp9_pred_common: inline vp9_get_tx_size_context
+ drop 'vp9_' prefix Change-Id: If3f3ec32d03026af78b8fcd82749e587a3f43059
This commit is contained in:
@@ -337,26 +337,3 @@ int vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd) {
|
|||||||
assert(pred_context >= 0 && pred_context < REF_CONTEXTS);
|
assert(pred_context >= 0 && pred_context < REF_CONTEXTS);
|
||||||
return pred_context;
|
return pred_context;
|
||||||
}
|
}
|
||||||
// Returns a context number for the given MB prediction signal
|
|
||||||
// The mode info data structure has a one element border above and to the
|
|
||||||
// left of the entries corresponding to real blocks.
|
|
||||||
// The prediction flags in these dummy entries are initialized to 0.
|
|
||||||
int vp9_get_tx_size_context(const MACROBLOCKD *xd) {
|
|
||||||
const int max_tx_size = max_txsize_lookup[xd->mi[0]->mbmi.sb_type];
|
|
||||||
const MB_MODE_INFO *const above_mbmi = xd->above_mbmi;
|
|
||||||
const MB_MODE_INFO *const left_mbmi = xd->left_mbmi;
|
|
||||||
const int has_above = xd->up_available;
|
|
||||||
const int has_left = xd->left_available;
|
|
||||||
int above_ctx = (has_above && !above_mbmi->skip) ? (int)above_mbmi->tx_size
|
|
||||||
: max_tx_size;
|
|
||||||
int left_ctx = (has_left && !left_mbmi->skip) ? (int)left_mbmi->tx_size
|
|
||||||
: max_tx_size;
|
|
||||||
if (!has_left)
|
|
||||||
left_ctx = above_ctx;
|
|
||||||
|
|
||||||
if (!has_above)
|
|
||||||
above_ctx = left_ctx;
|
|
||||||
|
|
||||||
return (above_ctx + left_ctx) > max_tx_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|||||||
@@ -104,7 +104,28 @@ static INLINE vp9_prob vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm,
|
|||||||
return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
|
return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
|
||||||
}
|
}
|
||||||
|
|
||||||
int vp9_get_tx_size_context(const MACROBLOCKD *xd);
|
// Returns a context number for the given MB prediction signal
|
||||||
|
// The mode info data structure has a one element border above and to the
|
||||||
|
// left of the entries corresponding to real blocks.
|
||||||
|
// The prediction flags in these dummy entries are initialized to 0.
|
||||||
|
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
|
||||||
|
const int max_tx_size = max_txsize_lookup[xd->mi[0]->mbmi.sb_type];
|
||||||
|
const MB_MODE_INFO *const above_mbmi = xd->above_mbmi;
|
||||||
|
const MB_MODE_INFO *const left_mbmi = xd->left_mbmi;
|
||||||
|
const int has_above = xd->up_available;
|
||||||
|
const int has_left = xd->left_available;
|
||||||
|
int above_ctx = (has_above && !above_mbmi->skip) ? (int)above_mbmi->tx_size
|
||||||
|
: max_tx_size;
|
||||||
|
int left_ctx = (has_left && !left_mbmi->skip) ? (int)left_mbmi->tx_size
|
||||||
|
: max_tx_size;
|
||||||
|
if (!has_left)
|
||||||
|
left_ctx = above_ctx;
|
||||||
|
|
||||||
|
if (!has_above)
|
||||||
|
above_ctx = left_ctx;
|
||||||
|
|
||||||
|
return (above_ctx + left_ctx) > max_tx_size;
|
||||||
|
}
|
||||||
|
|
||||||
static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
|
static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
|
||||||
const struct tx_probs *tx_probs) {
|
const struct tx_probs *tx_probs) {
|
||||||
@@ -124,7 +145,7 @@ static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
|
|||||||
static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
|
static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
|
||||||
const MACROBLOCKD *xd,
|
const MACROBLOCKD *xd,
|
||||||
const struct tx_probs *tx_probs) {
|
const struct tx_probs *tx_probs) {
|
||||||
return get_tx_probs(max_tx_size, vp9_get_tx_size_context(xd), tx_probs);
|
return get_tx_probs(max_tx_size, get_tx_size_context(xd), tx_probs);
|
||||||
}
|
}
|
||||||
|
|
||||||
static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
|
static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ static int read_segment_id(vp9_reader *r, const struct segmentation *seg) {
|
|||||||
static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd,
|
static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd,
|
||||||
TX_SIZE max_tx_size, vp9_reader *r) {
|
TX_SIZE max_tx_size, vp9_reader *r) {
|
||||||
FRAME_COUNTS *counts = xd->counts;
|
FRAME_COUNTS *counts = xd->counts;
|
||||||
const int ctx = vp9_get_tx_size_context(xd);
|
const int ctx = get_tx_size_context(xd);
|
||||||
const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc->tx_probs);
|
const vp9_prob *tx_probs = get_tx_probs(max_tx_size, ctx, &cm->fc->tx_probs);
|
||||||
int tx_size = vp9_read(r, tx_probs[0]);
|
int tx_size = vp9_read(r, tx_probs[0]);
|
||||||
if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
|
if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
|
||||||
|
|||||||
@@ -4217,7 +4217,7 @@ static void encode_superblock(VP9_COMP *cpi, ThreadData *td,
|
|||||||
if (cm->tx_mode == TX_MODE_SELECT &&
|
if (cm->tx_mode == TX_MODE_SELECT &&
|
||||||
mbmi->sb_type >= BLOCK_8X8 &&
|
mbmi->sb_type >= BLOCK_8X8 &&
|
||||||
!(is_inter_block(mbmi) && (mbmi->skip || seg_skip))) {
|
!(is_inter_block(mbmi) && (mbmi->skip || seg_skip))) {
|
||||||
++get_tx_counts(max_txsize_lookup[bsize], vp9_get_tx_size_context(xd),
|
++get_tx_counts(max_txsize_lookup[bsize], get_tx_size_context(xd),
|
||||||
&td->counts->tx)[mbmi->tx_size];
|
&td->counts->tx)[mbmi->tx_size];
|
||||||
} else {
|
} else {
|
||||||
int x, y;
|
int x, y;
|
||||||
|
|||||||
Reference in New Issue
Block a user