lzma2_encoder.h | lzma2_encoder.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
/// Maximum uncompressed size of LZMA chunk (no headers) | /// Maximum uncompressed size of LZMA chunk (no headers) | |||
#define LZMA2_UNCOMPRESSED_MAX (UINT32_C(1) << 21) | #define LZMA2_UNCOMPRESSED_MAX (UINT32_C(1) << 21) | |||
/// Maximum size of LZMA2 headers | /// Maximum size of LZMA2 headers | |||
#define LZMA2_HEADER_MAX 6 | #define LZMA2_HEADER_MAX 6 | |||
/// Size of a header for uncompressed chunk | /// Size of a header for uncompressed chunk | |||
#define LZMA2_HEADER_UNCOMPRESSED 3 | #define LZMA2_HEADER_UNCOMPRESSED 3 | |||
extern lzma_ret lzma_lzma2_encoder_init( | extern lzma_ret lzma_lzma2_encoder_init( | |||
lzma_next_coder *next, lzma_allocator *allocator, | lzma_next_coder *next, const lzma_allocator *allocator, | |||
const lzma_filter_info *filters); | const lzma_filter_info *filters); | |||
extern uint64_t lzma_lzma2_encoder_memusage(const void *options); | extern uint64_t lzma_lzma2_encoder_memusage(const void *options); | |||
extern lzma_ret lzma_lzma2_props_encode(const void *options, uint8_t *out); | extern lzma_ret lzma_lzma2_props_encode(const void *options, uint8_t *out); | |||
extern uint64_t lzma_lzma2_block_size(const void *options); | extern uint64_t lzma_lzma2_block_size(const void *options); | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |