2015-11-27 10:27:11 +00:00
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
|
2015-12-11 10:11:51 +00:00
|
|
|
Distributed under MIT license.
|
2015-11-27 10:27:11 +00:00
|
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
2016-06-03 09:19:23 +00:00
|
|
|
/* Literal cost model to allow backward reference replacement to be efficient.
|
|
|
|
*/
|
2013-10-23 11:06:13 +00:00
|
|
|
|
|
|
|
#ifndef BROTLI_ENC_LITERAL_COST_H_
|
|
|
|
#define BROTLI_ENC_LITERAL_COST_H_
|
|
|
|
|
2016-08-23 12:40:33 +00:00
|
|
|
#include <brotli/types.h>
|
2013-10-23 11:06:13 +00:00
|
|
|
|
2022-11-17 13:03:09 +00:00
|
|
|
#include "../common/platform.h"
|
|
|
|
|
2016-06-13 09:01:04 +00:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-10-23 11:06:13 +00:00
|
|
|
|
2016-06-03 09:19:23 +00:00
|
|
|
/* Estimates how many bits the literals in the interval [pos, pos + len) in the
|
2016-10-31 13:33:59 +00:00
|
|
|
ring-buffer (data, mask) will take entropy coded and writes these estimates
|
2016-06-03 09:19:23 +00:00
|
|
|
to the cost[0..len) array. */
|
2016-06-13 09:01:04 +00:00
|
|
|
BROTLI_INTERNAL void BrotliEstimateBitCostsForLiterals(
|
2021-07-29 20:29:43 +00:00
|
|
|
size_t pos, size_t len, size_t mask, const uint8_t* data, size_t* histogram,
|
|
|
|
float* cost);
|
2013-10-23 11:06:13 +00:00
|
|
|
|
2016-06-13 09:01:04 +00:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
2013-10-23 11:06:13 +00:00
|
|
|
|
2016-06-03 09:19:23 +00:00
|
|
|
#endif /* BROTLI_ENC_LITERAL_COST_H_ */
|