mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-26 01:34:43 +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);
|
audioAgc.process(count, out, out);
|
||||||
}
|
}
|
||||||
else {
|
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;
|
return count;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user