internal change

PiperOrigin-RevId: 795452145
This commit is contained in:
Evgenii Kliuchnikov
2025-08-15 06:18:13 -07:00
committed by Copybara-Service
parent 3cc6172f58
commit 9a4ba5932b
12 changed files with 28 additions and 23 deletions

View File

@@ -9,13 +9,10 @@
#ifndef BROTLI_DEC_STATE_H_
#define BROTLI_DEC_STATE_H_
#include <brotli/decode.h>
#include <brotli/shared_dictionary.h>
#include "../common/constants.h"
#include "../common/dictionary.h"
#include "../common/platform.h"
#include "../common/transform.h"
#include <brotli/shared_dictionary.h>
#include <brotli/decode.h>
#include "bit_reader.h"
#include "huffman.h"

View File

@@ -6,9 +6,8 @@
#include "compound_dictionary.h"
#include <brotli/shared_dictionary.h>
#include "../common/platform.h"
#include <brotli/shared_dictionary.h>
#include "memory.h"
static PreparedDictionary* CreatePreparedDictionaryWithParams(MemoryManager* m,

View File

@@ -7,9 +7,8 @@
#ifndef BROTLI_ENC_PREPARED_DICTIONARY_H_
#define BROTLI_ENC_PREPARED_DICTIONARY_H_
#include <brotli/shared_dictionary.h>
#include "../common/platform.h"
#include <brotli/shared_dictionary.h>
#include "memory.h"
/* "Fat" prepared dictionary, could be cooked outside of C implementation,

View File

@@ -7,11 +7,11 @@
/* Implementation of Brotli compressor. */
#include <brotli/encode.h>
#include <brotli/shared_dictionary.h>
#include "../common/constants.h"
#include "../common/context.h"
#include "../common/platform.h"
#include <brotli/shared_dictionary.h>
#include "../common/version.h"
#include "backward_references_hq.h"
#include "backward_references.h"

View File

@@ -6,13 +6,12 @@
#include "encoder_dict.h"
#include <brotli/encode.h>
#include <brotli/shared_dictionary.h>
#include "../common/dictionary.h"
#include "../common/platform.h"
#include <brotli/shared_dictionary.h>
#include "../common/shared_dictionary_internal.h"
#include "../common/transform.h"
#include <brotli/encode.h>
#include "compound_dictionary.h"
#include "dictionary_hash.h"
#include "hash_base.h"

View File

@@ -7,9 +7,8 @@
#ifndef BROTLI_ENC_ENCODER_DICT_H_
#define BROTLI_ENC_ENCODER_DICT_H_
#include <brotli/shared_dictionary.h>
#include "../common/dictionary.h"
#include <brotli/shared_dictionary.h>
#include "../common/platform.h"
#include "compound_dictionary.h"
#include "memory.h"

View File

@@ -10,7 +10,6 @@
#define BROTLI_ENC_PARAMS_H_
#include <brotli/encode.h>
#include "encoder_dict.h"
typedef struct BrotliHasherParams {

View File

@@ -10,9 +10,8 @@
#ifndef BROTLI_ENC_QUALITY_H_
#define BROTLI_ENC_QUALITY_H_
#include <brotli/encode.h>
#include "../common/platform.h"
#include <brotli/encode.h>
#include "params.h"
#define FAST_ONE_PASS_COMPRESSION_QUALITY 0

View File

@@ -7,6 +7,7 @@
/* Command line interface for Brotli library. */
/* Mute strerror/strcpy warnings. */
#include <brotli/shared_dictionary.h>
#if !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS
#endif
@@ -20,12 +21,11 @@
#include <sys/types.h>
#include <time.h>
#include <brotli/decode.h>
#include <brotli/encode.h>
#include <brotli/types.h>
#include "../common/constants.h"
#include "../common/version.h"
#include <brotli/decode.h>
#include <brotli/encode.h>
#if defined(_WIN32)
#include <io.h>