aboutsummaryrefslogtreecommitdiff
path: root/include/brotli/encode.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/brotli/encode.h')
-rwxr-xr-xinclude/brotli/encode.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/brotli/encode.h b/include/brotli/encode.h
index 72e8324..98a5ff8 100755
--- a/include/brotli/encode.h
+++ b/include/brotli/encode.h
@@ -36,11 +36,6 @@ extern "C" {
/** Maximal value for ::BROTLI_PARAM_QUALITY parameter. */
#define BROTLI_MAX_QUALITY 11
-BROTLI_DEPRECATED static const int kBrotliMinWindowBits =
- BROTLI_MIN_WINDOW_BITS;
-BROTLI_DEPRECATED static const int kBrotliMaxWindowBits =
- BROTLI_MAX_WINDOW_BITS;
-
/** Options for ::BROTLI_PARAM_MODE parameter. */
typedef enum BrotliEncoderMode {
/**
@@ -228,20 +223,6 @@ BROTLI_ENC_API BrotliEncoderState* BrotliEncoderCreateInstance(
*/
BROTLI_ENC_API void BrotliEncoderDestroyInstance(BrotliEncoderState* state);
-/* Calculates maximum input size that can be processed at once. */
-BROTLI_DEPRECATED BROTLI_ENC_API size_t BrotliEncoderInputBlockSize(
- BrotliEncoderState* state);
-
-/* Copies the given input data to the internal ring buffer. */
-BROTLI_DEPRECATED BROTLI_ENC_API void BrotliEncoderCopyInputToRingBuffer(
- BrotliEncoderState* state, const size_t input_size,
- const uint8_t* input_buffer);
-
-/* Processes the accumulated input. */
-BROTLI_DEPRECATED BROTLI_ENC_API BROTLI_BOOL BrotliEncoderWriteData(
- BrotliEncoderState* state, const BROTLI_BOOL is_last,
- const BROTLI_BOOL force_flush, size_t* out_size, uint8_t** output);
-
/**
* Prepends imaginary LZ77 dictionary.
*