Skip to content

Commit 07f2174

Browse files
committed
Add ability to handle multiple audio files with one command.
1 parent 08a691a commit 07f2174

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed

atest.c

+25-11
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ static struct {
137137

138138
static FILE *fp;
139139
static int e_o_f;
140-
static int packets_decoded = 0;
140+
static int packets_decoded_one = 0;
141+
static int packets_decoded_total = 0;
141142
static int decimate = 0; /* Reduce that sampling rate if set. */
142143
/* 1 = normal, 2 = half, etc. */
143144

@@ -182,7 +183,8 @@ int main (int argc, char *argv[])
182183
int channel;
183184

184185
double start_time; // Time when we started so we can measure elapsed time.
185-
double duration; // Length of the audio file in seconds.
186+
double one_filetime = 0; // Length of one audio file in seconds.
187+
double total_filetime = 0; // Length of all audio files in seconds.
186188
double elapsed; // Time it took us to process it.
187189

188190

@@ -433,6 +435,11 @@ int main (int argc, char *argv[])
433435
usage ();
434436
}
435437

438+
439+
start_time = dtime_now();
440+
441+
while (optind < argc) {
442+
436443
fp = fopen(argv[optind], "rb");
437444
if (fp == NULL) {
438445
text_color_set(DW_COLOR_ERROR);
@@ -441,8 +448,6 @@ int main (int argc, char *argv[])
441448
exit (EXIT_FAILURE);
442449
}
443450

444-
start_time = dtime_now();
445-
446451
/*
447452
* Read the file header.
448453
* Doesn't handle all possible cases but good enough for our purposes.
@@ -515,17 +520,20 @@ int main (int argc, char *argv[])
515520
my_audio_config.adev[0].samples_per_sec,
516521
my_audio_config.adev[0].bits_per_sample,
517522
my_audio_config.adev[0].num_channels);
518-
duration = (double) wav_data.datasize /
523+
one_filetime = (double) wav_data.datasize /
519524
((my_audio_config.adev[0].bits_per_sample / 8) * my_audio_config.adev[0].num_channels * my_audio_config.adev[0].samples_per_sec);
525+
total_filetime += one_filetime;
526+
520527
dw_printf ("%d audio bytes in file. Duration = %.1f seconds.\n",
521528
(int)(wav_data.datasize),
522-
duration);
529+
one_filetime);
523530
dw_printf ("Fix Bits level = %d\n", my_audio_config.achan[0].fix_bits);
524531

525532
/*
526533
* Initialize the AFSK demodulator and HDLC decoder.
527534
*/
528535
multi_modem_init (&my_audio_config);
536+
packets_decoded_one = 0;
529537

530538

531539
e_o_f = 0;
@@ -578,17 +586,23 @@ int main (int argc, char *argv[])
578586
}
579587
#endif
580588

589+
dw_printf ("%d from %s\n", packets_decoded_one, argv[optind]);
590+
packets_decoded_total += packets_decoded_one;
591+
592+
fclose (fp);
593+
optind++;
594+
}
581595

582596
elapsed = dtime_now() - start_time;
583597

584-
dw_printf ("%d packets decoded in %.3f seconds. %.1f x realtime\n", packets_decoded, elapsed, duration/elapsed);
598+
dw_printf ("%d packets decoded in %.3f seconds. %.1f x realtime\n", packets_decoded_total, elapsed, total_filetime/elapsed);
585599

586-
if (error_if_less_than != -1 && packets_decoded < error_if_less_than) {
600+
if (error_if_less_than != -1 && packets_decoded_total < error_if_less_than) {
587601
text_color_set(DW_COLOR_ERROR);
588602
dw_printf ("\n * * * TEST FAILED: number decoded is less than %d * * * \n", error_if_less_than);
589603
exit (EXIT_FAILURE);
590604
}
591-
if (error_if_greater_than != -1 && packets_decoded > error_if_greater_than) {
605+
if (error_if_greater_than != -1 && packets_decoded_total > error_if_greater_than) {
592606
text_color_set(DW_COLOR_ERROR);
593607
dw_printf ("\n * * * TEST FAILED: number decoded is greater than %d * * * \n", error_if_greater_than);
594608
exit (EXIT_FAILURE);
@@ -660,7 +674,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
660674
char heard[AX25_MAX_ADDR_LEN];
661675
char alevel_text[AX25_ALEVEL_TO_TEXT_SIZE];
662676

663-
packets_decoded++;
677+
packets_decoded_one++;
664678

665679
ax25_format_addrs (pp, stemp);
666680

@@ -686,7 +700,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
686700

687701
text_color_set(DW_COLOR_DEBUG);
688702
dw_printf ("\n");
689-
dw_printf("DECODED[%d] ", packets_decoded );
703+
dw_printf("DECODED[%d] ", packets_decoded_one );
690704

691705
/* Insert time stamp relative to start of file. */
692706

0 commit comments

Comments
 (0)