afe43d4089
Functions: vp9_get_pred_context_switchable_interp, vp9_get_pred_context_intra_inter, vp9_get_pred_context_single_ref_p1, vp9_get_pred_context_single_ref_p2. Change-Id: I3d6fb8aee23c9062270768e1e6da416dd9bb8f96
124 lines
4.9 KiB
C
124 lines
4.9 KiB
C
/*
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef VP9_COMMON_VP9_PRED_COMMON_H_
|
|
#define VP9_COMMON_VP9_PRED_COMMON_H_
|
|
|
|
#include "vp9/common/vp9_blockd.h"
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
|
|
|
int vp9_get_segment_id(VP9_COMMON *cm, const uint8_t *segment_ids,
|
|
BLOCK_SIZE_TYPE bsize, int mi_row, int mi_col);
|
|
|
|
|
|
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
|
|
const MODE_INFO *const mi = xd->mode_info_context;
|
|
const MB_MODE_INFO *const above_mbmi = &mi[-xd->mode_info_stride].mbmi;
|
|
const MB_MODE_INFO *const left_mbmi = &mi[-1].mbmi;
|
|
|
|
return above_mbmi->seg_id_predicted +
|
|
(xd->left_available ? left_mbmi->seg_id_predicted : 0);
|
|
}
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_seg_id(const MACROBLOCKD *xd) {
|
|
return xd->seg.pred_probs[vp9_get_pred_context_seg_id(xd)];
|
|
}
|
|
|
|
void vp9_set_pred_flag_seg_id(VP9_COMMON *cm, BLOCK_SIZE_TYPE bsize,
|
|
int mi_row, int mi_col, uint8_t pred_flag);
|
|
|
|
static INLINE int vp9_get_pred_context_mbskip(const MACROBLOCKD *xd) {
|
|
const MODE_INFO *const mi = xd->mode_info_context;
|
|
const MB_MODE_INFO *const above_mbmi = &mi[-xd->mode_info_stride].mbmi;
|
|
const MB_MODE_INFO *const left_mbmi = &mi[-1].mbmi;
|
|
|
|
return above_mbmi->mb_skip_coeff +
|
|
(xd->left_available ? left_mbmi->mb_skip_coeff : 0);
|
|
}
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_mbskip(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
return cm->fc.mbskip_probs[vp9_get_pred_context_mbskip(xd)];
|
|
}
|
|
|
|
static INLINE unsigned char vp9_get_pred_flag_mbskip(const MACROBLOCKD *xd) {
|
|
return xd->mode_info_context->mbmi.mb_skip_coeff;
|
|
}
|
|
|
|
void vp9_set_pred_flag_mbskip(VP9_COMMON *cm, BLOCK_SIZE_TYPE bsize,
|
|
int mi_row, int mi_col, uint8_t pred_flag);
|
|
|
|
unsigned char vp9_get_pred_context_switchable_interp(const MACROBLOCKD *xd);
|
|
|
|
static INLINE const vp9_prob *vp9_get_pred_probs_switchable_interp(
|
|
const VP9_COMMON *cm, const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_switchable_interp(xd);
|
|
return &cm->fc.switchable_interp_prob[pred_context][0];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_intra_inter(const MACROBLOCKD *xd);
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_intra_inter(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_intra_inter(xd);
|
|
return cm->fc.intra_inter_prob[pred_context];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_comp_inter_inter(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd);
|
|
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_comp_inter_inter(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_comp_inter_inter(cm, xd);
|
|
return cm->fc.comp_inter_prob[pred_context];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_comp_ref_p(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd);
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_comp_ref_p(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_comp_ref_p(cm, xd);
|
|
return cm->fc.comp_ref_prob[pred_context];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_single_ref_p1(const MACROBLOCKD *xd);
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_single_ref_p1(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_single_ref_p1(xd);
|
|
return cm->fc.single_ref_prob[pred_context][0];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd);
|
|
|
|
static INLINE vp9_prob vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm,
|
|
const MACROBLOCKD *xd) {
|
|
const int pred_context = vp9_get_pred_context_single_ref_p2(xd);
|
|
return cm->fc.single_ref_prob[pred_context][1];
|
|
}
|
|
|
|
unsigned char vp9_get_pred_context_tx_size(const MACROBLOCKD *xd);
|
|
|
|
static const vp9_prob *vp9_get_pred_probs_tx_size(const MACROBLOCKD *xd,
|
|
const struct tx_probs *tx_probs) {
|
|
const MODE_INFO *const mi = xd->mode_info_context;
|
|
const int pred_context = vp9_get_pred_context_tx_size(xd);
|
|
if (mi->mbmi.sb_type < BLOCK_SIZE_MB16X16)
|
|
return tx_probs->p8x8[pred_context];
|
|
else if (mi->mbmi.sb_type < BLOCK_SIZE_SB32X32)
|
|
return tx_probs->p16x16[pred_context];
|
|
else
|
|
return tx_probs->p32x32[pred_context];
|
|
}
|
|
|
|
#endif // VP9_COMMON_VP9_PRED_COMMON_H_
|