shithub: libvpx

Download patch

ref: ef101af8ae80a8a58030437256228575905460b1
parent: 125146034ee8be4e0b4986687db0ce3f80c581b0
parent: f295774d43d050c27f916e7dbbabc2a2ca9385cf
author: James Zern <[email protected]>
date: Fri Aug 9 13:13:32 EDT 2013

Merge "vp9_rd_pick_inter_mode_sb: fix uninitialized value"

--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -3298,7 +3298,7 @@
     int compmode_cost = 0;
     int rate2 = 0, rate_y = 0, rate_uv = 0;
     int64_t distortion2 = 0, distortion_y = 0, distortion_uv = 0;
-    int skippable;
+    int skippable = 0;
     int64_t tx_cache[TX_MODES];
     int i;
     int this_skip2 = 0;