diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-03-15 15:41:05 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-03-15 15:41:05 +0100 |
commit | 02c751e4e714b1aa4b4c93699b992d522fd3e9ca (patch) | |
tree | a123af41aba0bc3ef381b7bc9f14c9fd080e9dc5 /lib/edioutput/Transport.cpp | |
parent | cdeded18deb9ef2a12bf5206757f235e3925c848 (diff) | |
download | ODR-SourceCompanion-02c751e4e714b1aa4b4c93699b992d522fd3e9ca.tar.gz ODR-SourceCompanion-02c751e4e714b1aa4b4c93699b992d522fd3e9ca.tar.bz2 ODR-SourceCompanion-02c751e4e714b1aa4b4c93699b992d522fd3e9ca.zip |
Common c90e505: Fix EDI UDP packet spreading set to 0
Diffstat (limited to 'lib/edioutput/Transport.cpp')
-rw-r--r-- | lib/edioutput/Transport.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/edioutput/Transport.cpp b/lib/edioutput/Transport.cpp index 136c71c..274f7ec 100644 --- a/lib/edioutput/Transport.cpp +++ b/lib/edioutput/Transport.cpp @@ -135,14 +135,17 @@ void Sender::write(const TagPacket& tagpacket) edi_fragments.size()); } - /* Spread out the transmission of all fragments over 25% of the 24ms AF packet duration + /* Spread out the transmission of all fragments over part of the 24ms AF packet duration * to reduce the risk of losing a burst of fragments because of congestion. */ using namespace std::chrono; - auto inter_fragment_wait_time = microseconds(0); + auto inter_fragment_wait_time = microseconds(1); if (edi_fragments.size() > 1) { - inter_fragment_wait_time = microseconds( - llrint(m_conf.fragment_spreading_factor * 24000.0 / edi_fragments.size()) - ); + if (m_conf.fragment_spreading_factor > 0) { + inter_fragment_wait_time = + microseconds( + llrint(m_conf.fragment_spreading_factor * 24000.0 / edi_fragments.size()) + ); + } } /* Separate insertion into map and transmission so as to make spreading possible */ |