You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A list of codecs to use for dialplan-originated calls can
now be specified in Originate, similar to the ability
in call files and the manager action.
Additionally, we now default to just using the slin codec
for originated calls, rather than all the slin* codecs up
through slin192, which has been known to cause issues
and inconsistencies from AMI and call file behavior.
ASTERISK-29543
Change-Id: I96a1aeb83d54b635b7a51e1b4680f03791622883
<para>This application originates an outbound call and connects it to a specified extension or application. This application will block until the outgoing call fails or gets answered. At that point, this application will exit with the status variable set and dialplan processing will continue.</para>
121
+
<para>This application originates an outbound call and connects it to a specified extension or application. This application will block until the outgoing call fails or gets answered, unless the async option is used. At that point, this application will exit with the status variable set and dialplan processing will continue.</para>
118
122
<para>This application sets the following channel variable before exiting:</para>
119
123
<variablelist>
120
124
<variable name="ORIGINATE_STATUS">
@@ -141,14 +145,16 @@ enum {
141
145
OPT_ASYNC= (1 << 2),
142
146
OPT_CALLER_NUM= (1 << 3),
143
147
OPT_CALLER_NAME= (1 << 4),
144
-
OPT_VARIABLES= (1 << 5),
148
+
OPT_CODECS= (1 << 5),
149
+
OPT_VARIABLES= (1 << 6),
145
150
};
146
151
147
152
enum {
148
153
OPT_ARG_PREDIAL_CALLEE,
149
154
OPT_ARG_PREDIAL_CALLER,
150
155
OPT_ARG_CALLER_NUM,
151
156
OPT_ARG_CALLER_NAME,
157
+
OPT_ARG_CODECS,
152
158
OPT_ARG_VARIABLES,
153
159
/* note: this entry _MUST_ be the last one in the enum */
0 commit comments