search for: set_up_outbound

Displaying 4 results from an estimated 4 matches for "set_up_outbound".

2015 Jan 30
2
JITTERBUFFER function
...almost always a bad implementation decision). If you need it on an outbound channel, that means using one of the pre-dial handlers (https://wiki.asterisk.org/wiki/display/AST/Pre-Dial+Handlers) to place the jitter buffer on the outbound channel after its creation. Example: [default] exten => set_up_outbound,1,NoOp() same => n,Set(JITTERBUFFER(adaptive)=default) same => n,Return() exten => outbound_dial,1,NoOp() same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1)) ... -- Matthew Jordan Digium, Inc. | Engineering Manager 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA Check us ou...
2015 Jan 29
2
JITTERBUFFER function
Hello! I am going to use the JITTERBUFFER function in a SIP (and local channels) only setup, but have some questions of how to use it: 1. Do I need to activate jbenable in sip.conf? Or is it enough to call the JITTERBUFFER function? 2. What is the preferred way to invoke this function? Say I have channel A which is not in need of buffering, while channel B do need it. If A
2015 Jan 29
0
JITTERBUFFER function
...almost always a bad implementation decision). If you need it on an outbound channel, that means using one of the pre-dial handlers (https://wiki.asterisk.org/wiki/display/AST/Pre-Dial+Handlers) to place the jitter buffer on the outbound channel after its creation. Example: [default] exten => set_up_outbound,1,NoOp() same => n,Set(JITTERBUFFER(adaptive)=default) same => n,Return() exten => outbound_dial,1,NoOp() same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1)) ... -- Matthew Jordan Digium, Inc. | Engineering Manager 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA Check u...
2015 Jan 29
1
JITTERBUFFER function
...on). If you need it on an outbound channel, > that means using one of the pre-dial handlers > (https://wiki.asterisk.org/wiki/display/AST/Pre-Dial+Handlers) to > place the jitter buffer on the outbound channel after its creation. > > Example: > > [default] > > exten => set_up_outbound,1,NoOp() > same => n,Set(JITTERBUFFER(adaptive)=default) > same => n,Return() > > exten => outbound_dial,1,NoOp() > same => n,Dial(PJSIP/Alice,,b(default^set_up_outbound^1)) > ... Perfect, then I guessed correctly. :) I actually looked at the JITTERBUFFER wiki pa...