fixes to atv demod for testing only

This commit is contained in:
AlexandreRouma
2025-10-09 00:59:23 -04:00
parent b1d94775fe
commit 4658a1ade6
2 changed files with 51 additions and 49 deletions

View File

@@ -38,6 +38,7 @@ namespace dsp::demod {
inline int process(int count, complex_t* in, float* out) {
volk_32fc_magnitude_32f(out, (lv_32fc_t*)in, count);
volk_32f_s32f_multiply_32f(out, out, -1.0f, count);
return count;
}