implement the buffer class and derive the taps class from it

This commit is contained in:
AlexandreRouma
2025-09-05 23:12:07 -04:00
parent ab030b8816
commit b9280ddae1
13 changed files with 198 additions and 160 deletions

View File

@@ -1,6 +1,18 @@
#include <stdio.h>
#include "dsp/buffer.h"
#include "dsp/taps.h"
#include "dsp/complex.h"
#include <volk/volk.h>
void testFunc(const float* buf, size_t len) {
};
int main() {
float* test;
dsp::Taps<float> taps;
testFunc(((const dsp::Taps<float>&)taps).data(), taps.size());
return 0;
}