# PM 2005-11-19 # # 4 channel, 48k, 24 bit tracks 2 and 3 float_bits: 64; # internal floating point precision sampling_rate: 48000; filter_length: 64,64; overflow_warnings: true; # echo warnings to stderr if overflow occurs show_progress: true; ## COEFFS ## coeff "direct path" { filename: "directpath.txt"; }; coeff "cross path" { filename: "crosspath.txt"; }; input "left", "right" { device: "file" { path: "input.raw"; }; sample: "S24_LE"; channels: 4/2,3; }; output "left", "right" { device: "file" { path: "output.raw"; }; sample: "S24_LE"; channels: 4/2,3; 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"; };