From 61826e4feeb876785147d6e054728de25c1567a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 6 Oct 2010 12:36:45 -0400 Subject: [PATCH] StreamHandler: Add signal specifying the type of DTMF event to send Some protocols specify the type of DTMF event send and the payload type just at the time when the are sent. This signal should make these easier to implement. --- Makefile | 2 +- spec/Media_Stream_Handler.xml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index c0b75df..ab9263e 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ XSLTPROC = xsltproc --xinclude --nonet CANONXML = xmllint --nsclean --noblanks --c14n --nonet XML_LINEBREAKS = perl -pe 's/>/>\n/g' DROP_NAMESPACE = perl -pe '$$hash = chr(35); s{xmlns:tp="http://telepathy\.freedesktop\.org/wiki/DbusSpec$${hash}extensions-v0"}{}g' -RST2HTML = rst2html +RST2HTML = rst2html.py PYTHON = python XMLS = $(wildcard spec/*.xml) diff --git a/spec/Media_Stream_Handler.xml b/spec/Media_Stream_Handler.xml index c9ae78f..2f08fa2 100644 --- a/spec/Media_Stream_Handler.xml +++ b/spec/Media_Stream_Handler.xml @@ -523,6 +523,40 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + + Automatically chose the type of event to send + + + Send using RTP packets as defined in RFC 4733 + + + Send as sound + + + + + + A telephony event code as defined by RFC 4733. + + + + + The type of event to send + + + + + The payload type to sent events of Type "RTP_RFC473 + + + + Request that a telephony event (as defined by RFC 4733) is transmitted + over this stream until StopTelephonyEvent is called. This differs from + StartTelephonyEvent in that you can specify how to send the event. + + -- 1.7.2.2