mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 04:46:29 +00:00
update the rest of the channel drivers that use RTP so that their channel
tech structures indicate that they create jitter git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31077 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -211,7 +211,7 @@ static const struct ast_channel_tech oh323_tech = {
|
|||||||
.type = "H323",
|
.type = "H323",
|
||||||
.description = tdesc,
|
.description = tdesc,
|
||||||
.capabilities = ((AST_FORMAT_MAX_AUDIO << 1) - 1),
|
.capabilities = ((AST_FORMAT_MAX_AUDIO << 1) - 1),
|
||||||
.properties = AST_CHAN_TP_WANTSJITTER,
|
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
|
||||||
.requester = oh323_request,
|
.requester = oh323_request,
|
||||||
.send_digit = oh323_digit,
|
.send_digit = oh323_digit,
|
||||||
.call = oh323_call,
|
.call = oh323_call,
|
||||||
|
@@ -191,6 +191,7 @@ static const struct ast_channel_tech jingle_tech = {
|
|||||||
.indicate = jingle_indicate,
|
.indicate = jingle_indicate,
|
||||||
.fixup = jingle_fixup,
|
.fixup = jingle_fixup,
|
||||||
.send_html = jingle_sendhtml,
|
.send_html = jingle_sendhtml,
|
||||||
|
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct sockaddr_in bindaddr = { 0, }; /*!< The address we bind to */
|
static struct sockaddr_in bindaddr = { 0, }; /*!< The address we bind to */
|
||||||
|
@@ -503,7 +503,7 @@ static const struct ast_channel_tech mgcp_tech = {
|
|||||||
.type = "MGCP",
|
.type = "MGCP",
|
||||||
.description = tdesc,
|
.description = tdesc,
|
||||||
.capabilities = AST_FORMAT_ULAW,
|
.capabilities = AST_FORMAT_ULAW,
|
||||||
.properties = AST_CHAN_TP_WANTSJITTER,
|
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
|
||||||
.requester = mgcp_request,
|
.requester = mgcp_request,
|
||||||
.devicestate = mgcp_devicestate,
|
.devicestate = mgcp_devicestate,
|
||||||
.call = mgcp_call,
|
.call = mgcp_call,
|
||||||
|
@@ -909,7 +909,7 @@ static const struct ast_channel_tech skinny_tech = {
|
|||||||
.type = "Skinny",
|
.type = "Skinny",
|
||||||
.description = tdesc,
|
.description = tdesc,
|
||||||
.capabilities = AST_FORMAT_ULAW,
|
.capabilities = AST_FORMAT_ULAW,
|
||||||
.properties = AST_CHAN_TP_WANTSJITTER,
|
.properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
|
||||||
.requester = skinny_request,
|
.requester = skinny_request,
|
||||||
.call = skinny_call,
|
.call = skinny_call,
|
||||||
.hangup = skinny_hangup,
|
.hangup = skinny_hangup,
|
||||||
|
Reference in New Issue
Block a user