File: xtc_config

package info (click to toggle)
brutefir 1.0o-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,160 kB
  • sloc: ansic: 15,858; makefile: 337; sh: 6
file content (51 lines) | stat: -rw-r--r-- 938 bytes parent folder | download | duplicates (7)
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
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";
};