Ich hatte jetzt eigentlich mit mehr Fehlern gerechnet, z.B. von ungenutzten Kanälen...
Die Meldung :
Zitat:Warning: no support for clock cycle counter on this platform.
Ist ein wenig merkwürdig hast Du irgendwelche Dämonen die dir den Prozessor takten?
Seis drum ich kann grad nicht testen und hab mal ein paar Dinge in deiner "Präambel" näher an die Standardversion zurückportiert.
Außerdem habe ich deine Ein und Ausgänge auf "Auto" gesetzt und nicht benutzte Kanäle gestrichen.
Mein Hauptverdächtiger ist der poll-mode...
Achtung! Eventuell habe ich deine Ausgänge durcheinander gewürfelt unbedingt testen wegen der Hochtöner!
float_bits: 32; # internal floating point precision
sampling_rate: 48000; # sampling rate in Hz of audio interfaces
filter_length: 8192,16; # length of filters
overflow_warnings: true; # echo warnings to stderr if overflow occurs
show_progress: true; # echo filtering progress to stderr
max_dither_table_size: 0; # maximum size in bytes of precalculated dither
allow_poll_mode: false; # allow use of input poll mode
modules_path: "."; # extra path where to find BruteFIR modules
monitor_rate: false; # monitor sample rate
convolver_config: "~/.brutefir_convolver"; # location of convolver config file
## LOGIC ##
logic: "cli" { port: 3000; };
## INPUT, OUTPUT ##
input "left" {
device: "alsa" { device: "hw:0"; ignore_xrun: true; };
sample: "AUTO";
channels:1/0;
};
output "lsub", "llow", "lmid", "lhigh" {
device: "alsa" { device: "hw:0"; ignore_xrun: true; };
sample: "AUTO";
channels: 4;
};
coeff "subleft" {
filename: "XOSubL48.pcm";
format: "FLOAT_LE";
};
coeff "lowleft" {
filename: "XOLowL48.pcm";
format: "FLOAT_LE";
};
coeff "highleft" {
filename: "XOHighL48.pcm";
format: "FLOAT_LE";
};
coeff "midleft" {
filename: "XOMidL48.pcm";
format: "FLOAT_LE";
};
filter "ls" {
inputs: "left";
to_outputs: "lsub";
coeff: "subleft";
};
filter "ll" {
inputs: "left";
to_outputs: "llow";
coeff: "lowleft";
};
filter "lm" {
inputs: "left";
to_outputs: "lmid";
coeff: "midleft";
};
filter "lh" {
inputs: "left";
to_outputs: "lhigh";
coeff: "highleft";
};
Gruß
Elmar