view Plugins/Effect/audiocompress/config.h @ 1047:91f6db060a8b trunk

[svn] - initial playlist_transparent patch. (you will need to edit your audacious config manually, either by gconf or texteditor to enable)
author nenolod
date Sun, 14 May 2006 13:35:06 -0700
parents 6158ee7d8b06
children
line wrap: on
line source

/* 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