1207753Smm///////////////////////////////////////////////////////////////////////////////
2207753Smm//
3207753Smm/// \file       delta_decoder.h
4207753Smm/// \brief      Delta filter decoder
5207753Smm//
6207753Smm//  Author:     Lasse Collin
7207753Smm//
8207753Smm//  This file has been put into the public domain.
9207753Smm//  You can do whatever you want with this file.
10207753Smm//
11207753Smm///////////////////////////////////////////////////////////////////////////////
12207753Smm
13207753Smm#ifndef LZMA_DELTA_DECODER_H
14207753Smm#define LZMA_DELTA_DECODER_H
15207753Smm
16207753Smm#include "delta_common.h"
17207753Smm
18207753Smmextern lzma_ret lzma_delta_decoder_init(lzma_next_coder *next,
19207753Smm		lzma_allocator *allocator, const lzma_filter_info *filters);
20207753Smm
21207753Smmextern lzma_ret lzma_delta_props_decode(
22207753Smm		void **options, lzma_allocator *allocator,
23207753Smm		const uint8_t *props, size_t props_size);
24207753Smm
25207753Smm#endif
26