2007-12-08 22:42:33 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-01-19 13:19:21 +00:00
|
|
|
/// \file delta_encoder.h
|
|
|
|
/// \brief Delta filter encoder
|
2007-12-08 22:42:33 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2007 Lasse Collin
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-01-19 13:19:21 +00:00
|
|
|
#ifndef LZMA_DELTA_ENCODER_H
|
|
|
|
#define LZMA_DELTA_ENCODER_H
|
2007-12-08 22:42:33 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
extern lzma_ret lzma_delta_encoder_init(lzma_next_coder *next,
|
|
|
|
lzma_allocator *allocator, const lzma_filter_info *filters);
|
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
extern lzma_ret lzma_delta_props_encode(const void *options, uint8_t *out);
|
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
#endif
|