aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/convolution.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/effects/convolution.cpp')
-rw-r--r--alc/effects/convolution.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/effects/convolution.cpp b/alc/effects/convolution.cpp
index 4ca31246..04b88f66 100644
--- a/alc/effects/convolution.cpp
+++ b/alc/effects/convolution.cpp
@@ -360,7 +360,7 @@ void ConvolutionState::deviceUpdate(const DeviceBase *device, const BufferStorag
done += todo;
std::fill(iter, fftbuffer.end(), std::complex<double>{});
- forward_fft(al::as_span(fftbuffer));
+ forward_fft(al::span{fftbuffer});
filteriter = std::copy_n(fftbuffer.cbegin(), m, filteriter);
}
}
@@ -562,7 +562,7 @@ void ConvolutionState::process(const size_t samplesToDo,
*/
auto fftiter = std::copy_n(mInput.cbegin(), ConvolveUpdateSamples, mFftBuffer.begin());
std::fill(fftiter, mFftBuffer.end(), complex_f{});
- forward_fft(al::as_span(mFftBuffer));
+ forward_fft(al::span{mFftBuffer});
std::copy_n(mFftBuffer.cbegin(), m, &mComplexData[curseg*m]);
@@ -598,7 +598,7 @@ void ConvolutionState::process(const size_t samplesToDo,
* second-half samples (and this output's second half is
* subsequently saved for next time).
*/
- inverse_fft(al::as_span(mFftBuffer));
+ inverse_fft(al::span{mFftBuffer});
/* The iFFT'd response is scaled up by the number of bins, so apply
* the inverse to normalize the output.