mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-11 18:57:11 +01:00
more stuff idk at this point$
This commit is contained in:
parent
e06646367b
commit
9b1ec79d61
@ -64,7 +64,10 @@ namespace dsp::demod {
|
||||
audioAgc.process(count, out, out);
|
||||
}
|
||||
else {
|
||||
volk_32f_s32f_add_32f(out, out, -1.0f, count);
|
||||
// TODO: Find a volk function for it
|
||||
for (int i = 0; i < count; i++) {
|
||||
out[i] -= 1.0;
|
||||
}
|
||||
}
|
||||
|
||||
return count;
|
||||
|
Loading…
Reference in New Issue
Block a user