summaryrefslogtreecommitdiff
path: root/doc/realtimetext.txt
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-11-11 22:14:25 +0000
committerRussell Bryant <russell@russellbryant.com>2010-11-11 22:14:25 +0000
commit893ca656af419e58c8dd675274d4a4d59b22cc03 (patch)
tree8b9307baeee40cb5429b1fada5b3da28ec15b536 /doc/realtimetext.txt
parent99a698efb7c0bc8548c032b37692da8ec13be9ea (diff)
Merged revisions 294740 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r294740 | russell | 2010-11-11 16:13:38 -0600 (Thu, 11 Nov 2010) | 11 lines Remove most of the contents of the doc dir in favor of the wiki content. This merge does the following things: * Removes most of the contents from the doc/ directory in favor of the wiki - http://wiki.asterisk.org/ * Updates the build_tools/prep_tarball script to know how to export the contents of the wiki in both PDF and plain text formats so that the documentation is still included in Asterisk release tarballs. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@294741 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'doc/realtimetext.txt')
-rw-r--r--doc/realtimetext.txt84
1 files changed, 0 insertions, 84 deletions
diff --git a/doc/realtimetext.txt b/doc/realtimetext.txt
deleted file mode 100644
index a6b350891..000000000
--- a/doc/realtimetext.txt
+++ /dev/null
@@ -1,84 +0,0 @@
-Real-time text in Asterisk
---------------------------
-The SIP channel has support for real-time text conversation calls in Asterisk (T.140).
-This is a way to perform text based conversations in combination with other media,
-most often video. The text is sent character by character as a media stream.
-
-During a call sometimes there are losses of T.140 packets and a solution to that is to
-use redundancy in the media stream (RTP).
-See "http://en.wikipedia.org/wiki/Text_over_IP"http://en.wikipedia.org/wiki/Text_over_IP
-and RFC 5194 for more information.
-
-The supported real-time text codec is t.140.
-Real-time text redundancy support is now available in Asterisk.
-
-ITU-T T.140
------------
-You can find more information about T.140 at www.itu.int. RTP is used for the transport T.140,
-as specified in RFC 4103.
-
-How to enable T.140
--------------------
-In order to enable real-time text with redundancy in Asterisk, modify sip.conf to add:
-
- [general]
- disallow=all
- allow=ulaw
- allow = alaw
- allow=t140
- allow=t140red
- textsupport=yes
- videosupport=yes ; needed for proper SDP handling even if only text and voice calls are handled
- allow=h263 ; at least one video codec as H.261, H.263 or H.263+ is needed.
-
-The codec settings may change, depending on your phones. The important settings here are to allow
-t140 and 140red and enable text support.
-
-General information about real-time text support in Asterisk
-------------------------------------------------------------
-With the configuration above, calls will be supported with any combination of real-time text,
-audio and video.
-
-Text for both t140 and t140red is handled on channel and application level in Asterisk conveyed in
-Text frames, with the subtype "t140". Text is conveyed in such frames usually only containing one or
-a few characters from the real-time text flow. The packetization interval is 300 ms, handled on lower
-RTP level, and transmission redundancy level is 2, causing one original and two redundant transmissions
-of all text so that it is reliable even in high packet loss situations. Transmitting applications do not
-need to bother about the transmission interval. The t140red support handles any buffering needed during
-the packetization intervals.
-
-Clients known to support text, audio/text or audio/video/text calls with Asterisk:
-----------------------------------------------------------------------------------
-
-- Omnitor Allan eC - SIP audio/video/text softphone
-- AuPix APS-50 - audio/video/text softphone.
-- France Telecom eConf –audio/video/text softphone.
-- SIPcon1 - open source SIP audio/text softphone available in Sourceforge.
-
-
-Limitations
------------
-
-A known general problem with Asterisk is that when a client which uses audio/video/T.140 calls to
-an Asterisk with T.140 media offered but video support not specified. In this case Asterisk handles
-the sdp media description (m=) incorrectly, and the sdp response is not created correctly.
-To solve this problem, turn on video support in Asterisk.
-
-Modify sip.conf to add
- [general]
- videosupport=yes
- allow=h263 ; at least one video codec as H.261, H.263 or H.263+ is needed.
-
-The problem with sdp is a bug and is reported to Asterisk bugtracker, it has id 0012434.
-
-Credits
--------
- - Asterisk real-time text support is developed by AuPix
- - Asterisk real-time text redundancy support is developed by Omnitor
-
-The work with Asterisk real-time text redundancy was supported with funding from the National Institute
-on Disability and Rehabilitation Research (NIDRR), U.S. Department of Education, under grant number
-H133E040013 as part of a co-operation between the Telecommunication Access Rehabilitation Engineering
-Research Center of the University of Wisconsin – Trace Center joint with Gallaudet University, and Omnitor.
-Olle E. Johansson, Edvina AB, has been a liason between the Asterisk project and this project.
-