aboutsummaryrefslogtreecommitdiff
path: root/c/enc/backward_references.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/enc/backward_references.h')
-rw-r--r--c/enc/backward_references.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/c/enc/backward_references.h b/c/enc/backward_references.h
index f82a80d..9589cc1 100644
--- a/c/enc/backward_references.h
+++ b/c/enc/backward_references.h
@@ -10,6 +10,7 @@
#define BROTLI_ENC_BACKWARD_REFERENCES_H_
#include "../common/constants.h"
+#include "../common/context.h"
#include "../common/dictionary.h"
#include "../common/platform.h"
#include <brotli/types.h>
@@ -27,8 +28,8 @@ extern "C" {
by this call. */
BROTLI_INTERNAL void BrotliCreateBackwardReferences(size_t num_bytes,
size_t position, const uint8_t* ringbuffer, size_t ringbuffer_mask,
- const BrotliEncoderParams* params,
- HasherHandle hasher, int* dist_cache, size_t* last_insert_len,
+ ContextLut literal_context_lut, const BrotliEncoderParams* params,
+ Hasher* hasher, int* dist_cache, size_t* last_insert_len,
Command* commands, size_t* num_commands, size_t* num_literals);
#if defined(__cplusplus) || defined(c_plusplus)