1
1
//
2
2
// This file is part of Dire Wolf, an amateur radio packet TNC.
3
3
//
4
- // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019 John Langner, WB2OSZ
4
+ // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021 John Langner, WB2OSZ
5
5
//
6
6
// This program is free software: you can redistribute it and/or modify
7
7
// it under the terms of the GNU General Public License as published by
60
60
static struct audio_s * save_audio_config_p ;
61
61
62
62
63
- // TODO: temp experiment.
64
-
65
-
66
- static int zerostuff = 1 ; // temp experiment.
67
63
68
64
// Current state of all the decoders.
69
65
@@ -676,12 +672,6 @@ int demod_init (struct audio_s *pa)
676
672
strlcpy (save_audio_config_p -> achan [chan ].profiles , "+" , sizeof (save_audio_config_p -> achan [chan ].profiles ));
677
673
}
678
674
679
-
680
- #ifdef TUNE_ZEROSTUFF
681
- zerostuff = TUNE_ZEROSTUFF ;
682
- #endif
683
-
684
-
685
675
/*
686
676
* We need a minimum number of audio samples per bit time for good performance.
687
677
* Easier to check here because demod_9600_init might have an adjusted sample rate.
@@ -696,26 +686,32 @@ int demod_init (struct audio_s *pa)
696
686
697
687
if (save_audio_config_p -> achan [chan ].upsample == 0 ) {
698
688
699
- if (ratio < 5 ) {
689
+ if (ratio < 4 ) {
700
690
701
- // example: 44100 / 9600 is 4.59
702
- // Big improvement with x2.
703
- // x4 seems to work the best.
704
- // The other parameters are not as touchy.
705
- // Might reduce on ARM if it takes too much CPU power.
691
+ // This is extreme.
692
+ // No one should be using a sample rate this low but
693
+ // amazingly a recording with 22050 rate can be decoded.
694
+ // 3 and 4 are the same. Need more tests.
706
695
707
696
save_audio_config_p -> achan [chan ].upsample = 4 ;
708
697
}
698
+ else if (ratio < 5 ) {
699
+
700
+ // example: 44100 / 9600 is 4.59
701
+ // 3 is slightly better than 2 or 4.
702
+
703
+ save_audio_config_p -> achan [chan ].upsample = 3 ;
704
+ }
709
705
else if (ratio < 10 ) {
710
706
711
- // 48000 / 9600 is 5.00
712
- // Need more research. Treat like above for now .
707
+ // example: 48000 / 9600 = 5
708
+ // 3 is slightly better than 2 or 4 .
713
709
714
- save_audio_config_p -> achan [chan ].upsample = 4 ;
710
+ save_audio_config_p -> achan [chan ].upsample = 3 ;
715
711
}
716
712
else if (ratio < 15 ) {
717
713
718
- // ...
714
+ // ... guessing
719
715
720
716
save_audio_config_p -> achan [chan ].upsample = 2 ;
721
717
}
@@ -786,7 +782,8 @@ int demod_init (struct audio_s *pa)
786
782
}
787
783
788
784
demod_9600_init (save_audio_config_p -> achan [chan ].modem_type ,
789
- save_audio_config_p -> achan [chan ].upsample * save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec ,
785
+ save_audio_config_p -> adev [ACHAN2ADEV (chan )].samples_per_sec ,
786
+ save_audio_config_p -> achan [chan ].upsample ,
790
787
save_audio_config_p -> achan [chan ].baud , D );
791
788
792
789
if (strchr (save_audio_config_p -> achan [chan ].profiles , '+' ) != NULL ) {
@@ -924,7 +921,7 @@ __attribute__((hot))
924
921
void demod_process_sample (int chan , int subchan , int sam )
925
922
{
926
923
float fsam ;
927
- int k ;
924
+ // int k;
928
925
929
926
930
927
struct demodulator_state_s * D ;
@@ -1016,47 +1013,7 @@ void demod_process_sample (int chan, int subchan, int sam)
1016
1013
case MODEM_AIS :
1017
1014
default :
1018
1015
1019
- if (zerostuff ) {
1020
- /* Literature says this is better if followed */
1021
- /* by appropriate low pass filter. */
1022
- /* So far, both are same in tests with different */
1023
- /* optimal low pass filter parameters. */
1024
-
1025
- for (k = 1 ; k < save_audio_config_p -> achan [chan ].upsample ; k ++ ) {
1026
- demod_9600_process_sample (chan , 0 , D );
1027
- }
1028
- demod_9600_process_sample (chan , sam * save_audio_config_p -> achan [chan ].upsample , D );
1029
- }
1030
- else {
1031
-
1032
- /* Linear interpolation. */
1033
- static int prev_sam ;
1034
-
1035
- switch (save_audio_config_p -> achan [chan ].upsample ) {
1036
- case 1 :
1037
- demod_9600_process_sample (chan , sam , D );
1038
- break ;
1039
- case 2 :
1040
- demod_9600_process_sample (chan , (prev_sam + sam ) / 2 , D );
1041
- demod_9600_process_sample (chan , sam , D );
1042
- break ;
1043
- case 3 :
1044
- demod_9600_process_sample (chan , (2 * prev_sam + sam ) / 3 , D );
1045
- demod_9600_process_sample (chan , (prev_sam + 2 * sam ) / 3 , D );
1046
- demod_9600_process_sample (chan , sam , D );
1047
- break ;
1048
- case 4 :
1049
- demod_9600_process_sample (chan , (3 * prev_sam + sam ) / 4 , D );
1050
- demod_9600_process_sample (chan , (prev_sam + sam ) / 2 , D );
1051
- demod_9600_process_sample (chan , (prev_sam + 3 * sam ) / 4 , D );
1052
- demod_9600_process_sample (chan , sam , D );
1053
- break ;
1054
- default :
1055
- assert (0 );
1056
- break ;
1057
- }
1058
- prev_sam = sam ;
1059
- }
1016
+ demod_9600_process_sample (chan , sam , save_audio_config_p -> achan [chan ].upsample , D );
1060
1017
break ;
1061
1018
1062
1019
} /* switch modem_type */
0 commit comments