aboutsummaryrefslogtreecommitdiff
path: root/brotli/enc/literal_cost.h
diff options
context:
space:
mode:
Diffstat (limited to 'brotli/enc/literal_cost.h')
-rw-r--r--brotli/enc/literal_cost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/brotli/enc/literal_cost.h b/brotli/enc/literal_cost.h
index ca39a4e..5c1eca4 100644
--- a/brotli/enc/literal_cost.h
+++ b/brotli/enc/literal_cost.h
@@ -26,11 +26,11 @@ namespace brotli {
// ringbuffer (data, mask) will take entropy coded and writes these estimates
// to the ringbuffer (cost, mask).
void EstimateBitCostsForLiterals(size_t pos, size_t len, size_t mask,
- const uint8_t *data,
+ size_t cost_mask, const uint8_t *data,
float *cost);
void EstimateBitCostsForLiteralsUTF8(size_t pos, size_t len, size_t mask,
- const uint8_t *data,
+ size_t cost_mask, const uint8_t *data,
float *cost);
} // namespace brotli