Skip to content

Commit 9b9744b

Browse files
committed
Speed up 9600 demodulator.
1 parent 049614d commit 9b9744b

File tree

4 files changed

+181
-129
lines changed

4 files changed

+181
-129
lines changed

src/demod.c

+21-64
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
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
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -60,10 +60,6 @@
6060
static struct audio_s *save_audio_config_p;
6161

6262

63-
// TODO: temp experiment.
64-
65-
66-
static int zerostuff = 1; // temp experiment.
6763

6864
// Current state of all the decoders.
6965

@@ -676,12 +672,6 @@ int demod_init (struct audio_s *pa)
676672
strlcpy (save_audio_config_p->achan[chan].profiles, "+", sizeof(save_audio_config_p->achan[chan].profiles));
677673
}
678674

679-
680-
#ifdef TUNE_ZEROSTUFF
681-
zerostuff = TUNE_ZEROSTUFF;
682-
#endif
683-
684-
685675
/*
686676
* We need a minimum number of audio samples per bit time for good performance.
687677
* 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)
696686

697687
if (save_audio_config_p->achan[chan].upsample == 0) {
698688

699-
if (ratio < 5) {
689+
if (ratio < 4) {
700690

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.
706695

707696
save_audio_config_p->achan[chan].upsample = 4;
708697
}
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+
}
709705
else if (ratio < 10) {
710706

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.
713709

714-
save_audio_config_p->achan[chan].upsample = 4;
710+
save_audio_config_p->achan[chan].upsample = 3;
715711
}
716712
else if (ratio < 15) {
717713

718-
// ...
714+
// ... guessing
719715

720716
save_audio_config_p->achan[chan].upsample = 2;
721717
}
@@ -786,7 +782,8 @@ int demod_init (struct audio_s *pa)
786782
}
787783

788784
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,
790787
save_audio_config_p->achan[chan].baud, D);
791788

792789
if (strchr(save_audio_config_p->achan[chan].profiles, '+') != NULL) {
@@ -924,7 +921,7 @@ __attribute__((hot))
924921
void demod_process_sample (int chan, int subchan, int sam)
925922
{
926923
float fsam;
927-
int k;
924+
//int k;
928925

929926

930927
struct demodulator_state_s *D;
@@ -1016,47 +1013,7 @@ void demod_process_sample (int chan, int subchan, int sam)
10161013
case MODEM_AIS:
10171014
default:
10181015

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);
10601017
break;
10611018

10621019
} /* switch modem_type */

0 commit comments

Comments
 (0)