blob: 6acbea960f9397e55d1e96de91354e98ff69c5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef UDO_CONFIG
#define UDO_CONFIG ##
/*
SONICS config
This file is part of the SONICS UDO collection by Richard Knight 2021, 2022, 2023
License: GPL-2.0-or-later
http://1bpm.net
*/
; database: allow macro overrides from command line or pre-include etc
#ifndef PGDB_HOST
#define PGDB_HOST ##
#endif
#ifndef PGDB_NAME
#define PGDB_NAME ##
#endif
#ifndef PGDB_USER
#define PGDB_USER ##
#endif
#ifndef PGDB_PASSWORD
#define PGDB_PASSWORD ##
#endif
; local AudioOrganiser database
#ifndef AODB_PATH_WIN
#define AODB_PATH_WIN ##
#endif
#ifndef AODB_PATH_LINUX
#define AODB_PATH_LINUX ##
#endif
; FFT defaults
giFFTsize = 1024
giFFTwinFactor = 4
#end
|