comparison src/audiocompress/audiocompress_config.h @ 2104:da7a68f68116

Rename internal config.h to audiocompress_config.h to avoid collisions. Reported by Oliver Lehmann <oliver@freebsd.org>.
author William Pitcock <nenolod@atheme.org>
date Fri, 19 Oct 2007 06:14:45 -0500
parents src/audiocompress/config.h@3da1b8942b8b
children
comparison
equal deleted inserted replaced
2103:90f2dcd39e85 2104:da7a68f68116
1 /* audiocompress_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