From f74c55eb038a861ed641841dbc9a56e6f3253d19 Mon Sep 17 00:00:00 2001 From: Deb Mukherjee Date: Mon, 11 Mar 2013 08:49:14 -0700 Subject: [PATCH] Minor optimization in mv entropy adaptation Adds a check to exit from the increment_nmv_count function when the increment is 0. Change-Id: I99c1e342d351f7800e23590f9c2419881bf1d708 --- vp9/common/vp9_entropymv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vp9/common/vp9_entropymv.c b/vp9/common/vp9_entropymv.c index 185cc9a09..85f93085c 100644 --- a/vp9/common/vp9_entropymv.c +++ b/vp9/common/vp9_entropymv.c @@ -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; -- 2.40.0