view src/audiocompress/audiocompress_config.h @ 2138:76f9a4168708

Fix linking with libaudid3tag Linking with libaudid3tag from /usr/lib/audacious, add rpath (affected to tta, shnplug and madplug plugins)
author Vitaly Lipatov <lav@etersoft.ru>
date Sat, 27 Oct 2007 19:34:46 -0500
parents da7a68f68116
children
line wrap: on
line source

/* audiocompress_config.h
** Default values for the configuration, and also a few random debug things
*/

#ifndef CONFIG_H
#define CONFIG_H

/*** Version information ***/
#define ACVERSION "1.5.2"

/*** Monitoring stuff ***/
//#define DEBUG			/* Show debugging information */
//#define STATS			/* Show statistics on stderr */

/*** Default configuration stuff ***/
#define ANTICLIP 0		/* Strict clipping protection */
#define TARGET 25000		/* Target level */

#define GAINMAX 32		/* The maximum amount to amplify by */
#define GAINSHIFT 10		/* How fine-grained the gain is */
#define GAINSMOOTH 8		/* How much inertia ramping has*/
#define BUCKETS 400		/* How long of a history to store */

#endif