2008-01-22 20:49:24 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-08-28 19:53:15 +00:00
|
|
|
/// \file lzma2_encoder.h
|
|
|
|
/// \brief LZMA2 encoder
|
2008-01-22 20:49:24 +00:00
|
|
|
//
|
2008-08-28 19:53:15 +00:00
|
|
|
// Copyright (C) 1999-2008 Igor Pavlov
|
2008-01-22 20:49:24 +00:00
|
|
|
// Copyright (C) 2008 Lasse Collin
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
#endif
|