]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/lzma/lzma_decoder.h
Really fix the price count initialization.
[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 /// \brief      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 /// \brief      Decodes the LZMA Properties byte (lc/lp/pb)
32 ///
33 /// \return     true if error occorred, false on success
34 ///
35 extern bool lzma_lzma_decode_properties(
36                 lzma_options_lzma *options, uint8_t byte);
37
38 // There is no public lzma_lzma_encode() because lzma_lz_encode() works
39 // as a wrapper for it.
40
41 #endif