#define BROTLI_DEFAULT_MODE BROTLI_MODE_GENERIC
Default value for BROTLI_PARAM_MODE parameter.
#define BROTLI_DEFAULT_QUALITY 11
Default value for BROTLI_PARAM_QUALITY parameter.
#define BROTLI_DEFAULT_WINDOW 22
Default value for BROTLI_PARAM_LGWIN parameter.
#define BROTLI_LARGE_MAX_WINDOW_BITS 30
Maximal value for BROTLI_PARAM_LGWIN parameter in 'Large Window Brotli' (32-bit).
#define BROTLI_MAX_INPUT_BLOCK_BITS 24
Maximal value for BROTLI_PARAM_LGBLOCK parameter.
#define BROTLI_MAX_QUALITY 11
Maximal value for BROTLI_PARAM_QUALITY parameter.
#define BROTLI_MAX_WINDOW_BITS 24
Maximal value for BROTLI_PARAM_LGWIN parameter.
#define BROTLI_MIN_INPUT_BLOCK_BITS 16
Minimal value for BROTLI_PARAM_LGBLOCK parameter.
#define BROTLI_MIN_QUALITY 0
Minimal value for BROTLI_PARAM_QUALITY parameter.
#define BROTLI_MIN_WINDOW_BITS 10
Minimal value for BROTLI_PARAM_LGWIN parameter.
typedef enum BrotliEncoderMode BrotliEncoderMode
Options for BROTLI_PARAM_MODE parameter.
typedef enum BrotliEncoderOperation BrotliEncoderOperation
Operations that can be performed by streaming encoder.
typedef enum BrotliEncoderParameter BrotliEncoderParameter
Options to be used with BrotliEncoderSetParameter.
typedef struct BrotliEncoderStateStruct BrotliEncoderState
Opaque structure that holds encoder state.
BROTLI_BOOL BrotliEncoderCompress (int quality, int lgwin, BrotliEncoderMode mode, size_t input_size, const uint8_t input_buffer[input_size], size_t *encoded_size, uint8_t encoded_buffer[*encoded_size])
Performs one-shot memory-to-memory compression.
BROTLI_BOOL BrotliEncoderCompressStream (BrotliEncoderState *state, BrotliEncoderOperation op, size_t *available_in, const uint8_t **next_in, size_t *available_out, uint8_t **next_out, size_t *total_out)
Compresses input stream to output stream.
BrotliEncoderState * BrotliEncoderCreateInstance (brotli_alloc_func alloc_func, brotli_free_func free_func, void *opaque)
Creates an instance of BrotliEncoderState and initializes it.
void BrotliEncoderDestroyInstance (BrotliEncoderState *state)
Deinitializes and frees BrotliEncoderState instance.
BROTLI_BOOL BrotliEncoderHasMoreOutput (BrotliEncoderState *state)
Checks if encoder has more output.
BROTLI_BOOL BrotliEncoderIsFinished (BrotliEncoderState *state)
Checks if encoder instance reached the final state.
size_t BrotliEncoderMaxCompressedSize (size_t input_size)
Calculates the output size bound for the given input_size.
BROTLI_BOOL BrotliEncoderSetParameter (BrotliEncoderState *state, BrotliEncoderParameter param, uint32_t value)
Sets the specified parameter to the given encoder instance.
const uint8_t * BrotliEncoderTakeOutput (BrotliEncoderState *state, size_t *size)
Acquires pointer to internal output buffer.
uint32_t BrotliEncoderVersion (void)
Gets an encoder library version.
API for Brotli compression.
Default value for BROTLI_PARAM_MODE parameter.
Default value for BROTLI_PARAM_QUALITY parameter.
Default value for BROTLI_PARAM_LGWIN parameter.
Maximal value for BROTLI_PARAM_LGBLOCK parameter.
Maximal value for BROTLI_PARAM_QUALITY parameter.
Maximal value for BROTLI_PARAM_LGWIN parameter.
Note:
Minimal value for BROTLI_PARAM_LGBLOCK parameter.
Minimal value for BROTLI_PARAM_QUALITY parameter.
Minimal value for BROTLI_PARAM_LGWIN parameter.
Options for BROTLI_PARAM_MODE parameter.
Operations that can be performed by streaming encoder.
Options to be used with BrotliEncoderSetParameter.
Opaque structure that holds encoder state. Allocated and initialized with BrotliEncoderCreateInstance. Cleaned up and deallocated with BrotliEncoderDestroyInstance.
Options for BROTLI_PARAM_MODE parameter.
Enumerator
Operations that can be performed by streaming encoder.
Enumerator
Warning:
When flush is complete, output data will be sufficient for decoder to reproduce all the given input.
Warning:
Helper function BrotliEncoderIsFinished checks if stream is finalized and output fully dumped.
Adding more input data to finalized stream is impossible.
Note:
Warning:
The whole content of input buffer is considered to be the content of metadata block. Do NOT append metadata to input stream, before it is depleted with other operations.
Stream is soft-flushed before metadata block is emitted. Metadata block MUST be no longer than than 16MiB.
Options to be used with BrotliEncoderSetParameter.
Enumerator
Window size is (1 << value) - 16.
Range is from BROTLI_MIN_WINDOW_BITS to BROTLI_MAX_WINDOW_BITS.
Range is from BROTLI_MIN_INPUT_BLOCK_BITS to BROTLI_MAX_INPUT_BLOCK_BITS.
Note:
Range is from 0 to BROTLI_MAX_NPOSTFIX.
Range is from 0 to (15 << NPOSTFIX) in steps of (1 << NPOSTFIX).
Note:
If offset is not 0, then stream header is omitted. In any case output start is byte aligned, so for proper streams stitching 'predecessor' stream must be flushed.
Range is not artificially limited, but all the values greater or equal to maximal window size have the same effect. Values greater than 2**30 are not allowed.
Performs one-shot memory-to-memory compression. Compresses the data in input_buffer into encoded_buffer, and sets *encoded_size to the compressed length.
Note:
If lgwin is greater than BROTLI_MAX_WINDOW_BITS then resulting stream might be incompatible with RFC 7932; to decode such streams, decoder should be configured with BROTLI_DECODER_PARAM_LARGE_WINDOW = 1
Parameters:
Returns:
BROTLI_FALSE if output buffer is too small
BROTLI_TRUE otherwise
Compresses input stream to output stream. The values *available_in and *available_out must specify the number of bytes addressable at *next_in and *next_out respectively. When *available_out is 0, next_out is allowed to be NULL.
After each call, *available_in will be decremented by the amount of input bytes consumed, and the *next_in pointer will be incremented by that amount. Similarly, *available_out will be decremented by the amount of output bytes written, and the *next_out pointer will be incremented by that amount.
total_out, if it is not a null-pointer, will be set to the number of bytes compressed since the last state initialization.
Internally workflow consists of 3 tasks:
Whenever all 3 tasks can't move forward anymore, or error occurs, this method returns the control flow to caller.
op is used to perform flush, finish the stream, or inject metadata block. See BrotliEncoderOperation for more information.
Flushing the stream means forcing encoding of all input passed to encoder and completing the current output block, so it could be fully decoded by stream decoder. To perform flush set op to BROTLI_OPERATION_FLUSH. Under some circumstances (e.g. lack of output stream capacity) this operation would require several calls to BrotliEncoderCompressStream. The method must be called again until both input stream is depleted and encoder has no more output (see BrotliEncoderHasMoreOutput) after the method is called.
Finishing the stream means encoding of all input passed to encoder and adding specific 'final' marks, so stream decoder could determine that stream is complete. To perform finish set op to BROTLI_OPERATION_FINISH. Under some circumstances (e.g. lack of output stream capacity) this operation would require several calls to BrotliEncoderCompressStream. The method must be called again until both input stream is depleted and encoder has no more output (see BrotliEncoderHasMoreOutput) after the method is called.
Warning:
Parameters:
Returns:
BROTLI_TRUE otherwise
Creates an instance of BrotliEncoderState and initializes it. alloc_func and free_func MUST be both zero or both non-zero. In the case they are both zero, default memory allocators are used. opaque is passed to alloc_func and free_func when they are called. free_func has to return without doing anything when asked to free a NULL pointer.
Parameters:
Returns:
pointer to initialized BrotliEncoderState otherwise
Deinitializes and frees BrotliEncoderState instance.
Parameters:
Checks if encoder has more output.
Parameters:
Returns:
BROTLI_FALSE otherwise
Checks if encoder instance reached the final state.
Parameters:
Returns:
BROTLI_FALSE otherwise
Calculates the output size bound for the given input_size.
Warning:
Parameters:
Returns:
Sets the specified parameter to the given encoder instance.
Parameters:
Returns:
BROTLI_FALSE if value of parameter can not be changed at current encoder state (e.g. when encoding is started, window size might be already encoded and therefore it is impossible to change it)
BROTLI_TRUE if value is accepted
Warning:
Acquires pointer to internal output buffer. This method is used to make language bindings easier and more efficient:
Also this could be useful if there is an output stream that is able to consume all the provided data (e.g. when data is saved to file system).
Attention:
Note:
Parameters:
Returns:
Gets an encoder library version. Look at BROTLI_VERSION for more information.
Generated automatically by Doxygen for Brotli from the source code.