We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d681b24 commit 1f19837Copy full SHA for 1f19837
CHANGELOG.md
@@ -12,6 +12,7 @@ Bugfixes:
12
- Fix websocket `exit` command.
13
- Correct response of `setconfigname` websocket command.
14
- Fix buffer underrun soon after starting Alsa playback.
15
+- Correct scaling of FIR coefficients when reloading config.
16
17
18
## 0.3.1
src/fftconv.rs
@@ -167,7 +167,7 @@ impl Filter for FFTConv {
167
168
for (n, coeff) in coeffs.iter().enumerate() {
169
coeffs_padded[n / self.npoints][n % self.npoints] =
170
- coeff / (2.0 * self.npoints as PrcFmt);
+ coeff / (self.npoints as PrcFmt);
171
}
172
173
for (segment, segment_f) in coeffs_padded.iter_mut().zip(coeffs_f.iter_mut()) {
0 commit comments