Yate Community Forum

Yate server => Yate bugs => Topic started by: Barmashov on October 01, 2013, 03:45:51 AM

Title: Yate loses DTMF digits received by RFC2833
Post by: Barmashov on October 01, 2013, 03:45:51 AM
Hello!
I use Yate with IVR to connect with SIP accounts for incoming calls.
I encountered a problem: a few quick press same button on the phone Yate perceived as one.
I think there is a bug in the function bool RTPReceiver::decodeEvent from file
libs/yrtp/session.cpp

Line 332 with condition
if ((m_evNum != event) && (m_evTs <= timestamp))
I rewrite to
if ((m_evNum != event) || (m_evTs < timestamp))