2008-01-22 20:49:24 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-08-28 19:53:15 +00:00
|
|
|
/// \file lzma2_encoder.h
|
|
|
|
/// \brief LZMA2 encoder
|
2009-04-13 08:27:40 +00:00
|
|
|
///
|
|
|
|
// Authors: Igor Pavlov
|
|
|
|
// Lasse Collin
|
2008-01-22 20:49:24 +00:00
|
|
|
//
|
2009-04-13 08:27:40 +00:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2008-01-22 20:49:24 +00:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
#ifndef LZMA_LZMA2_ENCODER_H
|
|
|
|
#define LZMA_LZMA2_ENCODER_H
|
|
|
|
|
2008-01-22 20:49:24 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2009-01-19 12:00:33 +00:00
|
|
|
|
|
|
|
/// Maximum number of bytes of actual data per chunk (no headers)
|
|
|
|
#define LZMA2_CHUNK_MAX (UINT32_C(1) << 16)
|
|
|
|
|
|
|
|
/// Maximum uncompressed size of LZMA chunk (no headers)
|
|
|
|
#define LZMA2_UNCOMPRESSED_MAX (UINT32_C(1) << 21)
|
|
|
|
|
|
|
|
/// Maximum size of LZMA2 headers
|
|
|
|
#define LZMA2_HEADER_MAX 6
|
|
|
|
|
|
|
|
/// Size of a header for uncompressed chunk
|
|
|
|
#define LZMA2_HEADER_UNCOMPRESSED 3
|
|
|
|
|
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
extern lzma_ret lzma_lzma2_encoder_init(
|
|
|
|
lzma_next_coder *next, lzma_allocator *allocator,
|
|
|
|
const lzma_filter_info *filters);
|
2008-01-22 20:49:24 +00:00
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
extern uint64_t lzma_lzma2_encoder_memusage(const void *options);
|
2008-01-22 20:49:24 +00:00
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
extern lzma_ret lzma_lzma2_props_encode(const void *options, uint8_t *out);
|
2008-06-18 15:02:10 +00:00
|
|
|
|
2011-04-11 18:15:07 +00:00
|
|
|
extern uint64_t lzma_lzma2_block_size(const void *options);
|
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
#endif
|