80 cols fix

This commit is contained in:
Pascal Massimino
2011-06-20 15:38:14 -07:00
parent bd2f65f67c
commit f4c4e416c0
4 changed files with 6 additions and 4 deletions

View File

@ -27,7 +27,8 @@ static inline int VP8BitCost(int bit, uint8_t proba) {
}
// Cost of coding 'nb' 1's and 'total-nb' 0's using 'proba' probability.
static inline uint64_t VP8BranchCost(uint64_t nb, uint64_t total, uint8_t proba) {
static inline uint64_t VP8BranchCost(uint64_t nb, uint64_t total,
uint8_t proba) {
return nb * VP8BitCost(1, proba) + (total - nb) * VP8BitCost(0, proba);
}