-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxtc_config
51 lines (41 loc) · 938 Bytes
/
xtc_config
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
45
46
47
48
49
50
sampling_rate: 44100;
filter_length: 64,64;
show_progress: true;
## COEFFS ##
coeff "direct path" {
filename: "directpath.txt";
};
coeff "cross path" {
filename: "crosspath.txt";
};
input "left", "right" {
device: "alsa" { device: "hw:0"; };
sample: "S24_LE";
channels: 26/24,25;
};
output "left", "right" {
device: "alsa" { device: "hw:0"; };
sample: "S24_LE";
channels: 26/24,25;
dither: true;
};
filter "left speaker direct path" {
from_inputs: "left";
to_outputs: "left";
coeff: "direct path";
};
filter "left speaker cross path" {
from_inputs: "right";
to_outputs: "left";
coeff: "cross path";
};
filter "right speaker direct path" {
from_inputs: "right";
to_outputs: "right";
coeff: "direct path";
};
filter "right speaker cross path" {
from_inputs: "left";
to_outputs: "right";
coeff: "cross path";
};