dect
/
asterisk
Archived
13
0
Fork 0

update the rest of the channel drivers that use RTP so that their channel

tech structures indicate that they create jitter


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31077 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-05-31 17:21:21 +00:00
parent 88f656f5f5
commit 1266abd232
4 changed files with 4 additions and 3 deletions

View File

@ -211,7 +211,7 @@ static const struct ast_channel_tech oh323_tech = {
.type = "H323",
.description = tdesc,
.capabilities = ((AST_FORMAT_MAX_AUDIO << 1) - 1),
.properties = AST_CHAN_TP_WANTSJITTER,
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
.requester = oh323_request,
.send_digit = oh323_digit,
.call = oh323_call,

View File

@ -191,6 +191,7 @@ static const struct ast_channel_tech jingle_tech = {
.indicate = jingle_indicate,
.fixup = jingle_fixup,
.send_html = jingle_sendhtml,
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER
};
static struct sockaddr_in bindaddr = { 0, }; /*!< The address we bind to */

View File

@ -503,7 +503,7 @@ static const struct ast_channel_tech mgcp_tech = {
.type = "MGCP",
.description = tdesc,
.capabilities = AST_FORMAT_ULAW,
.properties = AST_CHAN_TP_WANTSJITTER,
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
.requester = mgcp_request,
.devicestate = mgcp_devicestate,
.call = mgcp_call,

View File

@ -909,7 +909,7 @@ static const struct ast_channel_tech skinny_tech = {
.type = "Skinny",
.description = tdesc,
.capabilities = AST_FORMAT_ULAW,
.properties = AST_CHAN_TP_WANTSJITTER,
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
.requester = skinny_request,
.call = skinny_call,
.hangup = skinny_hangup,