@@ -137,7 +137,8 @@ static struct {
137
137
138
138
static FILE * fp ;
139
139
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 ;
141
142
static int decimate = 0 ; /* Reduce that sampling rate if set. */
142
143
/* 1 = normal, 2 = half, etc. */
143
144
@@ -182,7 +183,8 @@ int main (int argc, char *argv[])
182
183
int channel ;
183
184
184
185
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.
186
188
double elapsed ; // Time it took us to process it.
187
189
188
190
@@ -433,6 +435,11 @@ int main (int argc, char *argv[])
433
435
usage ();
434
436
}
435
437
438
+
439
+ start_time = dtime_now ();
440
+
441
+ while (optind < argc ) {
442
+
436
443
fp = fopen (argv [optind ], "rb" );
437
444
if (fp == NULL ) {
438
445
text_color_set (DW_COLOR_ERROR );
@@ -441,8 +448,6 @@ int main (int argc, char *argv[])
441
448
exit (EXIT_FAILURE );
442
449
}
443
450
444
- start_time = dtime_now ();
445
-
446
451
/*
447
452
* Read the file header.
448
453
* Doesn't handle all possible cases but good enough for our purposes.
@@ -515,17 +520,20 @@ int main (int argc, char *argv[])
515
520
my_audio_config .adev [0 ].samples_per_sec ,
516
521
my_audio_config .adev [0 ].bits_per_sample ,
517
522
my_audio_config .adev [0 ].num_channels );
518
- duration = (double ) wav_data .datasize /
523
+ one_filetime = (double ) wav_data .datasize /
519
524
((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
+
520
527
dw_printf ("%d audio bytes in file. Duration = %.1f seconds.\n" ,
521
528
(int )(wav_data .datasize ),
522
- duration );
529
+ one_filetime );
523
530
dw_printf ("Fix Bits level = %d\n" , my_audio_config .achan [0 ].fix_bits );
524
531
525
532
/*
526
533
* Initialize the AFSK demodulator and HDLC decoder.
527
534
*/
528
535
multi_modem_init (& my_audio_config );
536
+ packets_decoded_one = 0 ;
529
537
530
538
531
539
e_o_f = 0 ;
@@ -578,17 +586,23 @@ int main (int argc, char *argv[])
578
586
}
579
587
#endif
580
588
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
+ }
581
595
582
596
elapsed = dtime_now () - start_time ;
583
597
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 );
585
599
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 ) {
587
601
text_color_set (DW_COLOR_ERROR );
588
602
dw_printf ("\n * * * TEST FAILED: number decoded is less than %d * * * \n" , error_if_less_than );
589
603
exit (EXIT_FAILURE );
590
604
}
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 ) {
592
606
text_color_set (DW_COLOR_ERROR );
593
607
dw_printf ("\n * * * TEST FAILED: number decoded is greater than %d * * * \n" , error_if_greater_than );
594
608
exit (EXIT_FAILURE );
@@ -660,7 +674,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
660
674
char heard [AX25_MAX_ADDR_LEN ];
661
675
char alevel_text [AX25_ALEVEL_TO_TEXT_SIZE ];
662
676
663
- packets_decoded ++ ;
677
+ packets_decoded_one ++ ;
664
678
665
679
ax25_format_addrs (pp , stemp );
666
680
@@ -686,7 +700,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
686
700
687
701
text_color_set (DW_COLOR_DEBUG );
688
702
dw_printf ("\n" );
689
- dw_printf ("DECODED[%d] " , packets_decoded );
703
+ dw_printf ("DECODED[%d] " , packets_decoded_one );
690
704
691
705
/* Insert time stamp relative to start of file. */
692
706
0 commit comments