1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-30 05:54:26 -04:00

WDSP: remove wcomplex

This commit is contained in:
f4exb
2024-07-16 23:15:13 +02:00
parent 0b62856e70
commit 3a4981046c
43 changed files with 128 additions and 134 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ int RESAMPLE::xresample (RESAMPLE *a)
}
}
else if (a->in != a->out)
memcpy (a->out, a->in, a->size * sizeof (wcomplex));
std::copy( a->in, a->in + a->size * 2, a->out);
return outsamps;
}