mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-04-03 01:58:33 -04:00
loop->memcpy
This commit is contained in:
parent
9cf8799a58
commit
6deee5a936
@ -255,9 +255,7 @@ void SDRThread::threadMain() {
|
||||
dataOut->data.resize(n_read);
|
||||
}
|
||||
|
||||
for (int i = 0; i < n_read; i++) {
|
||||
dataOut->data[i] = buf[i];
|
||||
}
|
||||
memcpy(&dataOut->data[0], buf, n_read);
|
||||
|
||||
double time_slice = (double) n_read / (double) sampleRate;
|
||||
seconds += time_slice;
|
||||
|
Loading…
Reference in New Issue
Block a user