aboutsummaryrefslogtreecommitdiff
path: root/src/cohpsk_get_test_bits.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cohpsk_get_test_bits.c')
-rw-r--r--src/cohpsk_get_test_bits.c85
1 files changed, 41 insertions, 44 deletions
diff --git a/src/cohpsk_get_test_bits.c b/src/cohpsk_get_test_bits.c
index 87ee380..7b14d89 100644
--- a/src/cohpsk_get_test_bits.c
+++ b/src/cohpsk_get_test_bits.c
@@ -8,7 +8,6 @@
\*---------------------------------------------------------------------------*/
-
/*
Copyright (C) 2015 David Rowe
@@ -27,61 +26,59 @@
*/
#include <assert.h>
+#include <errno.h>
+#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <math.h>
-#include <errno.h>
#include "codec2_cohpsk.h"
#include "test_bits_coh.h"
-int main(int argc, char *argv[])
-{
- FILE *fout;
- int tx_bits[COHPSK_BITS_PER_FRAME];
- char tx_bits_char[COHPSK_BITS_PER_FRAME];
- int numBits, nFrames, n;
- int *ptest_bits_coh, *ptest_bits_coh_end, i;
-
- if (argc < 2) {
- printf("usage: %s OutputOneCharPerBitFile numBits\n", argv[0]);
- exit(1);
- }
-
- if (strcmp(argv[1], "-") == 0) fout = stdout;
- else if ( (fout = fopen(argv[1],"wb")) == NULL ) {
- fprintf(stderr, "Error opening output file: %s: %s.\n",
- argv[1], strerror(errno));
- exit(1);
+int main(int argc, char *argv[]) {
+ FILE *fout;
+ int tx_bits[COHPSK_BITS_PER_FRAME];
+ char tx_bits_char[COHPSK_BITS_PER_FRAME];
+ int numBits, nFrames, n;
+ int *ptest_bits_coh, *ptest_bits_coh_end, i;
+
+ if (argc < 2) {
+ printf("usage: %s OutputOneCharPerBitFile numBits\n", argv[0]);
+ exit(1);
+ }
+
+ if (strcmp(argv[1], "-") == 0)
+ fout = stdout;
+ else if ((fout = fopen(argv[1], "wb")) == NULL) {
+ fprintf(stderr, "Error opening output file: %s: %s.\n", argv[1],
+ strerror(errno));
+ exit(1);
+ }
+
+ ptest_bits_coh = (int *)test_bits_coh;
+ ptest_bits_coh_end =
+ (int *)test_bits_coh + sizeof(test_bits_coh) / sizeof(int);
+ numBits = atoi(argv[2]);
+ nFrames = numBits / COHPSK_BITS_PER_FRAME;
+
+ for (n = 0; n < nFrames; n++) {
+ memcpy(tx_bits, ptest_bits_coh, sizeof(int) * COHPSK_BITS_PER_FRAME);
+ ptest_bits_coh += COHPSK_BITS_PER_FRAME;
+ if (ptest_bits_coh >= ptest_bits_coh_end) {
+ ptest_bits_coh = (int *)test_bits_coh;
}
- ptest_bits_coh = (int*)test_bits_coh;
- ptest_bits_coh_end = (int*)test_bits_coh + sizeof(test_bits_coh)/sizeof(int);
- numBits = atoi(argv[2]);
- nFrames = numBits/COHPSK_BITS_PER_FRAME;
-
- for(n=0; n<nFrames; n++) {
-
- memcpy(tx_bits, ptest_bits_coh, sizeof(int)*COHPSK_BITS_PER_FRAME);
- ptest_bits_coh += COHPSK_BITS_PER_FRAME;
- if (ptest_bits_coh >= ptest_bits_coh_end) {
- ptest_bits_coh = (int*)test_bits_coh;
- }
+ for (i = 0; i < COHPSK_BITS_PER_FRAME; i++) tx_bits_char[i] = tx_bits[i];
- for(i=0; i<COHPSK_BITS_PER_FRAME; i++)
- tx_bits_char[i] = tx_bits[i];
+ fwrite(tx_bits_char, sizeof(char), COHPSK_BITS_PER_FRAME, fout);
- fwrite(tx_bits_char, sizeof(char), COHPSK_BITS_PER_FRAME, fout);
+ /* if this is in a pipeline, we probably don't want the usual
+ buffering to occur */
- /* if this is in a pipeline, we probably don't want the usual
- buffering to occur */
+ if (fout == stdout) fflush(stdout);
+ }
- if (fout == stdout) fflush(stdout);
- }
-
- fclose(fout);
+ fclose(fout);
- return 0;
+ return 0;
}
-