allow adjustment of the bandpass

This commit is contained in:
Jakob Ketterl 2024-01-26 23:10:16 +01:00
parent f6437067f4
commit a539fc8fa6

View file

@ -15,6 +15,8 @@ Filter.prototype.getLimits = function() {
max_bw = 50000;
} else if (this.demodulator.get_modulation() === "freedv") {
max_bw = 4000;
} else if (this.demodulator.get_modulation() === "dab") {
max_bw = 1000000;
} else {
max_bw = (audioEngine.getOutputRate() / 2) - 1;
}