vp9_rd_pick_inter_mode_sb: fix uninitialized value

'skippable' can remain unset and negatively affect later decisions

address one aspect of issue #599

Change-Id: Iffdf0ac2e49ac481c27dc27c87fa546d4167bb28
This commit is contained in:
James Zern 2013-08-09 16:15:08 -07:00
parent 5b307886fb
commit f295774d43

View File

@ -3306,7 +3306,7 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
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;