MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / processBlocks

Function processBlocks

tests/client_reverb_test.cpp:69–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void processBlocks(ClientReverb& r, float* buf, int frames)
70{
71 int remaining = frames;
72 float* p = buf;
73 while (remaining > 0) {
74 const int n = std::min(kBlockSize, remaining);
75 r.process(p, n, 2);
76 p += n * 2;
77 remaining -= n;
78 }
79}
80
81bool anyNaNorInf(const float* data, int frames)
82{

Callers 1

mainFunction · 0.70

Calls 1

processMethod · 0.45

Tested by

no test coverage detected