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
|
|
|
|
*/
|
|
|
|
|
2013-10-23 11:06:13 +00:00
|
|
|
// Function to find backward reference copies.
|
|
|
|
|
|
|
|
#ifndef BROTLI_ENC_BACKWARD_REFERENCES_H_
|
|
|
|
#define BROTLI_ENC_BACKWARD_REFERENCES_H_
|
|
|
|
|
2013-11-15 18:02:17 +00:00
|
|
|
#include "./hash.h"
|
2013-10-23 11:06:13 +00:00
|
|
|
#include "./command.h"
|
2015-10-01 10:08:14 +00:00
|
|
|
#include "./types.h"
|
2013-10-23 11:06:13 +00:00
|
|
|
|
|
|
|
namespace brotli {
|
|
|
|
|
2015-06-12 14:25:41 +00:00
|
|
|
// "commands" points to the next output command to write to, "*num_commands" is
|
|
|
|
// initially the total amount of commands output by previous
|
|
|
|
// CreateBackwardReferences calls, and must be incremented by the amount written
|
|
|
|
// by this call.
|
2013-11-15 18:02:17 +00:00
|
|
|
void CreateBackwardReferences(size_t num_bytes,
|
|
|
|
size_t position,
|
2016-01-07 15:27:49 +00:00
|
|
|
bool is_last,
|
2013-11-15 18:02:17 +00:00
|
|
|
const uint8_t* ringbuffer,
|
|
|
|
size_t ringbuffer_mask,
|
2014-10-28 12:25:22 +00:00
|
|
|
const int quality,
|
2016-01-27 08:50:39 +00:00
|
|
|
const int lgwin,
|
2014-03-20 13:32:35 +00:00
|
|
|
Hashers* hashers,
|
2014-10-28 12:25:22 +00:00
|
|
|
int hash_type,
|
|
|
|
int* dist_cache,
|
2016-01-07 15:27:49 +00:00
|
|
|
size_t* last_insert_len,
|
2014-10-28 12:25:22 +00:00
|
|
|
Command* commands,
|
2015-10-28 16:44:47 +00:00
|
|
|
size_t* num_commands,
|
2016-01-07 15:27:49 +00:00
|
|
|
size_t* num_literals);
|
2013-10-23 11:06:13 +00:00
|
|
|
|
|
|
|
} // namespace brotli
|
|
|
|
|
|
|
|
#endif // BROTLI_ENC_BACKWARD_REFERENCES_H_
|