Skip to content
Snippets Groups Projects
Commit c3ca1cde authored by Damian Minkov's avatar Damian Minkov
Browse files

Fixes dtmf minimal tone duration.

parent 212e784e
No related branches found
No related tags found
No related merge requests found
......@@ -327,7 +327,7 @@ else if(toneTransmissionState == ToneTransmissionState.SENDING
if (currentDuration > 0xFFFF)
{
// When duration > 0xFFFF we first send a packet with duration =
// 0xFFFF. For the next packet, the duration start from begining
// 0xFFFF. For the next packet, the duration start from beginning
// but the audioPacketTimestamp is set to the time when the long
// duration event occurs.
pktDuration = 0xFFFF;
......@@ -371,6 +371,14 @@ else if(toneTransmissionState
}
}
// skip packets before reaching minimal duration
if(minimalToneDuration != -1
&& currentDuration < minimalToneDuration)
{
// do not send packets
return null;
}
dtmfPkt.init(
toneCode,
pktEnd,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment