Tweak the silence infill parameters a little more.

This commit is contained in:
Jonathan Naylor 2016-08-09 21:20:25 +01:00
parent 3214cf8504
commit c67f8e861a

View file

@ -1249,7 +1249,7 @@ void CDMRSlot::clock()
if (frames > m_netFrames) {
unsigned int count = frames - m_netFrames;
if (count > 5U) {
if (count > 3U) {
LogDebug("DMR Slot %u, lost audio for 300ms filling in, elapsed: %ums, expected: %u, received: %u", m_slotNo, elapsed, frames, m_netFrames);
insertSilence(count - 1U);
}