shithub: libvpx

Download patch

ref: fa8ba206bfc77fba5f3fb821bacd25b447054c8e
parent: b9e31b51639b9a903d311a2892bbecd0e77e80aa
author: Ronald S. Bultje <[email protected]>
date: Mon Oct 12 13:57:43 EDT 2015

vp10: fix compiler warning with --enable-universal_hp.

Change-Id: I0d7ca20bdd0fc868b28b0755e3114a4499056f45

--- a/vp10/common/entropymv.c
+++ b/vp10/common/entropymv.c
@@ -129,6 +129,7 @@
 
 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 &&