filter_encoder.h revision 215187
165925Sache///////////////////////////////////////////////////////////////////////////////
265925Sache//
365925Sache/// \file       filter_encoder.c
465925Sache/// \brief      Filter ID mapping to filter-specific functions
565925Sache//
665925Sache//  Author:     Lasse Collin
765925Sache//
8174990Sache//  This file has been put into the public domain.
965925Sache//  You can do whatever you want with this file.
1065925Sache//
1165925Sache///////////////////////////////////////////////////////////////////////////////
1265925Sache
1365925Sache#ifndef LZMA_FILTER_ENCODER_H
1465925Sache#define LZMA_FILTER_ENCODER_H
1565925Sache
1665925Sache#include "common.h"
1765925Sache
1865925Sache
1965925Sache// FIXME: Might become a part of the public API once finished.
2065925Sache// extern lzma_vli lzma_chunk_size(const lzma_filter *filters);
2165925Sache
2265925Sache
23174990Sacheextern lzma_ret lzma_raw_encoder_init(
2465925Sache		lzma_next_coder *next, lzma_allocator *allocator,
2565925Sache		const lzma_filter *filters);
2665925Sache
2765925Sache#endif
2865925Sache