remove some variable shadowing

Change-Id: I4348253ec6b50639095b22c4745dc26da0904466
This commit is contained in:
James Zern
2012-05-15 13:17:34 -07:00
parent c6882c49e3
commit 37a77a6bf4
6 changed files with 68 additions and 68 deletions

View File

@ -307,9 +307,9 @@ static int HistogramCombine(const VP8LHistogramSet* const in,
- out->histograms[idx2]->bit_cost_;
if (best_cost_diff > curr_cost_diff) { // found a better pair?
{ // swap cur/best combo histograms
VP8LHistogram* const tmp = cur_combo;
VP8LHistogram* const tmp_histo = cur_combo;
cur_combo = best_combo;
best_combo = tmp;
best_combo = tmp_histo;
}
best_cost_diff = curr_cost_diff;
best_idx1 = idx1;