shithub: libvpx

Download patch

ref: 538f1104078c444f962ed615b873d2d551758843
parent: fd090092272701ec4b469d8c545a343ecdf8fd0e
parent: e689a27d621745dea6693f084d83585609bb1e27
author: John Koleszar <jkoleszar@google.com>
date: Tue Apr 12 02:59:00 EDT 2011

Merge "Bugfix for error accumulator stats"

--- a/vp8/encoder/pickinter.c
+++ b/vp8/encoder/pickinter.c
@@ -932,6 +932,7 @@
         }
 
         x->e_mbd.mode_info_context->mbmi.mv.as_int = 0;
+        return;
     }
 
 
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -2472,6 +2472,7 @@
         }
 
         x->e_mbd.mode_info_context->mbmi.mv.as_int = 0;
+        return;
     }
 
 
--