1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 14:34:57 -04:00

WDSP: Sonar corrections and cleanup

This commit is contained in:
f4exb
2024-07-19 08:10:54 +02:00
parent 40f7ecdaa0
commit c32116a330
14 changed files with 111 additions and 312 deletions
+3
View File
@@ -64,6 +64,9 @@ RESAMPLEF* RESAMPLEF::create_resampleF ( int run, int size, float* in, float* ou
a->L = out_rate / x;
a->M = in_rate / x;
a->L <= 0 ? 1 : a->L;
a->M <= 0 ? 1 : a->M;
if (in_rate < out_rate)
min_rate = in_rate;
else