summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_mvref_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'vp9/common/vp9_mvref_common.h')
-rw-r--r--vp9/common/vp9_mvref_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_mvref_common.h b/vp9/common/vp9_mvref_common.h
index aef96ad32..a6dddd01a 100644
--- a/vp9/common/vp9_mvref_common.h
+++ b/vp9/common/vp9_mvref_common.h
@@ -208,7 +208,7 @@ static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
}
static INLINE void lower_mv_precision(MV *mv, int allow_hp) {
- const int use_hp = allow_hp && vp9_use_mv_hp(mv);
+ const int use_hp = allow_hp && use_mv_hp(mv);
if (!use_hp) {
if (mv->row & 1)
mv->row += (mv->row > 0 ? -1 : 1);