summaryrefslogtreecommitdiff
path: root/vp10/common/pred_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp10/common/pred_common.h')
-rw-r--r--vp10/common/pred_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp10/common/pred_common.h b/vp10/common/pred_common.h
index 1b55f5384..d6d7146d7 100644
--- a/vp10/common/pred_common.h
+++ b/vp10/common/pred_common.h
@@ -48,9 +48,9 @@ static INLINE int vp10_get_pred_context_seg_id(const MACROBLOCKD *xd) {
return above_sip + left_sip;
}
-static INLINE vpx_prob vp10_get_pred_prob_seg_id(const struct segmentation *seg,
- const MACROBLOCKD *xd) {
- return seg->pred_probs[vp10_get_pred_context_seg_id(xd)];
+static INLINE vpx_prob vp10_get_pred_prob_seg_id(
+ const struct segmentation_probs *segp, const MACROBLOCKD *xd) {
+ return segp->pred_probs[vp10_get_pred_context_seg_id(xd)];
}
static INLINE int vp10_get_skip_context(const MACROBLOCKD *xd) {