Compare commits

..

No commits in common. "main" and "v1.3.0" have entirely different histories.
main ... v1.3.0

View file

@ -249,10 +249,10 @@ function synthesis(
xs = irfft(X, N, 1) # Convert segments to time-domain
@turbo for s 0:(S-1)
ss = s*H # Segment shift
@turbo for s 1:S
ss = (s-1)*H # Segment start
for n = 1:W
xn[ss+n] += xs[n, s+1] * w[n]
xn[ss+n] += xs[n, s] * w[n]
xd[ss+n] += [n]
end
end