Mercurial > audlegacy-plugins
view src/audiocompress/config.h @ 1055:0cc6b35fbeb4 trunk
[svn] - evdev-plug 0.2: do not intercept all event types, currently only pick types KEY and ABSOLUTE; there could be other event types that are worth intercepting, feedback needed about this
author | giacomo |
---|---|
date | Tue, 22 May 2007 05:24:09 -0700 |
parents | 3da1b8942b8b |
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