LibDSP: Rename library namespace to DSP

That's the standard naming convention, but I didn't follow it when
originally creating LibDSP and nobody corrected me, so here I am one
year later :^)
This commit is contained in:
kleines Filmröllchen 2022-07-17 11:35:31 +02:00 committed by Linus Groh
commit 00e13b5b27
Notes: sideshowbarker 2024-07-17 08:46:34 +09:00
36 changed files with 92 additions and 92 deletions

View file

@ -10,7 +10,7 @@
#include <AK/Math.h>
#include <AK/Span.h>
namespace LibDSP {
namespace DSP {
constexpr void fft(Span<Complex<float>> sample_data, bool invert = false)
{