shithub: libvpx

Download patch

ref: ef838c349caf85d855917a4a33b0e97e86516ac4
parent: 9a005c994c2586795c4978eb59ae3b9ec7a4b73a
parent: 84acc988eb8fb97cb5cd0108739ea55ad8cf7bc7
author: Jingning Han <jingning@google.com>
date: Mon Dec 16 12:56:41 EST 2013

Merge "Remove redefinition in handle_inter_mode"

--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -2748,6 +2748,7 @@
     intpel_mv &= (mbmi->mv[1].as_mv.row & 15) == 0 &&
         (mbmi->mv[1].as_mv.col & 15) == 0;
 
+
   // Search for best switchable filter by checking the variance of
   // pred error irrespective of whether the filter will be used
   if (cm->mcomp_filter_type != BILINEAR) {
@@ -2757,7 +2758,7 @@
       *best_filter = EIGHTTAP;
       vp9_zero(cpi->rd_filter_cache);
     } else {
-      int i, newbest;
+      int newbest;
       int tmp_rate_sum = 0;
       int64_t tmp_dist_sum = 0;