summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-02-19 01:04:36 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-02-19 01:04:36 -0800
commit35bd8868644a2b5a8037ea7a2b4a2ab0c43eebe0 (patch)
tree28f0b7f20f684e40b3362ec2b4d0c0dc44ee5f07 /vp9/common
parent4e06ee39b0aafc1de2a395853c41c31b1fb4e9db (diff)
parent19a8eee1f0fc63b22c8a67802c340c252715c261 (diff)
downloadlibvpx-35bd8868644a2b5a8037ea7a2b4a2ab0c43eebe0.tar
libvpx-35bd8868644a2b5a8037ea7a2b4a2ab0c43eebe0.tar.gz
libvpx-35bd8868644a2b5a8037ea7a2b4a2ab0c43eebe0.tar.bz2
libvpx-35bd8868644a2b5a8037ea7a2b4a2ab0c43eebe0.zip
Merge "Cleaning up pack_inter_mode_mvs() function."
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_pred_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_pred_common.h b/vp9/common/vp9_pred_common.h
index 7f9e56392..6c7a0d383 100644
--- a/vp9/common/vp9_pred_common.h
+++ b/vp9/common/vp9_pred_common.h
@@ -39,7 +39,7 @@ static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
return above_sip + left_sip;
}
-static INLINE vp9_prob vp9_get_pred_prob_seg_id(struct segmentation *seg,
+static INLINE vp9_prob vp9_get_pred_prob_seg_id(const struct segmentation *seg,
const MACROBLOCKD *xd) {
return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
}