Fix calculation of number of samples in .c2 files

Fixes output message from:
Number of samples: 44977
to:
Number of samples: 45000
pull/118/head
Daniele Forsi 2021-12-26 08:58:38 +01:00
rodzic 5d05552a0f
commit 4bfc01bba3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -606,7 +606,7 @@ int32_t readC2file(float *iSamples, float *qSamples, char *filename) {
/* Get the size of the file */
fseek(fd, 0L, SEEK_END);
int32_t recsize = ftell(fd) / (2 * sizeof(float)) - 26;
int32_t recsize = (ftell(fd) - 26) / (2 * sizeof(float));
fseek(fd, 0L, SEEK_SET);
/* Limit the file/buffer to the max samples */