From fa8ba206bfc77fba5f3fb821bacd25b447054c8e Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 12 Oct 2015 17:57:43 -0400 Subject: [PATCH] vp10: fix compiler warning with --enable-universal_hp. Change-Id: I0d7ca20bdd0fc868b28b0755e3114a4499056f45 --- vp10/common/entropymv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vp10/common/entropymv.c b/vp10/common/entropymv.c index 2ef08a6ba..fd11d9005 100644 --- a/vp10/common/entropymv.c +++ b/vp10/common/entropymv.c @@ -129,6 +129,7 @@ MV_CLASS_TYPE vp10_get_mv_class(int z, int *offset) { int vp10_use_mv_hp(const MV *ref) { #if CONFIG_UNIVERSAL_HP + (void) ref; return 1; #else return (abs(ref->row) >> 3) < COMPANDED_MVREF_THRESH && -- 2.40.0