shithub: libvpx

Download patch

ref: d2cd088cb7ac4f1b7cb6fa1a6c01c6cad4363dda
parent: 35e24e33d36c18c87db772744ed552fbd3ef77ab
parent: f324f0c54e8842add90b2882bd487d8f8f510638
author: Jim Bankoski <jimbankoski@google.com>
date: Thu Feb 13 01:20:16 EST 2014

Merge "vp9_mcomp.c static analysis issues"

--- a/vp9/encoder/vp9_mcomp.c
+++ b/vp9/encoder/vp9_mcomp.c
@@ -349,6 +349,10 @@
     tr = br;
     tc = bc;
   }
+  // These lines insure static analysis doesn't warn that
+  // tr and tc aren't used after the above point.
+  (void) tr;
+  (void) tc;
 
   bestmv->row = br;
   bestmv->col = bc;
@@ -452,6 +456,11 @@
     tr = br;
     tc = bc;
   }
+  // These lines insure static analysis doesn't warn that
+  // tr and tc aren't used after the above point.
+  (void) tr;
+  (void) tc;
+
   bestmv->row = br;
   bestmv->col = bc;
 
--