aboutsummaryrefslogtreecommitdiff
path: root/src/AudioCompress/config.h
blob: a4b89e7d190bc2229b618e900d10c8768351b0dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* config.h
** Default values for the configuration, and also a few random debug things
*/

#ifndef AC_CONFIG_H
#define AC_CONFIG_H

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

/*** Default configuration stuff ***/
#define TARGET 20000 /*!< Target level (on a scale of 0-32767) */

#define GAINMAX 32		/*!< The maximum amount to amplify by */
#define GAINSMOOTH 8		/*!< How much inertia ramping has*/
#define BUCKETS 40		/*!< How long of a history to use by default */

#endif