1 ///////////////////////////////////////////////////////////////////////////////
3 /// \file delta_private.h
4 /// \brief Private common stuff for Delta encoder and decoder
6 // Author: Lasse Collin
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef LZMA_DELTA_PRIVATE_H
14 #define LZMA_DELTA_PRIVATE_H
16 #include "delta_common.h"
19 /// Next coder in the chain
25 /// Position in history[]
28 /// Buffer to hold history of the original data
29 uint8_t history
[LZMA_DELTA_DIST_MAX
];
33 extern lzma_ret
lzma_delta_coder_init(
34 lzma_next_coder
*next
, const lzma_allocator
*allocator
,
35 const lzma_filter_info
*filters
);