1 // SPDX-License-Identifier: 0BSD
3 ///////////////////////////////////////////////////////////////////////////////
5 /// \file lzma2_decoder.h
6 /// \brief LZMA2 decoder
8 // Authors: Igor Pavlov
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef LZMA_LZMA2_DECODER_H
14 #define LZMA_LZMA2_DECODER_H
18 extern lzma_ret
lzma_lzma2_decoder_init(lzma_next_coder
*next
,
19 const lzma_allocator
*allocator
,
20 const lzma_filter_info
*filters
);
22 extern uint64_t lzma_lzma2_decoder_memusage(const void *options
);
24 extern lzma_ret
lzma_lzma2_props_decode(
25 void **options
, const lzma_allocator
*allocator
,
26 const uint8_t *props
, size_t props_size
);