aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/brotli/enc/static_dict.h
diff options
context:
space:
mode:
authorderrior <derrior@yandex-team.ru>2022-02-10 16:47:29 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:29 +0300
commit23d4769f0fea97cfb1028710e50f2b5ecd0ac2c0 (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib/libs/brotli/enc/static_dict.h
parent9365a6d84363f5cb52059d1867c1fbf075ea63c3 (diff)
downloadydb-23d4769f0fea97cfb1028710e50f2b5ecd0ac2c0.tar.gz
Restoring authorship annotation for <derrior@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/brotli/enc/static_dict.h')
-rw-r--r--contrib/libs/brotli/enc/static_dict.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libs/brotli/enc/static_dict.h b/contrib/libs/brotli/enc/static_dict.h
index 28f90f6d9b..6b5d4eb0c9 100644
--- a/contrib/libs/brotli/enc/static_dict.h
+++ b/contrib/libs/brotli/enc/static_dict.h
@@ -10,16 +10,16 @@
#define BROTLI_ENC_STATIC_DICT_H_
#include "../common/dictionary.h"
-#include "../common/platform.h"
+#include "../common/platform.h"
#include <brotli/types.h>
-#include "./encoder_dict.h"
+#include "./encoder_dict.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
#define BROTLI_MAX_STATIC_DICTIONARY_MATCH_LEN 37
-static const uint32_t kInvalidMatch = 0xFFFFFFF;
+static const uint32_t kInvalidMatch = 0xFFFFFFF;
/* Matches data against static dictionary words, and for each length l,
for which a match is found, updates matches[l] to be the minimum possible
@@ -29,7 +29,7 @@ static const uint32_t kInvalidMatch = 0xFFFFFFF;
matches array is at least BROTLI_MAX_STATIC_DICTIONARY_MATCH_LEN + 1 long
all elements are initialized to kInvalidMatch */
BROTLI_INTERNAL BROTLI_BOOL BrotliFindAllStaticDictionaryMatches(
- const BrotliEncoderDictionary* dictionary,
+ const BrotliEncoderDictionary* dictionary,
const uint8_t* data, size_t min_length, size_t max_length,
uint32_t* matches);