shithub: libvpx

Download patch

ref: 29b6a45b887392afa50ffa6da3e03aec4807d74b
parent: 226e55c17d6f732911c1b9282c6dfc334496204d
author: Ronald S. Bultje <rbultje@google.com>
date: Wed Oct 24 09:03:51 EDT 2012

Fix typo in splitmv/tx_select code.

Change-Id: I2823043634b0fa617c2715d63ff18595b7209287

--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -2509,7 +2509,7 @@
     if (rds)
       rds[i] = this_segment_rd;
     if (otherrds)
-      rds[i] = other_segment_rd;
+      otherrds[i] = other_segment_rd;
   } /* for each label */
 
   if (this_segment_rd < bsi->segment_rd) {
--