1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 19:44:12 -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
@@ -86,7 +86,7 @@ void SHIFT::xshift (SHIFT *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);
}
void SHIFT::setBuffers_shift(SHIFT *a, float* in, float* out)