-
Notifications
You must be signed in to change notification settings - Fork 1
/
bench1_config
58 lines (52 loc) · 927 Bytes
/
bench1_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
51
52
53
54
55
56
57
sampling_rate: 44100;
filter_length: 8192,8;
benchmark: true;
modules_path: ".";
convolver_config: ".fftw3wisdom";
coeff 0 { filename: "dirac pulse"; };
coeff 1 { filename: "dirac pulse"; };
coeff 2 { filename: "dirac pulse"; };
coeff 3 { filename: "dirac pulse"; };
coeff 4 { filename: "dirac pulse"; };
coeff 5 { filename: "dirac pulse"; };
input 0, 1 {
device: "file" { path: "/dev/zero"; };
sample: "S24_4LE";
channels: 2;
};
output 0, 1 {
device: "file" { path: "/dev/null"; };
sample: "S24_4LE";
dither: false;
channels: 2;
};
filter 0 {
from_filters: 2, 5;
to_outputs: 0;
coeff: 0;
};
filter 1 {
from_filters: 3, 4;
to_outputs: 1;
coeff: 1;
};
filter 2 {
from_inputs: 0;
to_filters: 0;
coeff: 2;
};
filter 3 {
from_inputs: 0;
to_filters: 1;
coeff: 3;
};
filter 4 {
from_inputs: 1;
to_filters: 1;
coeff: 4;
};
filter 5 {
from_inputs: 1;
to_filters: 0;
coeff: 5;
};