Enabling jitter buffer: Difference between revisions

From MiRTA PBX documentation
Jump to navigation Jump to search
(Created page with "Jitter buffer is not enabled by default, but in case of network problems, it can be enabled to improve the call quality despite a n higher call latency. To enable it you need...")
 
No edit summary
Line 17: Line 17:
jbmaxsize=1000
jbmaxsize=1000
jbimp=adaptive
jbimp=adaptive
</post>
</pre>
 
Once the jitter buffer has been activated in sip.conf, you need to reload the sip module using:
 
<pre>
asterisk -rx 'sip reload'
</pre>

Revision as of 09:50, 12 July 2016

Jitter buffer is not enabled by default, but in case of network problems, it can be enabled to improve the call quality despite a n higher call latency.

To enable it you need to edit /etc/asterisk/sip.conf, adding one of more of the following commands:

jbenable = yes|no : Enables the use of a jitterbuffer on the receiving side of a SIP channel.
jbforce = yes|no : Forces the use of a jitterbuffer on the receive side of a SIP channel. 
jbmaxsize = Number : Max length of the jitterbuffer in milliseconds. 
jbimpl = fixed|adaptive: Jitterbuffer implementation, used on the receiving side of a SIP channel. Two implementations are currently available - "fixed" (with size always equals to jbmaxsize) and "adaptive" (with variable size). 

A typical activation includes:

jbenable=yes
jbforce=no
jbmaxsize=1000
jbimp=adaptive

Once the jitter buffer has been activated in sip.conf, you need to reload the sip module using:

asterisk -rx 'sip reload'