shithub: libvpx

Download patch

ref: f7023ea0144ab19a997839c65ce4388ee4b46762
parent: eee904c9b91b62510169c52d5fc05580fd1f18c0
author: Jingning Han <[email protected]>
date: Mon Sep 22 05:10:23 EDT 2014

Remove unnecessary local variable declaration

This commit removes a repetitive local variable declaration in
vp9_rd_pick_inter_mode_sb.

Change-Id: I1b0afa98ff1ecbfb46e17d3d1cee95d32c4309db

--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -2718,7 +2718,6 @@
     int64_t distortion2 = 0, distortion_y = 0, distortion_uv = 0;
     int skippable = 0;
     int64_t tx_cache[TX_MODES];
-    int i;
     int this_skip2 = 0;
     int64_t total_sse = INT64_MAX;
     int early_term = 0;