]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/lzma/lzma_decoder.h
Remove some redundant code from LZMA encoder.
[icculus/xz.git] / src / liblzma / lzma / lzma_decoder.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       lzma_decoder.h
4 /// \brief      LZMA decoder API
5 //
6 //  Copyright (C) 1999-2006 Igor Pavlov
7 //  Copyright (C) 2007 Lasse Collin
8 //
9 //  This library is free software; you can redistribute it and/or
10 //  modify it under the terms of the GNU Lesser General Public
11 //  License as published by the Free Software Foundation; either
12 //  version 2.1 of the License, or (at your option) any later version.
13 //
14 //  This library is distributed in the hope that it will be useful,
15 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 //  Lesser General Public License for more details.
18 //
19 ///////////////////////////////////////////////////////////////////////////////
20
21 #ifndef LZMA_LZMA_DECODER_H
22 #define LZMA_LZMA_DECODER_H
23
24 #include "common.h"
25
26
27 /// Allocates and initializes LZMA decoder
28 extern lzma_ret lzma_lzma_decoder_init(lzma_next_coder *next,
29                 lzma_allocator *allocator, const lzma_filter_info *filters);
30
31 /// Set known uncompressed size. This is a hack needed to support
32 /// LZMA_Alone files that don't have EOPM.
33 extern void lzma_lzma_decoder_uncompressed_size(
34                 lzma_next_coder *next, lzma_vli uncompressed_size);
35
36 /// \brief      Decodes the LZMA Properties byte (lc/lp/pb)
37 ///
38 /// \return     true if error occorred, false on success
39 ///
40 extern bool lzma_lzma_decode_properties(
41                 lzma_options_lzma *options, uint8_t byte);
42
43 #endif