[asterisk-bugs] [JIRA] (ASTERISK-27139) pjsip: SDP attribute ptime ignored when Asterisk bridges two PJSIP channels with different ptime

Rusty Newton (JIRA) noreply at issues.asterisk.org
Thu Jul 20 11:02:57 CDT 2017


     [ https://issues.asterisk.org/jira/browse/ASTERISK-27139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rusty Newton updated ASTERISK-27139:
------------------------------------

    Summary: pjsip: SDP attribute ptime ignored when Asterisk bridges two PJSIP channels with different ptime  (was: pjsip: SDP attribute ptime ignored)

> pjsip: SDP attribute ptime ignored when Asterisk bridges two PJSIP channels with different ptime
> ------------------------------------------------------------------------------------------------
>
>                 Key: ASTERISK-27139
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-27139
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Resources/res_pjsip
>    Affects Versions: 13.13.1, GIT
>            Reporter: Lars Martensen
>
> When Asterisk bridges two channels of type pjsip which use different packetization intervals (set with ptime attribute in SDP) Asterisk switches to native_rtp bridge:
> {noformat}
>     -- Called PJSIP/router00
>     -- PJSIP/router00-00000003 is ringing
>     -- PJSIP/router00-00000003 answered PJSIP/pbx-00000002
>     -- Channel PJSIP/router00-00000003 joined 'simple_bridge' basic-bridge <ea10bc71-dd87-452e-995e-8dd7c811f449>
>     -- Channel PJSIP/pbx-00000002 joined 'simple_bridge' basic-bridge <ea10bc71-dd87-452e-995e-8dd7c811f449>
>        > Bridge ea10bc71-dd87-452e-995e-8dd7c811f449: switching from simple_bridge technology to native_rtp
>        > Locally RTP bridged 'PJSIP/pbx-00000002' and 'PJSIP/router00-00000003' in stack
> {noformat}
> The channels then receive RTP packets with an unexpected size (e.g. 30ms instead of 20ms or vice versa). I would expect that Asterisk stays with simple_bridge because of the differences in packet size.
> It seems that the function {{native_rtp_bridge_compatible}} actively guards against this to happen:
> {noformat}
>         read_ptime0 = ast_format_cap_get_format_framing(cap0, ast_channel_rawreadformat(bc0->chan));
> 	read_ptime1 = ast_format_cap_get_format_framing(cap1, ast_channel_rawreadformat(bc1->chan));
> 	write_ptime0 = ast_format_cap_get_format_framing(cap0, ast_channel_rawwriteformat(bc0->chan));
> 	write_ptime1 = ast_format_cap_get_format_framing(cap1, ast_channel_rawwriteformat(bc1->chan));
> 	if (read_ptime0 != write_ptime1 || read_ptime1 != write_ptime0) {
> 		ast_debug(1, "Packetization differs between RTP streams (%d != %d or %d != %d). Cannot native bridge in RTP\n",
> 				read_ptime0, write_ptime1, read_ptime1, write_ptime0);
> 		return 0;
> 	}
> {noformat}
> But the function {{get_codecs}} in {{res_pjsip_sdp_rtp.c}} uses {{ast_rtp_codecs_set_framing}}:
> {noformat}
> /* Get the packetization, if it exists */
> 	if ((attr = pjmedia_sdp_media_find_attr2(stream, "ptime", NULL))) {
> 		unsigned long framing = pj_strtoul(pj_strltrim(&attr->value));
> 		if (framing && session->endpoint->media.rtp.use_ptime) {
> 			ast_rtp_codecs_set_framing(codecs, framing);
> 		}
> 	}
> {noformat}
> In chan_sip this scenario works as expected, probably because function {{process_sdp_a_audio}} uses a different function to store the framing (which is what {{native_rtp_bridge_compatible}} expects):
> {noformat}
> if (framing && p->autoframing) {
>   ast_debug(1, "Setting framing to %ld\n", framing);
>   ast_format_cap_set_framing(p->caps, framing);
> }
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.2#6252)



More information about the asterisk-bugs mailing list