]> granicus.if.org Git - libvpx/commitdiff
Minor optimization in mv entropy adaptation
authorDeb Mukherjee <debargha@google.com>
Mon, 11 Mar 2013 15:49:14 +0000 (08:49 -0700)
committerDeb Mukherjee <debargha@google.com>
Mon, 11 Mar 2013 15:49:14 +0000 (08:49 -0700)
Adds a check to exit from the increment_nmv_count function when the
increment is 0.

Change-Id: I99c1e342d351f7800e23590f9c2419881bf1d708

vp9/common/vp9_entropymv.c

index 185cc9a09cf9ea22a2dda6511bbb932fdc8b5cef..85f93085c7ff0d57909decb8cfe9efe310f7e5d0 100644 (file)
@@ -138,6 +138,7 @@ static void increment_nmv_component(int v,
                                     int incr,
                                     int usehp) {
   int s, z, c, o, d, e, f;
+  if (!incr) return;
   assert (v != 0);            /* should not be zero */
   s = v < 0;
   mvcomp->sign[s] += incr;