cosmetics: fix indent

Change-Id: I67e5a0308a964bc37b2314d96f3691fc0550e9bc
This commit is contained in:
James Zern
2015-12-03 00:34:15 -08:00
parent a7a954c851
commit b7551e90e1
3 changed files with 3 additions and 3 deletions

View File

@ -580,7 +580,7 @@ double VP8LHistogramEstimateBits(const VP8LHistogram* const p) {
double VP8LHistogramEstimateBitsBulk(const VP8LHistogram* const p) {
return
VP8LBitsEntropy(p->literal_, VP8LHistogramNumCodes(p->palette_code_bits_),
NULL)
NULL)
+ VP8LBitsEntropy(p->red_, NUM_LITERAL_CODES, NULL)
+ VP8LBitsEntropy(p->blue_, NUM_LITERAL_CODES, NULL)
+ VP8LBitsEntropy(p->alpha_, NUM_LITERAL_CODES, NULL)