| Index: source/libvpx/vp9/common/vp9_pred_common.h
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_pred_common.h (revision 293081)
|
| +++ source/libvpx/vp9/common/vp9_pred_common.h (working copy)
|
| @@ -54,7 +54,7 @@
|
|
|
| static INLINE vp9_prob vp9_get_skip_prob(const VP9_COMMON *cm,
|
| const MACROBLOCKD *xd) {
|
| - return cm->fc.skip_probs[vp9_get_skip_context(xd)];
|
| + return cm->fc->skip_probs[vp9_get_skip_context(xd)];
|
| }
|
|
|
| int vp9_get_pred_context_switchable_interp(const MACROBLOCKD *xd);
|
| @@ -63,7 +63,7 @@
|
|
|
| static INLINE vp9_prob vp9_get_intra_inter_prob(const VP9_COMMON *cm,
|
| const MACROBLOCKD *xd) {
|
| - return cm->fc.intra_inter_prob[vp9_get_intra_inter_context(xd)];
|
| + return cm->fc->intra_inter_prob[vp9_get_intra_inter_context(xd)];
|
| }
|
|
|
| int vp9_get_reference_mode_context(const VP9_COMMON *cm, const MACROBLOCKD *xd);
|
| @@ -70,7 +70,7 @@
|
|
|
| static INLINE vp9_prob vp9_get_reference_mode_prob(const VP9_COMMON *cm,
|
| const MACROBLOCKD *xd) {
|
| - return cm->fc.comp_inter_prob[vp9_get_reference_mode_context(cm, xd)];
|
| + return cm->fc->comp_inter_prob[vp9_get_reference_mode_context(cm, xd)];
|
| }
|
|
|
| int vp9_get_pred_context_comp_ref_p(const VP9_COMMON *cm,
|
| @@ -79,7 +79,7 @@
|
| 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];
|
| + return cm->fc->comp_ref_prob[pred_context];
|
| }
|
|
|
| int vp9_get_pred_context_single_ref_p1(const MACROBLOCKD *xd);
|
| @@ -86,7 +86,7 @@
|
|
|
| static INLINE vp9_prob vp9_get_pred_prob_single_ref_p1(const VP9_COMMON *cm,
|
| const MACROBLOCKD *xd) {
|
| - return cm->fc.single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
|
| + return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
|
| }
|
|
|
| int vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd);
|
| @@ -93,7 +93,7 @@
|
|
|
| static INLINE vp9_prob vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm,
|
| const MACROBLOCKD *xd) {
|
| - 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);
|
|
|