Revision: 19661
http://opalvoip.svn.sourceforge.net/opalvoip/?rev=19661&view=rev
Author: csoutheren
Date: 2008-03-03 19:46:39 -0800 (Mon, 03 Mar 2008)
Log Message:
-----------
Fix sending RFC2833
Modified Paths:
--------------
opal/trunk/src/opal/connection.cxx
Modified: opal/trunk/src/opal/connection.cxx
===================================================================
--- opal/trunk/src/opal/connection.cxx 2008-03-04 03:13:08 UTC (rev 19660)
+++ opal/trunk/src/opal/connection.cxx 2008-03-04 03:46:39 UTC (rev 19661)
@@ -1071,9 +1071,10 @@
}
-void OpalConnection::OnUserInputInlineRFC2833(OpalRFC2833Info & info, INT)
+void OpalConnection::OnUserInputInlineRFC2833(OpalRFC2833Info & info, INT type)
{
- if (!info.IsToneStart())
+ // trigger on end of tone
+ if (type == 0)
OnUserInputTone(info.GetTone(), info.GetDuration()/8);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|