shithub: libvpx

Download patch

ref: 73d387dcd2e03b77c2ccef9b40c2e6d103bafdc4
parent: d3b7c850a478f6d49a234257c6b3fc71d1945f92
parent: 6498516bb6fe15cc8f3d8b895f1f10ba3cbc44fb
author: pascal massimino <pascal.massimino@gmail.com>
date: Tue Oct 23 10:00:01 EDT 2012

Merge "Change eob[] array type in splitmv RD loop to a regular integer." into experimental

--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -2247,7 +2247,7 @@
   int segment_yrate;
   B_PREDICTION_MODE modes[16];
   int_mv mvs[16], second_mvs[16];
-  unsigned char eobs[16];
+  int eobs[16];
 
   int mvthresh;
   int *mdcounts;
@@ -2287,7 +2287,7 @@
   int rate = 0;
   int sbr = 0, sbd = 0;
   int segmentyrate = 0;
-  uint8_t best_eobs[16] = { 0 };
+  int best_eobs[16] = { 0 };
 
   vp8_variance_fn_ptr_t *v_fn_ptr;
 
--