[asterisk-bugs] [JIRA] (ASTERISK-25629) [patch] Native Packet-Loss Concealment (PLC)

Alexander Traud (JIRA) noreply at issues.asterisk.org
Tue Oct 18 10:21:01 CDT 2016


    [ https://issues.asterisk.org/jira/browse/ASTERISK-25629?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=232765#comment-232765 ] 

Alexander Traud commented on ASTERISK-25629:
--------------------------------------------

You found a bug for sure. Now, the cause must be found. In your case, the lost/late-packet detection does not work because the RTP sequence numbers do not advance as expected. Please, describe your setup in greater detail, for example which channel driver you are using, like {{chan_sip}} or {{res_pjsip}}. The remote party, what is it, an Asterisk as well or a VoIP/SIP phone? If possible capture the RTP packets via [Wireshark|https://www.wireshark.org/#download] and look into the sequence number. Anything special? And so on … Apple summarized the parts which constitutes a [good issue report…|http://web.archive.org/web/20160324163652/https://developer.apple.com/bug-reporting/using-bug-reporter/problem-detail/] If you cannot debug this yourself, I must be able to reproduce your scenario within minutes, thanks to a detailed step-by-step description. If all the above is too complicated, just one question: What do you mean by in-band transfer – is that a forwarding to another extension or a special app in your dialplan?

> [patch] Native Packet-Loss Concealment (PLC)
> --------------------------------------------
>
>                 Key: ASTERISK-25629
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-25629
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Codecs/codec_ilbc, Codecs/codec_speex, Codecs/General
>    Affects Versions: 11.22.0, 13.9.1
>            Reporter: Alexander Traud
>            Assignee: Alexander Traud
>            Severity: Minor
>         Attachments: native_plc.patch
>
>
> In VoIP/SIP, the RTP media is transferred not via reliable TCP but [UDP|https://en.wikipedia.org/wiki/User_Datagram_Protocol#Comparison_of_UDP_and_TCP]. This makes sure the data arrives as fast as possible. However, because of the use of UDP, packets might never arrive or take another route via the Internet. Therefore, one packet might be faster than previous packets. Or stated differently: Packets might arrive late. In both cases, those packets are lost because they cannot be used to re-build the media stream.
> Therefore, VoIP specific audio-codecs like iLBC, Speex, and SILK/Opus are able to conceal lost packets. This is called Packet-Loss Concealment (PLC). In this case, it is called native PLC, because no additional source code must be written, but the underlying library supports this already. Additionally, Asterisk offers generic PLC while writing Signed-Linear.
> To conceal packet-loss, the codec library must be aware that a packet got lost. Furthermore because RTP packets inter-depent, late packets must not be forwarded to the library not to confuse its state. If a late packet arrives, the library would not know that it has to discard it, because the library does not know its RTP sequence number. The VoIP application – in our case Asterisk – has to discard late packets and indicate lost packets to the library. This is true for iLBC, Speex, SILK, and Opus Codec.
> Long story short: In contrast to [the documentation|https://wiki.asterisk.org/wiki/pages/viewpage.action?pageId=5243109], native PLC does not happen. Without or with a jitter buffer.
> All Long-Term-Support releases (including Asterisk 1.8.32.3, Asterisk 1.4.44, and Asterisk 1.2.40) were re-tested with a simple setup: Two Wi-Fi access points bridged via Ethernet to the same DHCP server, using the same SSID, and just WPA2-Personal but sending on different 2,4 GHz channels (Wi-Fi Roaming). Plus a Wi-Fi enabled VoIP/SIP client, moving around those access point. Whenever the Wi-Fi client changes the access point, it has to authenticate again. That creates packet loss of about one to several dozen packets. In those Asterisk releases, their iLBC transcoding module was passed. The backtrace is
> main/channel.c:ast_read(.)
>   main/translate.c:ast_translate(.)
>     main/translate.c:framein(.)
>       codecs/codec_ilbc.c:framein(.)
> but native PLC was not done, because there was no indication of lost packets. Furthermore, late packets were not dropped but forwarded as usual packets. Those packets with unexpected RTP sequence numbers were double-checked via Wireshark » Menu » Telephony » RTP » Show All Streams » Analyse » Next non-OK.



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



More information about the asterisk-bugs mailing list