From: Ronald S. Bultje Date: Mon, 12 Oct 2015 21:57:43 +0000 (-0400) Subject: vp10: fix compiler warning with --enable-universal_hp. X-Git-Tag: v1.5.0~45^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa8ba206bfc77fba5f3fb821bacd25b447054c8e;p=libvpx vp10: fix compiler warning with --enable-universal_hp. Change-Id: I0d7ca20bdd0fc868b28b0755e3114a4499056f45 --- 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 &&