rewrote DSP

This commit is contained in:
Ryzerth
2020-06-22 16:45:57 +02:00
parent 61ba7f1420
commit b78c2cf415
29 changed files with 1331 additions and 1554 deletions

8
src/dsp/types.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
namespace dsp {
struct complex_t {
float q;
float i;
};
};