mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Reserving flags for coming code (currently in the "videocaps" branch)
implementing T.140 support in RTP. T.140/RFC 4351 is TDD over IP - text telephony for hearing impaired. It defines a realtime text chat, much like the old "talk" application in Unix. T.140 is character by character in real time. It's not the same as our current MESSAGE format - that is more like IM, but can be gatewayed to MESSAGE with a text "codec" if needed. More patches will follow, as soon as we've separated this code from the video capabilities functions in the videocaps branch. Code by John Martin, Aupix (disclaimer on file) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48258 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1408,6 +1408,7 @@ static struct {
|
||||
{{1, AST_FORMAT_H263}, "video", "H263"},
|
||||
{{1, AST_FORMAT_H263_PLUS}, "video", "h263-1998"},
|
||||
{{1, AST_FORMAT_H264}, "video", "H264"},
|
||||
{{1, AST_FORMAT_T140}, "text", "T140"},
|
||||
};
|
||||
|
||||
/* Static (i.e., well-known) RTP payload types for our "AST_FORMAT..."s:
|
||||
@@ -1439,6 +1440,7 @@ static struct rtpPayloadType static_RTP_PT[MAX_RTP_PT] = {
|
||||
[97] = {1, AST_FORMAT_ILBC},
|
||||
[99] = {1, AST_FORMAT_H264},
|
||||
[101] = {0, AST_RTP_DTMF},
|
||||
[102] = {0, AST_FORMAT_T140}, /* Real time text chat */
|
||||
[110] = {1, AST_FORMAT_SPEEX},
|
||||
[111] = {1, AST_FORMAT_G726},
|
||||
[112] = {1, AST_FORMAT_G726_AAL2},
|
||||
|
||||
Reference in New Issue
Block a user