shithub: libvpx

Download patch

ref: cf2bfcd9d8c5c18a4151593c5ea09d0163d2b55c
parent: ee30cf14089c36d403572f7e7e4a9eb5db69a4ef
parent: ff8edd3509773397b699d70b8701dba9fced3bf0
author: James Zern <[email protected]>
date: Thu Jun 16 23:58:46 EDT 2016

Merge "vp9_pickmode: quiet int64->int conversion warning"

--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1037,7 +1037,7 @@
   // Change the limit of this loop to add other intra prediction
   // mode tests.
   for (this_mode = DC_PRED; this_mode <= H_PRED; ++this_mode) {
-    this_rdc.rate = this_rdc.dist = 0;
+    this_rdc.dist = this_rdc.rate = 0;
     args.mode = this_mode;
     args.skippable = 1;
     args.rdc = &this_rdc;
@@ -1921,7 +1921,7 @@
 
       mi->mode = this_mode;
       mi->ref_frame[0] = INTRA_FRAME;
-      this_rdc.rate = this_rdc.dist = 0;
+      this_rdc.dist = this_rdc.rate = 0;
       args.mode = this_mode;
       args.skippable = 1;
       args.rdc = &this_rdc;