kusano 7d535a
/* config1b.h -- configuration for the LZO1B algorithm
kusano 7d535a
kusano 7d535a
   This file is part of the LZO real-time data compression library.
kusano 7d535a
kusano 7d535a
   Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
kusano 7d535a
   All Rights Reserved.
kusano 7d535a
kusano 7d535a
   The LZO library is free software; you can redistribute it and/or
kusano 7d535a
   modify it under the terms of the GNU General Public License as
kusano 7d535a
   published by the Free Software Foundation; either version 2 of
kusano 7d535a
   the License, or (at your option) any later version.
kusano 7d535a
kusano 7d535a
   The LZO library is distributed in the hope that it will be useful,
kusano 7d535a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
kusano 7d535a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
kusano 7d535a
   GNU General Public License for more details.
kusano 7d535a
kusano 7d535a
   You should have received a copy of the GNU General Public License
kusano 7d535a
   along with the LZO library; see the file COPYING.
kusano 7d535a
   If not, write to the Free Software Foundation, Inc.,
kusano 7d535a
   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
kusano 7d535a
kusano 7d535a
   Markus F.X.J. Oberhumer
kusano 7d535a
   <markus@oberhumer.com></markus@oberhumer.com>
kusano 7d535a
   http://www.oberhumer.com/opensource/lzo/
kusano 7d535a
 */
kusano 7d535a
kusano 7d535a
kusano 7d535a
/* WARNING: this file should *not* be used by applications. It is
kusano 7d535a
   part of the implementation of the library and is subject
kusano 7d535a
   to change.
kusano 7d535a
 */
kusano 7d535a
kusano 7d535a
kusano 7d535a
#ifndef __LZO_CONFIG1B_H
kusano 7d535a
#define __LZO_CONFIG1B_H
kusano 7d535a
kusano 7d535a
#include "lzo_conf.h"
kusano 7d535a
#include "lzo/lzo1b.h"
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************************************
kusano 7d535a
// algorithm configuration
kusano 7d535a
************************************************************************/
kusano 7d535a
kusano 7d535a
/* run bits (4 - 5) - the compressor and the decompressor
kusano 7d535a
 * must use the same value. */
kusano 7d535a
#if !defined(RBITS)
kusano 7d535a
#  define RBITS     5
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
/* dictionary depth (0 - 6) - this only affects the compressor.
kusano 7d535a
 * 0 is fastest, 6 is best compression ratio */
kusano 7d535a
#if !defined(DDBITS)
kusano 7d535a
#  define DDBITS    0
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
/* compression level (1 - 9) - this only affects the compressor.
kusano 7d535a
 * 1 is fastest, 9 is best compression ratio */
kusano 7d535a
#if !defined(CLEVEL)
kusano 7d535a
#  define CLEVEL    1           /* fastest by default */
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
kusano 7d535a
/* check configuration */
kusano 7d535a
#if (RBITS < 4 || RBITS > 5)
kusano 7d535a
#  error "invalid RBITS"
kusano 7d535a
#endif
kusano 7d535a
#if (DDBITS < 0 || DDBITS > 6)
kusano 7d535a
#  error "invalid DDBITS"
kusano 7d535a
#endif
kusano 7d535a
#if (CLEVEL < 1 || CLEVEL > 9)
kusano 7d535a
#  error "invalid CLEVEL"
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************************************
kusano 7d535a
// internal configuration
kusano 7d535a
************************************************************************/
kusano 7d535a
kusano 7d535a
/* add a special code so that the decompressor can detect the
kusano 7d535a
 * end of the compressed data block (overhead is 3 bytes per block) */
kusano 7d535a
#define LZO_EOF_CODE
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************************************
kusano 7d535a
// algorithm internal configuration
kusano 7d535a
************************************************************************/
kusano 7d535a
kusano 7d535a
/* choose the hashing strategy */
kusano 7d535a
#ifndef LZO_HASH
kusano 7d535a
#define LZO_HASH        LZO_HASH_LZO_INCREMENTAL_A
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
/* config */
kusano 7d535a
#define R_BITS          RBITS
kusano 7d535a
#define DD_BITS         DDBITS
kusano 7d535a
#ifndef D_BITS
kusano 7d535a
#define D_BITS          14
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************************************
kusano 7d535a
// optimization and debugging
kusano 7d535a
************************************************************************/
kusano 7d535a
kusano 7d535a
/* Collect statistics */
kusano 7d535a
#if 0 && !defined(LZO_COLLECT_STATS)
kusano 7d535a
#  define LZO_COLLECT_STATS
kusano 7d535a
#endif
kusano 7d535a
kusano 7d535a
kusano 7d535a
/***********************************************************************
kusano 7d535a
//
kusano 7d535a
************************************************************************/
kusano 7d535a
kusano 7d535a
#include "lzo1b_de.h"
kusano 7d535a
#include "stats1b.h"
kusano 7d535a
kusano 7d535a
#include "lzo1b_cc.h"
kusano 7d535a
kusano 7d535a
kusano 7d535a
#endif /* already included */
kusano 7d535a
kusano 7d535a
/*
kusano 7d535a
vi:ts=4:et
kusano 7d535a
*/
kusano 7d535a