cosmetics: fix indent after 32462a07

Change-Id: If9a5d91c25e981bc4cd81adb476244e63fc7c3c8
This commit is contained in:
James Zern 2015-07-01 23:49:20 -07:00
parent 559e54ca60
commit 39216e59d9
2 changed files with 5 additions and 5 deletions

View File

@ -1150,11 +1150,11 @@ static VP8LStreaks HuffmanCostCombinedCount(const uint32_t* X,
const uint32_t xy = X[i] + Y[i];
++streak;
if (xy != xy_prev) {
stats.counts[xy != 0] += (streak > 3);
stats.streaks[xy != 0][(streak > 3)] += streak;
streak = 0;
stats.counts[xy != 0] += (streak > 3);
stats.streaks[xy != 0][(streak > 3)] += streak;
streak = 0;
xy_prev = xy;
}
}
}
return stats;
}

View File

@ -259,7 +259,7 @@ static VP8LStreaks HuffmanCostCombinedCount(const uint32_t* X,
HUFFMAN_COST_PASS
streak = 0;
xy_prev = xy;
}
}
}
return stats;
}