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
commit9365a6d84363f5cb52059d1867c1fbf075ea63c3 (patch)
tree9a7214acba4994a6c343e6fbc99aa42411833a7a /contrib/libs/brotli/enc/static_dict.h
parent5aed5c3e0cbd6dc139d35a72836d39fc1896a108 (diff)
downloadydb-9365a6d84363f5cb52059d1867c1fbf075ea63c3.tar.gz
Restoring authorship annotation for <derrior@yandex-team.ru>. Commit 1 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 6b5d4eb0c9..28f90f6d9b 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);