comparison src/audiocompress/config.h @ 12:3da1b8942b8b trunk

[svn] - remove src/Input src/Output src/Effect src/General src/Visualization src/Container
author nenolod
date Mon, 18 Sep 2006 03:14:20 -0700
parents src/Effect/audiocompress/config.h@13389e613d67
children
comparison
equal deleted inserted replaced
11:cff1d04026ae 12:3da1b8942b8b
1 /* config.h
2 ** Default values for the configuration, and also a few random debug things
3 */
4
5 #ifndef CONFIG_H
6 #define CONFIG_H
7
8 /*** Version information ***/
9 #define ACVERSION "1.5.2"
10
11 /*** Monitoring stuff ***/
12 //#define DEBUG /* Show debugging information */
13 //#define STATS /* Show statistics on stderr */
14
15 /*** Default configuration stuff ***/
16 #define ANTICLIP 0 /* Strict clipping protection */
17 #define TARGET 25000 /* Target level */
18
19 #define GAINMAX 32 /* The maximum amount to amplify by */
20 #define GAINSHIFT 10 /* How fine-grained the gain is */
21 #define GAINSMOOTH 8 /* How much inertia ramping has*/
22 #define BUCKETS 400 /* How long of a history to store */
23
24 #endif
25