blob: 234833b6ef32963861b44ac0e9e6a01b275749d1 [file] [log] [blame]
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
Benny Prijono32177c02008-06-20 22:44:47 +00004 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijonoeebe9af2006-06-13 22:57:13 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include <pjsua-lib/pjsua.h>
21#include <pjsua-lib/pjsua_internal.h>
22
23
24#define THIS_FILE "pjsua_media.c"
25
Nanang Izzuddin68559c32008-06-13 17:01:46 +000026#define DEFAULT_RTP_PORT 4000
27
28#define NULL_SND_DEV_ID -99
Benny Prijono80eee892007-11-03 22:43:23 +000029
30#ifndef PJSUA_REQUIRE_CONSECUTIVE_RTCP_PORT
31# define PJSUA_REQUIRE_CONSECUTIVE_RTCP_PORT 0
32#endif
33
Benny Prijonoeebe9af2006-06-13 22:57:13 +000034
Benny Prijonode479562007-03-15 10:23:55 +000035/* Next RTP port to be used */
36static pj_uint16_t next_rtp_port;
Benny Prijonoeebe9af2006-06-13 22:57:13 +000037
Benny Prijonof798e502009-03-09 13:08:16 +000038/* Open sound dev */
39static pj_status_t open_snd_dev(pjmedia_aud_param *param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000040/* Close existing sound device */
41static void close_snd_dev(void);
Benny Prijonof798e502009-03-09 13:08:16 +000042/* Create audio device param */
43static pj_status_t create_aud_param(pjmedia_aud_param *param,
44 pjmedia_aud_dev_index capture_dev,
45 pjmedia_aud_dev_index playback_dev,
46 unsigned clock_rate,
47 unsigned channel_count,
48 unsigned samples_per_frame,
49 unsigned bits_per_sample);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000050
51
Benny Prijonof76e1392008-06-06 14:51:48 +000052static void pjsua_media_config_dup(pj_pool_t *pool,
53 pjsua_media_config *dst,
54 const pjsua_media_config *src)
55{
56 pj_memcpy(dst, src, sizeof(*src));
57 pj_strdup(pool, &dst->turn_server, &src->turn_server);
58 pj_stun_auth_cred_dup(pool, &dst->turn_auth_cred, &src->turn_auth_cred);
59}
60
Benny Prijonoeebe9af2006-06-13 22:57:13 +000061/**
62 * Init media subsystems.
63 */
64pj_status_t pjsua_media_subsys_init(const pjsua_media_config *cfg)
65{
Benny Prijonoba5926a2007-05-02 11:29:37 +000066 pj_str_t codec_id = {NULL, 0};
Benny Prijono0498d902006-06-19 14:49:14 +000067 unsigned opt;
Benny Prijonoeebe9af2006-06-13 22:57:13 +000068 pj_status_t status;
69
Benny Prijonofc24e692007-01-27 18:31:51 +000070 /* To suppress warning about unused var when all codecs are disabled */
71 PJ_UNUSED_ARG(codec_id);
72
Benny Prijonof798e502009-03-09 13:08:16 +000073 /* Specify which audio device settings are save-able */
74 pjsua_var.aud_svmask = 0xFFFFFFFF;
75 /* These are not-settable */
76 pjsua_var.aud_svmask &= ~(PJMEDIA_AUD_DEV_CAP_EXT_FORMAT |
77 PJMEDIA_AUD_DEV_CAP_INPUT_SIGNAL_METER |
78 PJMEDIA_AUD_DEV_CAP_OUTPUT_SIGNAL_METER);
Benny Prijonoe506c8c2009-03-10 13:28:43 +000079 /* EC settings use different API */
80 pjsua_var.aud_svmask &= ~(PJMEDIA_AUD_DEV_CAP_EC |
81 PJMEDIA_AUD_DEV_CAP_EC_TAIL);
Benny Prijonof798e502009-03-09 13:08:16 +000082
Benny Prijonoeebe9af2006-06-13 22:57:13 +000083 /* Copy configuration */
Benny Prijonof76e1392008-06-06 14:51:48 +000084 pjsua_media_config_dup(pjsua_var.pool, &pjsua_var.media_cfg, cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000085
86 /* Normalize configuration */
Benny Prijono50f19b32008-03-11 13:15:43 +000087 if (pjsua_var.media_cfg.snd_clock_rate == 0) {
88 pjsua_var.media_cfg.snd_clock_rate = pjsua_var.media_cfg.clock_rate;
89 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +000090
91 if (pjsua_var.media_cfg.has_ioqueue &&
92 pjsua_var.media_cfg.thread_cnt == 0)
93 {
94 pjsua_var.media_cfg.thread_cnt = 1;
95 }
96
97 if (pjsua_var.media_cfg.max_media_ports < pjsua_var.ua_cfg.max_calls) {
98 pjsua_var.media_cfg.max_media_ports = pjsua_var.ua_cfg.max_calls + 2;
99 }
100
101 /* Create media endpoint. */
102 status = pjmedia_endpt_create(&pjsua_var.cp.factory,
103 pjsua_var.media_cfg.has_ioqueue? NULL :
104 pjsip_endpt_get_ioqueue(pjsua_var.endpt),
105 pjsua_var.media_cfg.thread_cnt,
106 &pjsua_var.med_endpt);
107 if (status != PJ_SUCCESS) {
108 pjsua_perror(THIS_FILE,
109 "Media stack initialization has returned error",
110 status);
111 return status;
112 }
113
114 /* Register all codecs */
Nanang Izzuddin493a8db2008-08-15 13:17:39 +0000115
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000116#if PJMEDIA_HAS_SPEEX_CODEC
117 /* Register speex. */
Nanang Izzuddin9dbad152008-06-10 18:56:10 +0000118 status = pjmedia_codec_speex_init(pjsua_var.med_endpt,
119 0,
120 pjsua_var.media_cfg.quality,
121 -1);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000122 if (status != PJ_SUCCESS) {
123 pjsua_perror(THIS_FILE, "Error initializing Speex codec",
124 status);
125 return status;
126 }
Benny Prijono7ca96da2006-08-07 12:11:40 +0000127
128 /* Set speex/16000 to higher priority*/
129 codec_id = pj_str("speex/16000");
130 pjmedia_codec_mgr_set_codec_priority(
131 pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt),
132 &codec_id, PJMEDIA_CODEC_PRIO_NORMAL+2);
133
134 /* Set speex/8000 to next higher priority*/
135 codec_id = pj_str("speex/8000");
136 pjmedia_codec_mgr_set_codec_priority(
137 pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt),
138 &codec_id, PJMEDIA_CODEC_PRIO_NORMAL+1);
139
140
141
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000142#endif /* PJMEDIA_HAS_SPEEX_CODEC */
143
Benny Prijono00cae612006-07-31 15:19:36 +0000144#if PJMEDIA_HAS_ILBC_CODEC
145 /* Register iLBC. */
146 status = pjmedia_codec_ilbc_init( pjsua_var.med_endpt,
147 pjsua_var.media_cfg.ilbc_mode);
148 if (status != PJ_SUCCESS) {
149 pjsua_perror(THIS_FILE, "Error initializing iLBC codec",
150 status);
151 return status;
152 }
153#endif /* PJMEDIA_HAS_ILBC_CODEC */
154
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000155#if PJMEDIA_HAS_GSM_CODEC
156 /* Register GSM */
157 status = pjmedia_codec_gsm_init(pjsua_var.med_endpt);
158 if (status != PJ_SUCCESS) {
159 pjsua_perror(THIS_FILE, "Error initializing GSM codec",
160 status);
161 return status;
162 }
163#endif /* PJMEDIA_HAS_GSM_CODEC */
164
165#if PJMEDIA_HAS_G711_CODEC
166 /* Register PCMA and PCMU */
167 status = pjmedia_codec_g711_init(pjsua_var.med_endpt);
168 if (status != PJ_SUCCESS) {
169 pjsua_perror(THIS_FILE, "Error initializing G711 codec",
170 status);
171 return status;
172 }
173#endif /* PJMEDIA_HAS_G711_CODEC */
174
Benny Prijono7ffd7752008-03-17 14:07:53 +0000175#if PJMEDIA_HAS_G722_CODEC
176 status = pjmedia_codec_g722_init( pjsua_var.med_endpt );
177 if (status != PJ_SUCCESS) {
178 pjsua_perror(THIS_FILE, "Error initializing G722 codec",
179 status);
180 return status;
181 }
182#endif /* PJMEDIA_HAS_G722_CODEC */
183
Benny Prijonoa4e7cdd2008-08-19 15:01:48 +0000184#if PJMEDIA_HAS_INTEL_IPP
Nanang Izzuddin493a8db2008-08-15 13:17:39 +0000185 /* Register IPP codecs */
186 status = pjmedia_codec_ipp_init(pjsua_var.med_endpt);
187 if (status != PJ_SUCCESS) {
188 pjsua_perror(THIS_FILE, "Error initializing IPP codecs",
189 status);
190 return status;
191 }
192
Benny Prijonoa4e7cdd2008-08-19 15:01:48 +0000193#endif /* PJMEDIA_HAS_INTEL_IPP */
Nanang Izzuddin493a8db2008-08-15 13:17:39 +0000194
Nanang Izzuddin81db8c72009-02-05 10:59:14 +0000195#if PJMEDIA_HAS_PASSTHROUGH_CODECS
196 /* Register passthrough codecs */
Nanang Izzuddinabf58db2009-06-30 15:02:06 +0000197 {
198 unsigned aud_idx;
199 unsigned ext_fmt_cnt = 0;
200 pjmedia_format ext_fmts[32];
201 pjmedia_codec_passthrough_setting setting;
202
203 /* List extended formats supported by audio devices */
204 for (aud_idx = 0; aud_idx < pjmedia_aud_dev_count(); ++aud_idx) {
205 pjmedia_aud_dev_info aud_info;
206 unsigned i;
207
208 status = pjmedia_aud_dev_get_info(aud_idx, &aud_info);
209 if (status != PJ_SUCCESS) {
210 pjsua_perror(THIS_FILE, "Error querying audio device info",
211 status);
212 return status;
213 }
214
215 /* Collect extended formats supported by this audio device */
216 for (i = 0; i < aud_info.ext_fmt_cnt; ++i) {
217 unsigned j;
218 pj_bool_t is_listed = PJ_FALSE;
219
220 /* See if this extended format is already in the list */
221 for (j = 0; j < ext_fmt_cnt && !is_listed; ++j) {
222 if (ext_fmts[j].id == aud_info.ext_fmt[i].id &&
223 ext_fmts[j].bitrate == aud_info.ext_fmt[i].bitrate)
224 {
225 is_listed = PJ_TRUE;
226 }
227 }
228
229 /* Put this format into the list, if it is not in the list */
230 if (!is_listed)
231 ext_fmts[ext_fmt_cnt++] = aud_info.ext_fmt[i];
232
233 pj_assert(ext_fmt_cnt <= PJ_ARRAY_SIZE(ext_fmts));
234 }
235 }
236
237 /* Init the passthrough codec with supported formats only */
238 setting.fmt_cnt = ext_fmt_cnt;
239 setting.fmts = ext_fmts;
Nanang Izzuddin873f3e42009-07-15 17:55:16 +0000240 setting.ilbc_mode = cfg->ilbc_mode;
Nanang Izzuddinabf58db2009-06-30 15:02:06 +0000241 status = pjmedia_codec_passthrough_init2(pjsua_var.med_endpt, &setting);
242 if (status != PJ_SUCCESS) {
243 pjsua_perror(THIS_FILE, "Error initializing passthrough codecs",
244 status);
245 return status;
246 }
Nanang Izzuddin81db8c72009-02-05 10:59:14 +0000247 }
248#endif /* PJMEDIA_HAS_PASSTHROUGH_CODECS */
249
Nanang Izzuddin57b88572009-04-01 12:05:34 +0000250#if PJMEDIA_HAS_G7221_CODEC
251 /* Register G722.1 codecs */
252 status = pjmedia_codec_g7221_init(pjsua_var.med_endpt);
253 if (status != PJ_SUCCESS) {
254 pjsua_perror(THIS_FILE, "Error initializing G722.1 codec",
255 status);
256 return status;
257 }
258#endif /* PJMEDIA_HAS_G7221_CODEC */
259
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000260#if PJMEDIA_HAS_L16_CODEC
261 /* Register L16 family codecs, but disable all */
262 status = pjmedia_codec_l16_init(pjsua_var.med_endpt, 0);
263 if (status != PJ_SUCCESS) {
264 pjsua_perror(THIS_FILE, "Error initializing L16 codecs",
265 status);
266 return status;
267 }
268
269 /* Disable ALL L16 codecs */
270 codec_id = pj_str("L16");
271 pjmedia_codec_mgr_set_codec_priority(
272 pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt),
273 &codec_id, PJMEDIA_CODEC_PRIO_DISABLED);
274
275#endif /* PJMEDIA_HAS_L16_CODEC */
276
277
278 /* Save additional conference bridge parameters for future
279 * reference.
280 */
Benny Prijono7d60d052008-03-29 12:24:20 +0000281 pjsua_var.mconf_cfg.channel_count = pjsua_var.media_cfg.channel_count;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000282 pjsua_var.mconf_cfg.bits_per_sample = 16;
Benny Prijono6e7c5ad2008-03-13 10:15:16 +0000283 pjsua_var.mconf_cfg.samples_per_frame = pjsua_var.media_cfg.clock_rate *
284 pjsua_var.mconf_cfg.channel_count *
285 pjsua_var.media_cfg.audio_frame_ptime /
286 1000;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000287
Benny Prijono0498d902006-06-19 14:49:14 +0000288 /* Init options for conference bridge. */
289 opt = PJMEDIA_CONF_NO_DEVICE;
290 if (pjsua_var.media_cfg.quality >= 3 &&
Benny Prijono7ca96da2006-08-07 12:11:40 +0000291 pjsua_var.media_cfg.quality <= 4)
Benny Prijono0498d902006-06-19 14:49:14 +0000292 {
293 opt |= PJMEDIA_CONF_SMALL_FILTER;
294 }
295 else if (pjsua_var.media_cfg.quality < 3) {
296 opt |= PJMEDIA_CONF_USE_LINEAR;
297 }
298
299
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000300 /* Init conference bridge. */
301 status = pjmedia_conf_create(pjsua_var.pool,
302 pjsua_var.media_cfg.max_media_ports,
303 pjsua_var.media_cfg.clock_rate,
304 pjsua_var.mconf_cfg.channel_count,
305 pjsua_var.mconf_cfg.samples_per_frame,
306 pjsua_var.mconf_cfg.bits_per_sample,
Benny Prijono0498d902006-06-19 14:49:14 +0000307 opt, &pjsua_var.mconf);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000308 if (status != PJ_SUCCESS) {
Benny Prijono50f19b32008-03-11 13:15:43 +0000309 pjsua_perror(THIS_FILE, "Error creating conference bridge",
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000310 status);
311 return status;
312 }
313
Benny Prijonof798e502009-03-09 13:08:16 +0000314 /* Are we using the audio switchboard (a.k.a APS-Direct)? */
315 pjsua_var.is_mswitch = pjmedia_conf_get_master_port(pjsua_var.mconf)
316 ->info.signature == PJMEDIA_CONF_SWITCH_SIGNATURE;
317
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000318 /* Create null port just in case user wants to use null sound. */
319 status = pjmedia_null_port_create(pjsua_var.pool,
320 pjsua_var.media_cfg.clock_rate,
321 pjsua_var.mconf_cfg.channel_count,
322 pjsua_var.mconf_cfg.samples_per_frame,
323 pjsua_var.mconf_cfg.bits_per_sample,
324 &pjsua_var.null_port);
325 PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);
326
Nanang Izzuddin69b69ae2009-04-14 15:18:30 +0000327#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
328 /* Initialize SRTP library. */
329 status = pjmedia_srtp_init_lib();
330 if (status != PJ_SUCCESS) {
331 pjsua_perror(THIS_FILE, "Error initializing SRTP library",
332 status);
333 return status;
334 }
335#endif
336
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000337 return PJ_SUCCESS;
338}
339
340
341/*
342 * Create RTP and RTCP socket pair, and possibly resolve their public
343 * address via STUN.
344 */
345static pj_status_t create_rtp_rtcp_sock(const pjsua_transport_config *cfg,
346 pjmedia_sock_info *skinfo)
347{
348 enum {
349 RTP_RETRY = 100
350 };
351 int i;
Benny Prijono0a5cad82006-09-26 13:21:02 +0000352 pj_sockaddr_in bound_addr;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000353 pj_sockaddr_in mapped_addr[2];
354 pj_status_t status = PJ_SUCCESS;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000355 char addr_buf[PJ_INET6_ADDRSTRLEN+2];
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000356 pj_sock_t sock[2];
357
Benny Prijonoc97608e2007-03-23 16:34:20 +0000358 /* Make sure STUN server resolution has completed */
Benny Prijonobb995fd2009-08-12 11:03:23 +0000359 status = resolve_stun_server(PJ_TRUE);
Benny Prijonoc97608e2007-03-23 16:34:20 +0000360 if (status != PJ_SUCCESS) {
361 pjsua_perror(THIS_FILE, "Error resolving STUN server", status);
362 return status;
363 }
364
Benny Prijonode479562007-03-15 10:23:55 +0000365 if (next_rtp_port == 0)
366 next_rtp_port = (pj_uint16_t)cfg->port;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000367
368 for (i=0; i<2; ++i)
369 sock[i] = PJ_INVALID_SOCKET;
370
Benny Prijono0a5cad82006-09-26 13:21:02 +0000371 bound_addr.sin_addr.s_addr = PJ_INADDR_ANY;
372 if (cfg->bound_addr.slen) {
373 status = pj_sockaddr_in_set_str_addr(&bound_addr, &cfg->bound_addr);
374 if (status != PJ_SUCCESS) {
375 pjsua_perror(THIS_FILE, "Unable to resolve transport bind address",
376 status);
377 return status;
378 }
379 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000380
381 /* Loop retry to bind RTP and RTCP sockets. */
Benny Prijonode479562007-03-15 10:23:55 +0000382 for (i=0; i<RTP_RETRY; ++i, next_rtp_port += 2) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000383
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000384 /* Create RTP socket. */
Benny Prijono8ab968f2007-07-20 08:08:30 +0000385 status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[0]);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000386 if (status != PJ_SUCCESS) {
387 pjsua_perror(THIS_FILE, "socket() error", status);
388 return status;
389 }
390
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000391 /* Apply QoS to RTP socket, if specified */
392 status = pj_sock_apply_qos2(sock[0], cfg->qos_type,
393 &cfg->qos_params,
394 2, THIS_FILE, "RTP socket");
395
396 /* Bind RTP socket */
Benny Prijono0cdcd3f2007-12-09 14:14:11 +0000397 status=pj_sock_bind_in(sock[0], pj_ntohl(bound_addr.sin_addr.s_addr),
398 next_rtp_port);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000399 if (status != PJ_SUCCESS) {
400 pj_sock_close(sock[0]);
401 sock[0] = PJ_INVALID_SOCKET;
402 continue;
403 }
404
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000405 /* Create RTCP socket. */
Benny Prijono8ab968f2007-07-20 08:08:30 +0000406 status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[1]);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000407 if (status != PJ_SUCCESS) {
408 pjsua_perror(THIS_FILE, "socket() error", status);
409 pj_sock_close(sock[0]);
410 return status;
411 }
412
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000413 /* Apply QoS to RTCP socket, if specified */
414 status = pj_sock_apply_qos2(sock[1], cfg->qos_type,
415 &cfg->qos_params,
416 2, THIS_FILE, "RTCP socket");
417
418 /* Bind RTCP socket */
Benny Prijono0cdcd3f2007-12-09 14:14:11 +0000419 status=pj_sock_bind_in(sock[1], pj_ntohl(bound_addr.sin_addr.s_addr),
420 (pj_uint16_t)(next_rtp_port+1));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000421 if (status != PJ_SUCCESS) {
422 pj_sock_close(sock[0]);
423 sock[0] = PJ_INVALID_SOCKET;
424
425 pj_sock_close(sock[1]);
426 sock[1] = PJ_INVALID_SOCKET;
427 continue;
428 }
429
430 /*
431 * If we're configured to use STUN, then find out the mapped address,
432 * and make sure that the mapped RTCP port is adjacent with the RTP.
433 */
Benny Prijonoc97608e2007-03-23 16:34:20 +0000434 if (pjsua_var.stun_srv.addr.sa_family != 0) {
435 char ip_addr[32];
436 pj_str_t stun_srv;
437
438 pj_ansi_strcpy(ip_addr,
439 pj_inet_ntoa(pjsua_var.stun_srv.ipv4.sin_addr));
440 stun_srv = pj_str(ip_addr);
441
Benny Prijono14c2b862007-02-21 00:40:05 +0000442 status=pjstun_get_mapped_addr(&pjsua_var.cp.factory, 2, sock,
Benny Prijonoaf09dc32007-04-22 12:48:30 +0000443 &stun_srv, pj_ntohs(pjsua_var.stun_srv.ipv4.sin_port),
444 &stun_srv, pj_ntohs(pjsua_var.stun_srv.ipv4.sin_port),
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000445 mapped_addr);
446 if (status != PJ_SUCCESS) {
447 pjsua_perror(THIS_FILE, "STUN resolve error", status);
448 goto on_error;
449 }
450
Benny Prijono80eee892007-11-03 22:43:23 +0000451#if PJSUA_REQUIRE_CONSECUTIVE_RTCP_PORT
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000452 if (pj_ntohs(mapped_addr[1].sin_port) ==
453 pj_ntohs(mapped_addr[0].sin_port)+1)
454 {
455 /* Success! */
456 break;
457 }
458
459 pj_sock_close(sock[0]);
460 sock[0] = PJ_INVALID_SOCKET;
461
462 pj_sock_close(sock[1]);
463 sock[1] = PJ_INVALID_SOCKET;
Benny Prijono80eee892007-11-03 22:43:23 +0000464#else
465 if (pj_ntohs(mapped_addr[1].sin_port) !=
466 pj_ntohs(mapped_addr[0].sin_port)+1)
467 {
468 PJ_LOG(4,(THIS_FILE,
469 "Note: STUN mapped RTCP port %d is not adjacent"
470 " to RTP port %d",
471 pj_ntohs(mapped_addr[1].sin_port),
472 pj_ntohs(mapped_addr[0].sin_port)));
473 }
474 /* Success! */
475 break;
476#endif
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000477
Benny Prijono0a5cad82006-09-26 13:21:02 +0000478 } else if (cfg->public_addr.slen) {
479
480 status = pj_sockaddr_in_init(&mapped_addr[0], &cfg->public_addr,
Benny Prijonode479562007-03-15 10:23:55 +0000481 (pj_uint16_t)next_rtp_port);
Benny Prijono0a5cad82006-09-26 13:21:02 +0000482 if (status != PJ_SUCCESS)
483 goto on_error;
484
485 status = pj_sockaddr_in_init(&mapped_addr[1], &cfg->public_addr,
Benny Prijonode479562007-03-15 10:23:55 +0000486 (pj_uint16_t)(next_rtp_port+1));
Benny Prijono0a5cad82006-09-26 13:21:02 +0000487 if (status != PJ_SUCCESS)
488 goto on_error;
489
490 break;
491
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000492 } else {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000493
Benny Prijono42d08d22007-12-20 11:23:07 +0000494 if (bound_addr.sin_addr.s_addr == 0) {
495 pj_sockaddr addr;
496
497 /* Get local IP address. */
498 status = pj_gethostip(pj_AF_INET(), &addr);
499 if (status != PJ_SUCCESS)
500 goto on_error;
501
502 bound_addr.sin_addr.s_addr = addr.ipv4.sin_addr.s_addr;
503 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000504
Benny Prijonofe0b1d62007-12-05 04:07:37 +0000505 for (i=0; i<2; ++i) {
506 pj_sockaddr_in_init(&mapped_addr[i], NULL, 0);
Benny Prijono42d08d22007-12-20 11:23:07 +0000507 mapped_addr[i].sin_addr.s_addr = bound_addr.sin_addr.s_addr;
Benny Prijonofe0b1d62007-12-05 04:07:37 +0000508 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000509
Benny Prijonode479562007-03-15 10:23:55 +0000510 mapped_addr[0].sin_port=pj_htons((pj_uint16_t)next_rtp_port);
511 mapped_addr[1].sin_port=pj_htons((pj_uint16_t)(next_rtp_port+1));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000512 break;
513 }
514 }
515
516 if (sock[0] == PJ_INVALID_SOCKET) {
517 PJ_LOG(1,(THIS_FILE,
518 "Unable to find appropriate RTP/RTCP ports combination"));
519 goto on_error;
520 }
521
522
523 skinfo->rtp_sock = sock[0];
524 pj_memcpy(&skinfo->rtp_addr_name,
525 &mapped_addr[0], sizeof(pj_sockaddr_in));
526
527 skinfo->rtcp_sock = sock[1];
528 pj_memcpy(&skinfo->rtcp_addr_name,
529 &mapped_addr[1], sizeof(pj_sockaddr_in));
530
Benny Prijono8b22ce12008-02-08 12:57:55 +0000531 PJ_LOG(4,(THIS_FILE, "RTP socket reachable at %s",
Benny Prijono5186eae2007-12-03 14:38:25 +0000532 pj_sockaddr_print(&skinfo->rtp_addr_name, addr_buf,
533 sizeof(addr_buf), 3)));
Benny Prijono8b22ce12008-02-08 12:57:55 +0000534 PJ_LOG(4,(THIS_FILE, "RTCP socket reachable at %s",
Benny Prijono5186eae2007-12-03 14:38:25 +0000535 pj_sockaddr_print(&skinfo->rtcp_addr_name, addr_buf,
536 sizeof(addr_buf), 3)));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000537
Benny Prijonode479562007-03-15 10:23:55 +0000538 next_rtp_port += 2;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000539 return PJ_SUCCESS;
540
541on_error:
542 for (i=0; i<2; ++i) {
543 if (sock[i] != PJ_INVALID_SOCKET)
544 pj_sock_close(sock[i]);
545 }
546 return status;
547}
548
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000549/* Check if sound device is idle. */
550static void check_snd_dev_idle()
551{
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000552 unsigned call_cnt;
553
554 /* Get the call count, we shouldn't close the sound device when there is
555 * any calls active.
556 */
557 call_cnt = pjsua_call_get_count();
558
559 /* When this function is called from pjsua_media_channel_deinit() upon
560 * disconnecting call, actually the call count hasn't been updated/
561 * decreased. So we put additional check here, if there is only one
562 * call and it's in DISCONNECTED state, there is actually no active
563 * call.
564 */
565 if (call_cnt == 1) {
566 pjsua_call_id call_id;
567 pj_status_t status;
568
569 status = pjsua_enum_calls(&call_id, &call_cnt);
570 if (status == PJ_SUCCESS && call_cnt > 0 &&
571 !pjsua_call_is_active(call_id))
572 {
573 call_cnt = 0;
574 }
575 }
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000576
577 /* Activate sound device auto-close timer if sound device is idle.
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000578 * It is idle when there is no port connection in the bridge and
579 * there is no active call.
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000580 */
581 if ((pjsua_var.snd_port!=NULL || pjsua_var.null_snd!=NULL) &&
582 pjsua_var.snd_idle_timer.id == PJ_FALSE &&
583 pjmedia_conf_get_connect_count(pjsua_var.mconf) == 0 &&
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000584 call_cnt == 0 &&
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000585 pjsua_var.media_cfg.snd_auto_close_time >= 0)
586 {
587 pj_time_val delay;
588
589 delay.msec = 0;
590 delay.sec = pjsua_var.media_cfg.snd_auto_close_time;
591
592 pjsua_var.snd_idle_timer.id = PJ_TRUE;
593 pjsip_endpt_schedule_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer,
594 &delay);
595 }
596}
597
598
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000599/* Timer callback to close sound device */
600static void close_snd_timer_cb( pj_timer_heap_t *th,
601 pj_timer_entry *entry)
602{
603 PJ_UNUSED_ARG(th);
604
Benny Prijono0f711b42009-05-06 19:08:43 +0000605 PJSUA_LOCK();
606 if (entry->id) {
607 PJ_LOG(4,(THIS_FILE,"Closing sound device after idle for %d seconds",
608 pjsua_var.media_cfg.snd_auto_close_time));
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000609
Benny Prijono0f711b42009-05-06 19:08:43 +0000610 entry->id = PJ_FALSE;
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000611
Benny Prijono0f711b42009-05-06 19:08:43 +0000612 close_snd_dev();
613 }
614 PJSUA_UNLOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000615}
616
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000617
618/*
619 * Start pjsua media subsystem.
620 */
621pj_status_t pjsua_media_subsys_start(void)
622{
623 pj_status_t status;
624
625 /* Create media for calls, if none is specified */
626 if (pjsua_var.calls[0].med_tp == NULL) {
627 pjsua_transport_config transport_cfg;
628
629 /* Create default transport config */
630 pjsua_transport_config_default(&transport_cfg);
631 transport_cfg.port = DEFAULT_RTP_PORT;
632
633 status = pjsua_media_transports_create(&transport_cfg);
634 if (status != PJ_SUCCESS)
635 return status;
636 }
637
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000638 pj_timer_entry_init(&pjsua_var.snd_idle_timer, PJ_FALSE, NULL,
639 &close_snd_timer_cb);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000640
Benny Prijonobf53b002010-01-04 13:08:31 +0000641 /* Perform NAT detection */
642 pjsua_detect_nat_type();
643
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000644 return PJ_SUCCESS;
645}
646
647
648/*
649 * Destroy pjsua media subsystem.
650 */
651pj_status_t pjsua_media_subsys_destroy(void)
652{
653 unsigned i;
654
Benny Prijono384dab42009-10-14 01:58:04 +0000655 PJ_LOG(4,(THIS_FILE, "Shutting down media.."));
656
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000657 close_snd_dev();
658
659 if (pjsua_var.mconf) {
660 pjmedia_conf_destroy(pjsua_var.mconf);
661 pjsua_var.mconf = NULL;
662 }
663
664 if (pjsua_var.null_port) {
665 pjmedia_port_destroy(pjsua_var.null_port);
666 pjsua_var.null_port = NULL;
667 }
668
669 /* Destroy file players */
670 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.player); ++i) {
671 if (pjsua_var.player[i].port) {
672 pjmedia_port_destroy(pjsua_var.player[i].port);
673 pjsua_var.player[i].port = NULL;
674 }
675 }
676
677 /* Destroy file recorders */
678 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.recorder); ++i) {
679 if (pjsua_var.recorder[i].port) {
680 pjmedia_port_destroy(pjsua_var.recorder[i].port);
681 pjsua_var.recorder[i].port = NULL;
682 }
683 }
684
685 /* Close media transports */
Benny Prijono0875ae82006-12-26 00:11:48 +0000686 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono311b63f2008-07-14 11:31:40 +0000687 if (pjsua_var.calls[i].med_tp_st != PJSUA_MED_TP_IDLE) {
688 pjsua_media_channel_deinit(i);
689 }
Benny Prijono40860c32008-09-04 13:55:33 +0000690 if (pjsua_var.calls[i].med_tp && pjsua_var.calls[i].med_tp_auto_del) {
691 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000692 }
Benny Prijono40860c32008-09-04 13:55:33 +0000693 pjsua_var.calls[i].med_tp = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000694 }
695
696 /* Destroy media endpoint. */
697 if (pjsua_var.med_endpt) {
698
699 /* Shutdown all codecs: */
700# if PJMEDIA_HAS_SPEEX_CODEC
701 pjmedia_codec_speex_deinit();
702# endif /* PJMEDIA_HAS_SPEEX_CODEC */
703
704# if PJMEDIA_HAS_GSM_CODEC
705 pjmedia_codec_gsm_deinit();
706# endif /* PJMEDIA_HAS_GSM_CODEC */
707
708# if PJMEDIA_HAS_G711_CODEC
709 pjmedia_codec_g711_deinit();
710# endif /* PJMEDIA_HAS_G711_CODEC */
711
Benny Prijono7ffd7752008-03-17 14:07:53 +0000712# if PJMEDIA_HAS_G722_CODEC
713 pjmedia_codec_g722_deinit();
714# endif /* PJMEDIA_HAS_G722_CODEC */
715
Nanang Izzuddin6df1d532008-08-25 13:46:03 +0000716# if PJMEDIA_HAS_INTEL_IPP
Nanang Izzuddin7dd32682008-08-19 11:23:33 +0000717 pjmedia_codec_ipp_deinit();
Nanang Izzuddin6df1d532008-08-25 13:46:03 +0000718# endif /* PJMEDIA_HAS_INTEL_IPP */
Nanang Izzuddin7dd32682008-08-19 11:23:33 +0000719
Nanang Izzuddin81db8c72009-02-05 10:59:14 +0000720# if PJMEDIA_HAS_PASSTHROUGH_CODECS
721 pjmedia_codec_passthrough_deinit();
722# endif /* PJMEDIA_HAS_PASSTHROUGH_CODECS */
723
Nanang Izzuddin57b88572009-04-01 12:05:34 +0000724# if PJMEDIA_HAS_G7221_CODEC
725 pjmedia_codec_g7221_deinit();
726# endif /* PJMEDIA_HAS_G7221_CODEC */
727
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000728# if PJMEDIA_HAS_L16_CODEC
729 pjmedia_codec_l16_deinit();
730# endif /* PJMEDIA_HAS_L16_CODEC */
731
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000732 pjmedia_endpt_destroy(pjsua_var.med_endpt);
733 pjsua_var.med_endpt = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000734
Benny Prijonoad2e0ca2007-04-29 12:31:51 +0000735 /* Deinitialize sound subsystem */
Benny Prijonoa41d66e2007-10-01 12:17:23 +0000736 // Not necessary, as pjmedia_snd_deinit() should have been called
737 // in pjmedia_endpt_destroy().
738 //pjmedia_snd_deinit();
Benny Prijonoad2e0ca2007-04-29 12:31:51 +0000739 }
Benny Prijonoaf1bb1e2006-11-21 12:39:31 +0000740
Benny Prijonode479562007-03-15 10:23:55 +0000741 /* Reset RTP port */
742 next_rtp_port = 0;
743
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000744 return PJ_SUCCESS;
745}
746
747
Benny Prijonoc97608e2007-03-23 16:34:20 +0000748/* Create normal UDP media transports */
749static pj_status_t create_udp_media_transports(pjsua_transport_config *cfg)
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000750{
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000751 unsigned i;
Benny Prijono617c5bc2007-04-02 19:51:21 +0000752 pjmedia_sock_info skinfo;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000753 pj_status_t status;
754
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000755 /* Create each media transport */
756 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
757
Benny Prijono617c5bc2007-04-02 19:51:21 +0000758 status = create_rtp_rtcp_sock(cfg, &skinfo);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000759 if (status != PJ_SUCCESS) {
760 pjsua_perror(THIS_FILE, "Unable to create RTP/RTCP socket",
761 status);
762 goto on_error;
763 }
Benny Prijonod8179652008-01-23 20:39:07 +0000764
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000765 status = pjmedia_transport_udp_attach(pjsua_var.med_endpt, NULL,
Benny Prijono617c5bc2007-04-02 19:51:21 +0000766 &skinfo, 0,
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000767 &pjsua_var.calls[i].med_tp);
768 if (status != PJ_SUCCESS) {
769 pjsua_perror(THIS_FILE, "Unable to create media transport",
770 status);
771 goto on_error;
772 }
Benny Prijono00cae612006-07-31 15:19:36 +0000773
Benny Prijonod8179652008-01-23 20:39:07 +0000774 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
775 PJMEDIA_DIR_ENCODING,
776 pjsua_var.media_cfg.tx_drop_pct);
Benny Prijono00cae612006-07-31 15:19:36 +0000777
Benny Prijonod8179652008-01-23 20:39:07 +0000778 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
779 PJMEDIA_DIR_DECODING,
780 pjsua_var.media_cfg.rx_drop_pct);
Benny Prijono00cae612006-07-31 15:19:36 +0000781
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000782 }
783
Benny Prijonoc97608e2007-03-23 16:34:20 +0000784 return PJ_SUCCESS;
785
786on_error:
787 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
788 if (pjsua_var.calls[i].med_tp != NULL) {
789 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
790 pjsua_var.calls[i].med_tp = NULL;
791 }
792 }
793
794 return status;
795}
796
797
Benny Prijono096c56c2007-09-15 08:30:16 +0000798/* This callback is called when ICE negotiation completes */
Benny Prijonof76e1392008-06-06 14:51:48 +0000799static void on_ice_complete(pjmedia_transport *tp,
800 pj_ice_strans_op op,
801 pj_status_t result)
Benny Prijono096c56c2007-09-15 08:30:16 +0000802{
Benny Prijonof76e1392008-06-06 14:51:48 +0000803 unsigned id;
Benny Prijono096c56c2007-09-15 08:30:16 +0000804 pj_bool_t found = PJ_FALSE;
805
Benny Prijono096c56c2007-09-15 08:30:16 +0000806 /* Find call which has this media transport */
807
808 PJSUA_LOCK();
809
Benny Prijonof76e1392008-06-06 14:51:48 +0000810 for (id=0; id<pjsua_var.ua_cfg.max_calls; ++id) {
811 if (pjsua_var.calls[id].med_tp == tp ||
812 pjsua_var.calls[id].med_orig == tp)
813 {
814 found = PJ_TRUE;
815 break;
Benny Prijono096c56c2007-09-15 08:30:16 +0000816 }
817 }
818
819 PJSUA_UNLOCK();
820
Benny Prijonof76e1392008-06-06 14:51:48 +0000821 if (!found)
822 return;
823
824 switch (op) {
825 case PJ_ICE_STRANS_OP_INIT:
Benny Prijono224b4e22008-06-19 14:10:28 +0000826 pjsua_var.calls[id].med_tp_ready = result;
Benny Prijonof76e1392008-06-06 14:51:48 +0000827 break;
828 case PJ_ICE_STRANS_OP_NEGOTIATION:
829 if (result != PJ_SUCCESS) {
830 pjsua_var.calls[id].media_st = PJSUA_CALL_MEDIA_ERROR;
831 pjsua_var.calls[id].media_dir = PJMEDIA_DIR_NONE;
832
833 if (pjsua_var.ua_cfg.cb.on_call_media_state) {
834 pjsua_var.ua_cfg.cb.on_call_media_state(id);
835 }
Benny Prijonof5d9f1f2009-10-14 13:13:18 +0000836 } else {
837 /* Send UPDATE if default transport address is different than
838 * what was advertised (ticket #881)
839 */
840 pjmedia_transport_info tpinfo;
841 pjmedia_ice_transport_info *ii = NULL;
842 unsigned i;
843
844 pjmedia_transport_info_init(&tpinfo);
845 pjmedia_transport_get_info(tp, &tpinfo);
846 for (i=0; i<tpinfo.specific_info_cnt; ++i) {
847 if (tpinfo.spc_info[i].type==PJMEDIA_TRANSPORT_TYPE_ICE) {
848 ii = (pjmedia_ice_transport_info*)
849 tpinfo.spc_info[i].buffer;
850 break;
851 }
852 }
853
854 if (ii && ii->role==PJ_ICE_SESS_ROLE_CONTROLLING &&
855 pj_sockaddr_cmp(&tpinfo.sock_info.rtp_addr_name,
856 &pjsua_var.calls[id].med_rtp_addr))
857 {
858 PJ_LOG(4,(THIS_FILE,
859 "ICE default transport address has changed for "
860 "call %d, sending UPDATE", id));
861 pjsua_call_update(id, 0, NULL);
862 }
Benny Prijonof76e1392008-06-06 14:51:48 +0000863 }
864 break;
Benny Prijono096c56c2007-09-15 08:30:16 +0000865 }
866}
867
868
Benny Prijonof76e1392008-06-06 14:51:48 +0000869/* Parse "HOST:PORT" format */
870static pj_status_t parse_host_port(const pj_str_t *host_port,
871 pj_str_t *host, pj_uint16_t *port)
Benny Prijonoc97608e2007-03-23 16:34:20 +0000872{
Benny Prijonof76e1392008-06-06 14:51:48 +0000873 pj_str_t str_port;
874
875 str_port.ptr = pj_strchr(host_port, ':');
876 if (str_port.ptr != NULL) {
877 int iport;
878
879 host->ptr = host_port->ptr;
880 host->slen = (str_port.ptr - host->ptr);
881 str_port.ptr++;
882 str_port.slen = host_port->slen - host->slen - 1;
883 iport = (int)pj_strtoul(&str_port);
884 if (iport < 1 || iport > 65535)
885 return PJ_EINVAL;
886 *port = (pj_uint16_t)iport;
887 } else {
888 *host = *host_port;
889 *port = 0;
890 }
891
892 return PJ_SUCCESS;
893}
894
895/* Create ICE media transports (when ice is enabled) */
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000896static pj_status_t create_ice_media_transports(pjsua_transport_config *cfg)
Benny Prijonof76e1392008-06-06 14:51:48 +0000897{
898 char stunip[PJ_INET6_ADDRSTRLEN];
899 pj_ice_strans_cfg ice_cfg;
Benny Prijonoc97608e2007-03-23 16:34:20 +0000900 unsigned i;
901 pj_status_t status;
902
Benny Prijonoda9785b2007-04-02 20:43:06 +0000903 /* Make sure STUN server resolution has completed */
Benny Prijonobb995fd2009-08-12 11:03:23 +0000904 status = resolve_stun_server(PJ_TRUE);
Benny Prijonoda9785b2007-04-02 20:43:06 +0000905 if (status != PJ_SUCCESS) {
906 pjsua_perror(THIS_FILE, "Error resolving STUN server", status);
907 return status;
908 }
909
Benny Prijonof76e1392008-06-06 14:51:48 +0000910 /* Create ICE stream transport configuration */
911 pj_ice_strans_cfg_default(&ice_cfg);
912 pj_stun_config_init(&ice_cfg.stun_cfg, &pjsua_var.cp.factory, 0,
913 pjsip_endpt_get_ioqueue(pjsua_var.endpt),
914 pjsip_endpt_get_timer_heap(pjsua_var.endpt));
915
916 ice_cfg.af = pj_AF_INET();
917 ice_cfg.resolver = pjsua_var.resolver;
918
Benny Prijono329d6382009-05-29 13:04:03 +0000919 ice_cfg.opt = pjsua_var.media_cfg.ice_opt;
920
Benny Prijonof76e1392008-06-06 14:51:48 +0000921 /* Configure STUN settings */
922 if (pj_sockaddr_has_addr(&pjsua_var.stun_srv)) {
923 pj_sockaddr_print(&pjsua_var.stun_srv, stunip, sizeof(stunip), 0);
924 ice_cfg.stun.server = pj_str(stunip);
925 ice_cfg.stun.port = pj_sockaddr_get_port(&pjsua_var.stun_srv);
926 }
Benny Prijono329d6382009-05-29 13:04:03 +0000927 if (pjsua_var.media_cfg.ice_max_host_cands >= 0)
928 ice_cfg.stun.max_host_cands = pjsua_var.media_cfg.ice_max_host_cands;
Benny Prijonof76e1392008-06-06 14:51:48 +0000929
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000930 /* Copy QoS setting to STUN setting */
931 ice_cfg.stun.cfg.qos_type = cfg->qos_type;
932 pj_memcpy(&ice_cfg.stun.cfg.qos_params, &cfg->qos_params,
933 sizeof(cfg->qos_params));
934
Benny Prijonof76e1392008-06-06 14:51:48 +0000935 /* Configure TURN settings */
936 if (pjsua_var.media_cfg.enable_turn) {
937 status = parse_host_port(&pjsua_var.media_cfg.turn_server,
938 &ice_cfg.turn.server,
939 &ice_cfg.turn.port);
940 if (status != PJ_SUCCESS || ice_cfg.turn.server.slen == 0) {
941 PJ_LOG(1,(THIS_FILE, "Invalid TURN server setting"));
942 return PJ_EINVAL;
943 }
944 if (ice_cfg.turn.port == 0)
945 ice_cfg.turn.port = 3479;
946 ice_cfg.turn.conn_type = pjsua_var.media_cfg.turn_conn_type;
947 pj_memcpy(&ice_cfg.turn.auth_cred,
948 &pjsua_var.media_cfg.turn_auth_cred,
949 sizeof(ice_cfg.turn.auth_cred));
Benny Prijono4d79b0f2009-10-25 09:02:07 +0000950
951 /* Copy QoS setting to TURN setting */
952 ice_cfg.turn.cfg.qos_type = cfg->qos_type;
953 pj_memcpy(&ice_cfg.turn.cfg.qos_params, &cfg->qos_params,
954 sizeof(cfg->qos_params));
Benny Prijonof76e1392008-06-06 14:51:48 +0000955 }
Benny Prijonob681a2f2007-03-25 18:44:51 +0000956
Benny Prijonoc97608e2007-03-23 16:34:20 +0000957 /* Create each media transport */
958 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono096c56c2007-09-15 08:30:16 +0000959 pjmedia_ice_cb ice_cb;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000960 char name[32];
Benny Prijonof76e1392008-06-06 14:51:48 +0000961 unsigned comp_cnt;
Benny Prijonoc97608e2007-03-23 16:34:20 +0000962
Benny Prijono096c56c2007-09-15 08:30:16 +0000963 pj_bzero(&ice_cb, sizeof(pjmedia_ice_cb));
964 ice_cb.on_ice_complete = &on_ice_complete;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000965 pj_ansi_snprintf(name, sizeof(name), "icetp%02d", i);
Benny Prijono224b4e22008-06-19 14:10:28 +0000966 pjsua_var.calls[i].med_tp_ready = PJ_EPENDING;
Benny Prijonof76e1392008-06-06 14:51:48 +0000967
968 comp_cnt = 1;
Benny Prijono551af422008-08-07 09:55:52 +0000969 if (PJMEDIA_ADVERTISE_RTCP && !pjsua_var.media_cfg.ice_no_rtcp)
Benny Prijonof76e1392008-06-06 14:51:48 +0000970 ++comp_cnt;
971
972 status = pjmedia_ice_create(pjsua_var.med_endpt, name, comp_cnt,
973 &ice_cfg, &ice_cb,
Benny Prijonoc97608e2007-03-23 16:34:20 +0000974 &pjsua_var.calls[i].med_tp);
975 if (status != PJ_SUCCESS) {
976 pjsua_perror(THIS_FILE, "Unable to create ICE media transport",
977 status);
978 goto on_error;
979 }
980
Benny Prijonof76e1392008-06-06 14:51:48 +0000981 /* Wait until transport is initialized, or time out */
982 PJSUA_UNLOCK();
Benny Prijono224b4e22008-06-19 14:10:28 +0000983 while (pjsua_var.calls[i].med_tp_ready == PJ_EPENDING) {
Benny Prijonof76e1392008-06-06 14:51:48 +0000984 pjsua_handle_events(100);
985 }
986 PJSUA_LOCK();
Benny Prijono224b4e22008-06-19 14:10:28 +0000987 if (pjsua_var.calls[i].med_tp_ready != PJ_SUCCESS) {
Benny Prijonof76e1392008-06-06 14:51:48 +0000988 pjsua_perror(THIS_FILE, "Error initializing ICE media transport",
Benny Prijono224b4e22008-06-19 14:10:28 +0000989 pjsua_var.calls[i].med_tp_ready);
990 status = pjsua_var.calls[i].med_tp_ready;
Benny Prijonof76e1392008-06-06 14:51:48 +0000991 goto on_error;
992 }
993
Benny Prijonod8179652008-01-23 20:39:07 +0000994 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
995 PJMEDIA_DIR_ENCODING,
996 pjsua_var.media_cfg.tx_drop_pct);
Benny Prijono11da9bc2007-09-15 08:55:00 +0000997
Benny Prijonod8179652008-01-23 20:39:07 +0000998 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
999 PJMEDIA_DIR_DECODING,
1000 pjsua_var.media_cfg.rx_drop_pct);
Benny Prijonoc97608e2007-03-23 16:34:20 +00001001 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001002
1003 return PJ_SUCCESS;
1004
1005on_error:
1006 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
1007 if (pjsua_var.calls[i].med_tp != NULL) {
Benny Prijonoc97608e2007-03-23 16:34:20 +00001008 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001009 pjsua_var.calls[i].med_tp = NULL;
1010 }
1011 }
1012
Benny Prijonoc97608e2007-03-23 16:34:20 +00001013 return status;
1014}
1015
1016
1017/*
1018 * Create UDP media transports for all the calls. This function creates
1019 * one UDP media transport for each call.
1020 */
Benny Prijono1f61a8f2007-08-16 10:11:44 +00001021PJ_DEF(pj_status_t) pjsua_media_transports_create(
1022 const pjsua_transport_config *app_cfg)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001023{
1024 pjsua_transport_config cfg;
1025 unsigned i;
1026 pj_status_t status;
1027
1028
1029 /* Make sure pjsua_init() has been called */
1030 PJ_ASSERT_RETURN(pjsua_var.ua_cfg.max_calls>0, PJ_EINVALIDOP);
1031
1032 PJSUA_LOCK();
1033
1034 /* Delete existing media transports */
1035 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono40860c32008-09-04 13:55:33 +00001036 if (pjsua_var.calls[i].med_tp != NULL &&
1037 pjsua_var.calls[i].med_tp_auto_del)
1038 {
Benny Prijonoc97608e2007-03-23 16:34:20 +00001039 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
1040 pjsua_var.calls[i].med_tp = NULL;
Nanang Izzuddind704a8b2008-09-23 16:34:07 +00001041 pjsua_var.calls[i].med_orig = NULL;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001042 }
1043 }
1044
1045 /* Copy config */
1046 pjsua_transport_config_dup(pjsua_var.pool, &cfg, app_cfg);
1047
Benny Prijono40860c32008-09-04 13:55:33 +00001048 /* Create the transports */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001049 if (pjsua_var.media_cfg.enable_ice) {
Benny Prijono4d79b0f2009-10-25 09:02:07 +00001050 status = create_ice_media_transports(&cfg);
Benny Prijonoc97608e2007-03-23 16:34:20 +00001051 } else {
1052 status = create_udp_media_transports(&cfg);
1053 }
1054
Benny Prijono40860c32008-09-04 13:55:33 +00001055 /* Set media transport auto_delete to True */
1056 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
1057 pjsua_var.calls[i].med_tp_auto_del = PJ_TRUE;
1058 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001059
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001060 PJSUA_UNLOCK();
1061
1062 return status;
1063}
1064
Benny Prijono40860c32008-09-04 13:55:33 +00001065/*
1066 * Attach application's created media transports.
1067 */
1068PJ_DEF(pj_status_t) pjsua_media_transports_attach(pjsua_media_transport tp[],
1069 unsigned count,
1070 pj_bool_t auto_delete)
1071{
1072 unsigned i;
1073
1074 PJ_ASSERT_RETURN(tp && count==pjsua_var.ua_cfg.max_calls, PJ_EINVAL);
1075
1076 /* Assign the media transports */
1077 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
1078 if (pjsua_var.calls[i].med_tp != NULL &&
1079 pjsua_var.calls[i].med_tp_auto_del)
1080 {
1081 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
1082 }
1083
1084 pjsua_var.calls[i].med_tp = tp[i].transport;
1085 pjsua_var.calls[i].med_tp_auto_del = auto_delete;
1086 }
1087
1088 return PJ_SUCCESS;
1089}
1090
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001091
Benny Prijonoc97608e2007-03-23 16:34:20 +00001092pj_status_t pjsua_media_channel_init(pjsua_call_id call_id,
Benny Prijonod8179652008-01-23 20:39:07 +00001093 pjsip_role_e role,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001094 int security_level,
Benny Prijono224b4e22008-06-19 14:10:28 +00001095 pj_pool_t *tmp_pool,
1096 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001097 int *sip_err_code)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001098{
1099 pjsua_call *call = &pjsua_var.calls[call_id];
Benny Prijono224b4e22008-06-19 14:10:28 +00001100 pj_status_t status;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001101
Benny Prijonod8179652008-01-23 20:39:07 +00001102#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
1103 pjsua_acc *acc = &pjsua_var.acc[call->acc_id];
1104 pjmedia_srtp_setting srtp_opt;
Benny Prijonoa310bd22008-06-27 21:19:44 +00001105 pjmedia_transport *srtp = NULL;
Benny Prijonod8179652008-01-23 20:39:07 +00001106#endif
Benny Prijonoc97608e2007-03-23 16:34:20 +00001107
Benny Prijonod8179652008-01-23 20:39:07 +00001108 PJ_UNUSED_ARG(role);
Benny Prijonoc97608e2007-03-23 16:34:20 +00001109
Benny Prijonod8179652008-01-23 20:39:07 +00001110 /* Return error if media transport has not been created yet
1111 * (e.g. application is starting)
1112 */
1113 if (call->med_tp == NULL) {
Benny Prijono03789052008-09-16 14:30:50 +00001114 if (sip_err_code)
1115 *sip_err_code = PJSIP_SC_INTERNAL_SERVER_ERROR;
Benny Prijonod8179652008-01-23 20:39:07 +00001116 return PJ_EBUSY;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001117 }
1118
Benny Prijonod8179652008-01-23 20:39:07 +00001119#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
Benny Prijono53a7c702008-04-14 02:57:29 +00001120 /* This function may be called when SRTP transport already exists
1121 * (e.g: in re-invite, update), don't need to destroy/re-create.
1122 */
1123 if (!call->med_orig || call->med_tp == call->med_orig) {
1124
1125 /* Check if SRTP requires secure signaling */
1126 if (acc->cfg.use_srtp != PJMEDIA_SRTP_DISABLED) {
1127 if (security_level < acc->cfg.srtp_secure_signaling) {
1128 if (sip_err_code)
1129 *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE;
1130 return PJSIP_ESESSIONINSECURE;
1131 }
Benny Prijonod8179652008-01-23 20:39:07 +00001132 }
Benny Prijonod8179652008-01-23 20:39:07 +00001133
Benny Prijono53a7c702008-04-14 02:57:29 +00001134 /* Always create SRTP adapter */
1135 pjmedia_srtp_setting_default(&srtp_opt);
1136 srtp_opt.close_member_tp = PJ_FALSE;
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001137 /* If media session has been ever established, let's use remote's
1138 * preference in SRTP usage policy, especially when it is stricter.
1139 */
1140 if (call->rem_srtp_use > acc->cfg.use_srtp)
1141 srtp_opt.use = call->rem_srtp_use;
1142 else
1143 srtp_opt.use = acc->cfg.use_srtp;
1144
Benny Prijono53a7c702008-04-14 02:57:29 +00001145 status = pjmedia_transport_srtp_create(pjsua_var.med_endpt,
1146 call->med_tp,
1147 &srtp_opt, &srtp);
1148 if (status != PJ_SUCCESS) {
1149 if (sip_err_code)
1150 *sip_err_code = PJSIP_SC_INTERNAL_SERVER_ERROR;
1151 return status;
1152 }
Benny Prijonod8179652008-01-23 20:39:07 +00001153
Benny Prijono53a7c702008-04-14 02:57:29 +00001154 /* Set SRTP as current media transport */
1155 call->med_orig = call->med_tp;
1156 call->med_tp = srtp;
1157 }
Benny Prijonod8179652008-01-23 20:39:07 +00001158#else
1159 call->med_orig = call->med_tp;
1160 PJ_UNUSED_ARG(security_level);
1161#endif
1162
Benny Prijonoa310bd22008-06-27 21:19:44 +00001163 /* Find out which media line in SDP that we support. If we are offerer,
1164 * audio will be at index 0 in SDP.
1165 */
1166 if (rem_sdp == 0) {
1167 call->audio_idx = 0;
1168 }
1169 /* Otherwise find out the candidate audio media line in SDP */
1170 else {
1171 unsigned i;
1172 pj_bool_t srtp_active;
1173
1174#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
1175 srtp_active = acc->cfg.use_srtp && srtp != NULL;
1176#else
1177 srtp_active = PJ_FALSE;
1178#endif
1179
1180 /* Media count must have been checked */
1181 pj_assert(rem_sdp->media_count != 0);
1182
1183 for (i=0; i<rem_sdp->media_count; ++i) {
1184 const pjmedia_sdp_media *m = rem_sdp->media[i];
1185
1186 /* Skip if media is not audio */
1187 if (pj_stricmp2(&m->desc.media, "audio") != 0)
1188 continue;
1189
1190 /* Skip if media is disabled */
1191 if (m->desc.port == 0)
1192 continue;
1193
1194 /* Skip if transport is not supported */
1195 if (pj_stricmp2(&m->desc.transport, "RTP/AVP") != 0 &&
1196 pj_stricmp2(&m->desc.transport, "RTP/SAVP") != 0)
1197 {
1198 continue;
1199 }
1200
1201 if (call->audio_idx == -1) {
1202 call->audio_idx = i;
1203 } else {
1204 /* We've found multiple candidates. This could happen
1205 * e.g. when remote is offering both RTP/AVP and RTP/AVP,
1206 * or when remote for some reason offers two audio.
1207 */
1208
1209 if (srtp_active &&
1210 pj_stricmp2(&m->desc.transport, "RTP/SAVP")==0)
1211 {
1212 /* Prefer RTP/SAVP when our media transport is SRTP */
1213 call->audio_idx = i;
1214 } else if (!srtp_active &&
1215 pj_stricmp2(&m->desc.transport, "RTP/AVP")==0)
1216 {
1217 /* Prefer RTP/AVP when our media transport is NOT SRTP */
1218 call->audio_idx = i;
1219 }
1220 }
1221 }
1222 }
1223
1224 /* Reject offer if we couldn't find a good m=audio line in offer */
1225 if (call->audio_idx < 0) {
Benny Prijonoab8dba92008-06-27 21:59:15 +00001226 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE_HERE;
Benny Prijonoa310bd22008-06-27 21:19:44 +00001227 pjsua_media_channel_deinit(call_id);
Benny Prijonoab8dba92008-06-27 21:59:15 +00001228 return PJSIP_ERRNO_FROM_SIP_STATUS(PJSIP_SC_NOT_ACCEPTABLE_HERE);
Benny Prijonoa310bd22008-06-27 21:19:44 +00001229 }
1230
1231 PJ_LOG(4,(THIS_FILE, "Media index %d selected for call %d",
1232 call->audio_idx, call->index));
1233
Benny Prijono224b4e22008-06-19 14:10:28 +00001234 /* Create the media transport */
1235 status = pjmedia_transport_media_create(call->med_tp, tmp_pool, 0,
Benny Prijonoa310bd22008-06-27 21:19:44 +00001236 rem_sdp, call->audio_idx);
Benny Prijono224b4e22008-06-19 14:10:28 +00001237 if (status != PJ_SUCCESS) {
1238 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE;
1239 pjsua_media_channel_deinit(call_id);
1240 return status;
1241 }
1242
1243 call->med_tp_st = PJSUA_MED_TP_INIT;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001244 return PJ_SUCCESS;
1245}
1246
1247pj_status_t pjsua_media_channel_create_sdp(pjsua_call_id call_id,
1248 pj_pool_t *pool,
Benny Prijonod8179652008-01-23 20:39:07 +00001249 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001250 pjmedia_sdp_session **p_sdp,
1251 int *sip_status_code)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001252{
Benny Prijonoa310bd22008-06-27 21:19:44 +00001253 enum { MAX_MEDIA = 1 };
Benny Prijonoc97608e2007-03-23 16:34:20 +00001254 pjmedia_sdp_session *sdp;
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001255 pjmedia_transport_info tpinfo;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001256 pjsua_call *call = &pjsua_var.calls[call_id];
1257 pj_status_t status;
1258
Benny Prijono55e82352007-05-10 20:49:08 +00001259 /* Return error if media transport has not been created yet
1260 * (e.g. application is starting)
1261 */
1262 if (call->med_tp == NULL) {
1263 return PJ_EBUSY;
1264 }
1265
Benny Prijonoa310bd22008-06-27 21:19:44 +00001266 /* Media index must have been determined before */
1267 pj_assert(call->audio_idx != -1);
1268
Benny Prijono224b4e22008-06-19 14:10:28 +00001269 /* Create media if it's not created. This could happen when call is
1270 * currently on-hold
1271 */
1272 if (call->med_tp_st == PJSUA_MED_TP_IDLE) {
1273 pjsip_role_e role;
1274 role = (rem_sdp ? PJSIP_ROLE_UAS : PJSIP_ROLE_UAC);
1275 status = pjsua_media_channel_init(call_id, role, call->secure_level,
1276 pool, rem_sdp, sip_status_code);
1277 if (status != PJ_SUCCESS)
1278 return status;
1279 }
1280
Benny Prijono617c5bc2007-04-02 19:51:21 +00001281 /* Get media socket info */
Benny Prijono734fc2d2008-03-17 16:05:35 +00001282 pjmedia_transport_info_init(&tpinfo);
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001283 pjmedia_transport_get_info(call->med_tp, &tpinfo);
Benny Prijono617c5bc2007-04-02 19:51:21 +00001284
1285 /* Create SDP */
Benny Prijonod8179652008-01-23 20:39:07 +00001286 status = pjmedia_endpt_create_sdp(pjsua_var.med_endpt, pool, MAX_MEDIA,
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001287 &tpinfo.sock_info, &sdp);
Benny Prijono25b2ea12008-01-24 19:20:54 +00001288 if (status != PJ_SUCCESS) {
1289 if (sip_status_code) *sip_status_code = 500;
Benny Prijono224b4e22008-06-19 14:10:28 +00001290 return status;
Benny Prijono25b2ea12008-01-24 19:20:54 +00001291 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001292
Benny Prijonoa310bd22008-06-27 21:19:44 +00001293 /* If we're answering and the selected media is not the first media
1294 * in SDP, then fill in the unselected media with with zero port.
1295 * Otherwise we'll crash in transport_encode_sdp() because the media
1296 * lines are not aligned between offer and answer.
1297 */
1298 if (rem_sdp && call->audio_idx != 0) {
1299 unsigned i;
1300
1301 for (i=0; i<rem_sdp->media_count; ++i) {
1302 const pjmedia_sdp_media *rem_m = rem_sdp->media[i];
1303 pjmedia_sdp_media *m;
1304 const pjmedia_sdp_attr *a;
1305
1306 if ((int)i == call->audio_idx)
1307 continue;
1308
1309 m = PJ_POOL_ZALLOC_T(pool, pjmedia_sdp_media);
1310 pj_strdup(pool, &m->desc.media, &rem_m->desc.media);
1311 pj_strdup(pool, &m->desc.transport, &rem_m->desc.transport);
1312 m->desc.port = 0;
1313
1314 /* Add one format, copy from the offer. And copy the corresponding
1315 * rtpmap and fmtp attributes too.
1316 */
1317 m->desc.fmt_count = 1;
1318 pj_strdup(pool, &m->desc.fmt[0], &rem_m->desc.fmt[0]);
1319 if ((a=pjmedia_sdp_attr_find2(rem_m->attr_count, rem_m->attr,
1320 "rtpmap", &m->desc.fmt[0])) != NULL)
1321 {
1322 m->attr[m->attr_count++] = pjmedia_sdp_attr_clone(pool, a);
1323 }
1324 if ((a=pjmedia_sdp_attr_find2(rem_m->attr_count, rem_m->attr,
1325 "fmtp", &m->desc.fmt[0])) != NULL)
1326 {
1327 m->attr[m->attr_count++] = pjmedia_sdp_attr_clone(pool, a);
1328 }
1329
1330 if (i==sdp->media_count)
1331 sdp->media[sdp->media_count++] = m;
1332 else {
1333 pj_array_insert(sdp->media, sizeof(sdp->media[0]),
1334 sdp->media_count, i, &m);
1335 ++sdp->media_count;
1336 }
1337 }
1338 }
1339
Benny Prijono6ba8c542007-10-16 01:34:14 +00001340 /* Add NAT info in the SDP */
1341 if (pjsua_var.ua_cfg.nat_type_in_sdp) {
1342 pjmedia_sdp_attr *a;
1343 pj_str_t value;
1344 char nat_info[80];
1345
1346 value.ptr = nat_info;
1347 if (pjsua_var.ua_cfg.nat_type_in_sdp == 1) {
1348 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1349 "%d", pjsua_var.nat_type);
1350 } else {
1351 const char *type_name = pj_stun_get_nat_name(pjsua_var.nat_type);
1352 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1353 "%d %s",
1354 pjsua_var.nat_type,
1355 type_name);
1356 }
1357
1358 a = pjmedia_sdp_attr_create(pool, "X-nat", &value);
1359
1360 pjmedia_sdp_attr_add(&sdp->attr_count, sdp->attr, a);
1361
1362 }
1363
Benny Prijonod8179652008-01-23 20:39:07 +00001364 /* Give the SDP to media transport */
Benny Prijono224b4e22008-06-19 14:10:28 +00001365 status = pjmedia_transport_encode_sdp(call->med_tp, pool, sdp, rem_sdp,
Benny Prijonoa310bd22008-06-27 21:19:44 +00001366 call->audio_idx);
Benny Prijono25b2ea12008-01-24 19:20:54 +00001367 if (status != PJ_SUCCESS) {
1368 if (sip_status_code) *sip_status_code = PJSIP_SC_NOT_ACCEPTABLE;
Benny Prijono224b4e22008-06-19 14:10:28 +00001369 return status;
Benny Prijono25b2ea12008-01-24 19:20:54 +00001370 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001371
Benny Prijonof5d9f1f2009-10-14 13:13:18 +00001372 /* Update currently advertised RTP source address */
1373 pj_memcpy(&call->med_rtp_addr, &tpinfo.sock_info.rtp_addr_name,
1374 sizeof(pj_sockaddr));
1375
Benny Prijonoc97608e2007-03-23 16:34:20 +00001376 *p_sdp = sdp;
1377 return PJ_SUCCESS;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001378}
1379
1380
1381static void stop_media_session(pjsua_call_id call_id)
1382{
1383 pjsua_call *call = &pjsua_var.calls[call_id];
1384
1385 if (call->conf_slot != PJSUA_INVALID_ID) {
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001386 if (pjsua_var.mconf) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001387 pjsua_conf_remove_port(call->conf_slot);
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001388 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001389 call->conf_slot = PJSUA_INVALID_ID;
1390 }
1391
1392 if (call->session) {
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001393 pjmedia_rtcp_stat stat;
1394
Nanang Izzuddin8ea7eb02009-11-09 08:11:34 +00001395 if ((call->media_dir & PJMEDIA_DIR_ENCODING) &&
1396 (pjmedia_session_get_stream_stat(call->session, 0, &stat)
1397 == PJ_SUCCESS))
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001398 {
1399 /* Save RTP timestamp & sequence, so when media session is
1400 * restarted, those values will be restored as the initial
1401 * RTP timestamp & sequence of the new media session. So in
1402 * the same call session, RTP timestamp and sequence are
1403 * guaranteed to be contigue.
1404 */
1405 call->rtp_tx_seq_ts_set = 1 | (1 << 1);
1406 call->rtp_tx_seq = stat.rtp_tx_last_seq;
1407 call->rtp_tx_ts = stat.rtp_tx_last_ts;
1408 }
1409
Benny Prijonofc13bf62008-02-20 08:56:15 +00001410 if (pjsua_var.ua_cfg.cb.on_stream_destroyed) {
1411 pjsua_var.ua_cfg.cb.on_stream_destroyed(call_id, call->session, 0);
1412 }
1413
Benny Prijonoc97608e2007-03-23 16:34:20 +00001414 pjmedia_session_destroy(call->session);
1415 call->session = NULL;
1416
1417 PJ_LOG(4,(THIS_FILE, "Media session for call %d is destroyed",
1418 call_id));
1419
1420 }
1421
1422 call->media_st = PJSUA_CALL_MEDIA_NONE;
1423}
1424
1425pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id)
1426{
1427 pjsua_call *call = &pjsua_var.calls[call_id];
1428
1429 stop_media_session(call_id);
1430
Benny Prijono224b4e22008-06-19 14:10:28 +00001431 if (call->med_tp_st != PJSUA_MED_TP_IDLE) {
1432 pjmedia_transport_media_stop(call->med_tp);
1433 call->med_tp_st = PJSUA_MED_TP_IDLE;
1434 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001435
Benny Prijono311b63f2008-07-14 11:31:40 +00001436 if (call->med_orig && call->med_tp && call->med_tp != call->med_orig) {
Benny Prijonod8179652008-01-23 20:39:07 +00001437 pjmedia_transport_close(call->med_tp);
1438 call->med_tp = call->med_orig;
1439 }
Nanang Izzuddin670f71b2009-01-20 14:05:54 +00001440
1441 check_snd_dev_idle();
1442
Benny Prijonoc97608e2007-03-23 16:34:20 +00001443 return PJ_SUCCESS;
1444}
1445
1446
1447/*
1448 * DTMF callback from the stream.
1449 */
1450static void dtmf_callback(pjmedia_stream *strm, void *user_data,
1451 int digit)
1452{
1453 PJ_UNUSED_ARG(strm);
1454
Benny Prijono0c068262008-02-14 14:38:52 +00001455 /* For discussions about call mutex protection related to this
1456 * callback, please see ticket #460:
1457 * http://trac.pjsip.org/repos/ticket/460#comment:4
1458 */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001459 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1460 pjsua_call_id call_id;
1461
Benny Prijonod8179652008-01-23 20:39:07 +00001462 call_id = (pjsua_call_id)(long)user_data;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001463 pjsua_var.ua_cfg.cb.on_dtmf_digit(call_id, digit);
1464 }
1465}
1466
1467
1468pj_status_t pjsua_media_channel_update(pjsua_call_id call_id,
Benny Prijono224b4e22008-06-19 14:10:28 +00001469 const pjmedia_sdp_session *local_sdp,
Benny Prijonodbce2cf2007-03-28 16:24:00 +00001470 const pjmedia_sdp_session *remote_sdp)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001471{
1472 int prev_media_st = 0;
1473 pjsua_call *call = &pjsua_var.calls[call_id];
1474 pjmedia_session_info sess_info;
Benny Prijono91e567e2007-12-28 08:51:58 +00001475 pjmedia_stream_info *si = NULL;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001476 pjmedia_port *media_port;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001477 pj_status_t status;
1478
1479 /* Destroy existing media session, if any. */
1480 prev_media_st = call->media_st;
1481 stop_media_session(call->index);
1482
1483 /* Create media session info based on SDP parameters.
Benny Prijonoc97608e2007-03-23 16:34:20 +00001484 */
Benny Prijono40d62b62009-08-12 17:53:47 +00001485 status = pjmedia_session_info_from_sdp( call->inv->pool_prov,
Benny Prijonoc97608e2007-03-23 16:34:20 +00001486 pjsua_var.med_endpt,
Benny Prijono91e567e2007-12-28 08:51:58 +00001487 PJMEDIA_MAX_SDP_MEDIA, &sess_info,
Benny Prijonoc97608e2007-03-23 16:34:20 +00001488 local_sdp, remote_sdp);
1489 if (status != PJ_SUCCESS)
1490 return status;
1491
Benny Prijonoa310bd22008-06-27 21:19:44 +00001492 /* Find which session is audio */
1493 PJ_ASSERT_RETURN(call->audio_idx != -1, PJ_EBUG);
1494 PJ_ASSERT_RETURN(call->audio_idx < (int)sess_info.stream_cnt, PJ_EBUG);
1495 si = &sess_info.stream_info[call->audio_idx];
Benny Prijono91e567e2007-12-28 08:51:58 +00001496
1497 /* Reset session info with only one media stream */
1498 sess_info.stream_cnt = 1;
1499 if (si != &sess_info.stream_info[0])
1500 pj_memcpy(&sess_info.stream_info[0], si, sizeof(pjmedia_stream_info));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001501
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001502 /* Check if no media is active */
Benny Prijono91e567e2007-12-28 08:51:58 +00001503 if (sess_info.stream_cnt == 0 || si->dir == PJMEDIA_DIR_NONE)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001504 {
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001505 /* Call media state */
1506 call->media_st = PJSUA_CALL_MEDIA_NONE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001507
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001508 /* Call media direction */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001509 call->media_dir = PJMEDIA_DIR_NONE;
1510
Benny Prijonod8179652008-01-23 20:39:07 +00001511 /* Shutdown transport's session */
1512 pjmedia_transport_media_stop(call->med_tp);
Benny Prijono224b4e22008-06-19 14:10:28 +00001513 call->med_tp_st = PJSUA_MED_TP_IDLE;
Benny Prijono667952e2007-04-02 19:27:54 +00001514
Benny Prijonoc97608e2007-03-23 16:34:20 +00001515 /* No need because we need keepalive? */
1516
Benny Prijono68f9e4f2008-03-21 08:56:02 +00001517 /* Close upper entry of transport stack */
1518 if (call->med_orig && (call->med_tp != call->med_orig)) {
1519 pjmedia_transport_close(call->med_tp);
1520 call->med_tp = call->med_orig;
1521 }
1522
Benny Prijonoc97608e2007-03-23 16:34:20 +00001523 } else {
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001524 pjmedia_transport_info tp_info;
1525
Benny Prijono224b4e22008-06-19 14:10:28 +00001526 /* Start/restart media transport */
Benny Prijonod8179652008-01-23 20:39:07 +00001527 status = pjmedia_transport_media_start(call->med_tp,
Benny Prijono40d62b62009-08-12 17:53:47 +00001528 call->inv->pool_prov,
Benny Prijonod8179652008-01-23 20:39:07 +00001529 local_sdp, remote_sdp, 0);
1530 if (status != PJ_SUCCESS)
1531 return status;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001532
Benny Prijono224b4e22008-06-19 14:10:28 +00001533 call->med_tp_st = PJSUA_MED_TP_RUNNING;
1534
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001535 /* Get remote SRTP usage policy */
1536 pjmedia_transport_info_init(&tp_info);
1537 pjmedia_transport_get_info(call->med_tp, &tp_info);
1538 if (tp_info.specific_info_cnt > 0) {
Benny Prijonof5d9f1f2009-10-14 13:13:18 +00001539 unsigned i;
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001540 for (i = 0; i < tp_info.specific_info_cnt; ++i) {
1541 if (tp_info.spc_info[i].type == PJMEDIA_TRANSPORT_TYPE_SRTP)
1542 {
1543 pjmedia_srtp_info *srtp_info =
1544 (pjmedia_srtp_info*) tp_info.spc_info[i].buffer;
1545
1546 call->rem_srtp_use = srtp_info->peer_use;
1547 break;
1548 }
1549 }
1550 }
1551
Benny Prijonoc97608e2007-03-23 16:34:20 +00001552 /* Override ptime, if this option is specified. */
1553 if (pjsua_var.media_cfg.ptime != 0) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001554 si->param->setting.frm_per_pkt = (pj_uint8_t)
1555 (pjsua_var.media_cfg.ptime / si->param->info.frm_ptime);
1556 if (si->param->setting.frm_per_pkt == 0)
1557 si->param->setting.frm_per_pkt = 1;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001558 }
1559
1560 /* Disable VAD, if this option is specified. */
1561 if (pjsua_var.media_cfg.no_vad) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001562 si->param->setting.vad = 0;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001563 }
1564
1565
1566 /* Optionally, application may modify other stream settings here
1567 * (such as jitter buffer parameters, codec ptime, etc.)
1568 */
Benny Prijono91e567e2007-12-28 08:51:58 +00001569 si->jb_init = pjsua_var.media_cfg.jb_init;
1570 si->jb_min_pre = pjsua_var.media_cfg.jb_min_pre;
1571 si->jb_max_pre = pjsua_var.media_cfg.jb_max_pre;
1572 si->jb_max = pjsua_var.media_cfg.jb_max;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001573
Benny Prijono8147f402007-11-21 14:50:07 +00001574 /* Set SSRC */
Benny Prijono91e567e2007-12-28 08:51:58 +00001575 si->ssrc = call->ssrc;
Benny Prijono8147f402007-11-21 14:50:07 +00001576
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001577 /* Set RTP timestamp & sequence, normally these value are intialized
1578 * automatically when stream session created, but for some cases (e.g:
1579 * call reinvite, call update) timestamp and sequence need to be kept
1580 * contigue.
1581 */
1582 si->rtp_ts = call->rtp_tx_ts;
1583 si->rtp_seq = call->rtp_tx_seq;
1584 si->rtp_seq_ts_set = call->rtp_tx_seq_ts_set;
1585
Benny Prijonoc97608e2007-03-23 16:34:20 +00001586 /* Create session based on session info. */
1587 status = pjmedia_session_create( pjsua_var.med_endpt, &sess_info,
1588 &call->med_tp,
1589 call, &call->session );
1590 if (status != PJ_SUCCESS) {
1591 return status;
1592 }
1593
1594 /* If DTMF callback is installed by application, install our
1595 * callback to the session.
1596 */
1597 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1598 pjmedia_session_set_dtmf_callback(call->session, 0,
1599 &dtmf_callback,
Benny Prijonod8179652008-01-23 20:39:07 +00001600 (void*)(long)(call->index));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001601 }
1602
1603 /* Get the port interface of the first stream in the session.
1604 * We need the port interface to add to the conference bridge.
1605 */
1606 pjmedia_session_get_port(call->session, 0, &media_port);
1607
Benny Prijonofc13bf62008-02-20 08:56:15 +00001608 /* Notify application about stream creation.
1609 * Note: application may modify media_port to point to different
1610 * media port
1611 */
1612 if (pjsua_var.ua_cfg.cb.on_stream_created) {
1613 pjsua_var.ua_cfg.cb.on_stream_created(call_id, call->session,
1614 0, &media_port);
1615 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001616
1617 /*
1618 * Add the call to conference bridge.
1619 */
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001620 {
1621 char tmp[PJSIP_MAX_URL_SIZE];
1622 pj_str_t port_name;
1623
1624 port_name.ptr = tmp;
1625 port_name.slen = pjsip_uri_print(PJSIP_URI_IN_REQ_URI,
1626 call->inv->dlg->remote.info->uri,
1627 tmp, sizeof(tmp));
1628 if (port_name.slen < 1) {
1629 port_name = pj_str("call");
1630 }
Benny Prijono40d62b62009-08-12 17:53:47 +00001631 status = pjmedia_conf_add_port( pjsua_var.mconf,
1632 call->inv->pool_prov,
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001633 media_port,
1634 &port_name,
1635 (unsigned*)&call->conf_slot);
1636 if (status != PJ_SUCCESS) {
1637 return status;
1638 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001639 }
1640
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001641 /* Call media direction */
Benny Prijono91e567e2007-12-28 08:51:58 +00001642 call->media_dir = si->dir;
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001643
1644 /* Call media state */
1645 if (call->local_hold)
1646 call->media_st = PJSUA_CALL_MEDIA_LOCAL_HOLD;
1647 else if (call->media_dir == PJMEDIA_DIR_DECODING)
1648 call->media_st = PJSUA_CALL_MEDIA_REMOTE_HOLD;
1649 else
1650 call->media_st = PJSUA_CALL_MEDIA_ACTIVE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001651 }
1652
1653 /* Print info. */
1654 {
1655 char info[80];
1656 int info_len = 0;
1657 unsigned i;
1658
1659 for (i=0; i<sess_info.stream_cnt; ++i) {
1660 int len;
1661 const char *dir;
1662 pjmedia_stream_info *strm_info = &sess_info.stream_info[i];
1663
1664 switch (strm_info->dir) {
1665 case PJMEDIA_DIR_NONE:
1666 dir = "inactive";
1667 break;
1668 case PJMEDIA_DIR_ENCODING:
1669 dir = "sendonly";
1670 break;
1671 case PJMEDIA_DIR_DECODING:
1672 dir = "recvonly";
1673 break;
1674 case PJMEDIA_DIR_ENCODING_DECODING:
1675 dir = "sendrecv";
1676 break;
1677 default:
1678 dir = "unknown";
1679 break;
1680 }
1681 len = pj_ansi_sprintf( info+info_len,
1682 ", stream #%d: %.*s (%s)", i,
1683 (int)strm_info->fmt.encoding_name.slen,
1684 strm_info->fmt.encoding_name.ptr,
1685 dir);
1686 if (len > 0)
1687 info_len += len;
1688 }
1689 PJ_LOG(4,(THIS_FILE,"Media updates%s", info));
1690 }
1691
1692 return PJ_SUCCESS;
1693}
1694
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001695/*
1696 * Get maxinum number of conference ports.
1697 */
1698PJ_DEF(unsigned) pjsua_conf_get_max_ports(void)
1699{
1700 return pjsua_var.media_cfg.max_media_ports;
1701}
1702
1703
1704/*
1705 * Get current number of active ports in the bridge.
1706 */
1707PJ_DEF(unsigned) pjsua_conf_get_active_ports(void)
1708{
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001709 unsigned ports[PJSUA_MAX_CONF_PORTS];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001710 unsigned count = PJ_ARRAY_SIZE(ports);
1711 pj_status_t status;
1712
1713 status = pjmedia_conf_enum_ports(pjsua_var.mconf, ports, &count);
1714 if (status != PJ_SUCCESS)
1715 count = 0;
1716
1717 return count;
1718}
1719
1720
1721/*
1722 * Enumerate all conference ports.
1723 */
1724PJ_DEF(pj_status_t) pjsua_enum_conf_ports(pjsua_conf_port_id id[],
1725 unsigned *count)
1726{
1727 return pjmedia_conf_enum_ports(pjsua_var.mconf, (unsigned*)id, count);
1728}
1729
1730
1731/*
1732 * Get information about the specified conference port
1733 */
1734PJ_DEF(pj_status_t) pjsua_conf_get_port_info( pjsua_conf_port_id id,
1735 pjsua_conf_port_info *info)
1736{
1737 pjmedia_conf_port_info cinfo;
Benny Prijono0498d902006-06-19 14:49:14 +00001738 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001739 pj_status_t status;
1740
1741 status = pjmedia_conf_get_port_info( pjsua_var.mconf, id, &cinfo);
1742 if (status != PJ_SUCCESS)
1743 return status;
1744
Benny Prijonoac623b32006-07-03 15:19:31 +00001745 pj_bzero(info, sizeof(*info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001746 info->slot_id = id;
1747 info->name = cinfo.name;
1748 info->clock_rate = cinfo.clock_rate;
1749 info->channel_count = cinfo.channel_count;
1750 info->samples_per_frame = cinfo.samples_per_frame;
1751 info->bits_per_sample = cinfo.bits_per_sample;
1752
1753 /* Build array of listeners */
Benny Prijonoc78c3a32006-06-16 15:54:43 +00001754 info->listener_cnt = cinfo.listener_cnt;
1755 for (i=0; i<cinfo.listener_cnt; ++i) {
1756 info->listeners[i] = cinfo.listener_slots[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001757 }
1758
1759 return PJ_SUCCESS;
1760}
1761
1762
1763/*
Benny Prijonoe909eac2006-07-27 22:04:56 +00001764 * Add arbitrary media port to PJSUA's conference bridge.
1765 */
1766PJ_DEF(pj_status_t) pjsua_conf_add_port( pj_pool_t *pool,
1767 pjmedia_port *port,
1768 pjsua_conf_port_id *p_id)
1769{
1770 pj_status_t status;
1771
1772 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
1773 port, NULL, (unsigned*)p_id);
1774 if (status != PJ_SUCCESS) {
1775 if (p_id)
1776 *p_id = PJSUA_INVALID_ID;
1777 }
1778
1779 return status;
1780}
1781
1782
1783/*
1784 * Remove arbitrary slot from the conference bridge.
1785 */
1786PJ_DEF(pj_status_t) pjsua_conf_remove_port(pjsua_conf_port_id id)
1787{
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001788 pj_status_t status;
1789
1790 status = pjmedia_conf_remove_port(pjsua_var.mconf, (unsigned)id);
1791 check_snd_dev_idle();
1792
1793 return status;
Benny Prijonoe909eac2006-07-27 22:04:56 +00001794}
1795
1796
1797/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001798 * Establish unidirectional media flow from souce to sink.
1799 */
1800PJ_DEF(pj_status_t) pjsua_conf_connect( pjsua_conf_port_id source,
1801 pjsua_conf_port_id sink)
1802{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001803 /* If sound device idle timer is active, cancel it first. */
Benny Prijono0f711b42009-05-06 19:08:43 +00001804 PJSUA_LOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001805 if (pjsua_var.snd_idle_timer.id) {
1806 pjsip_endpt_cancel_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer);
1807 pjsua_var.snd_idle_timer.id = PJ_FALSE;
1808 }
Benny Prijono0f711b42009-05-06 19:08:43 +00001809 PJSUA_UNLOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001810
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001811
Benny Prijonof798e502009-03-09 13:08:16 +00001812 /* For audio switchboard (i.e. APS-Direct):
1813 * Check if sound device need to be reopened, i.e: its attributes
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001814 * (format, clock rate, channel count) must match to peer's.
1815 * Note that sound device can be reopened only if it doesn't have
1816 * any connection.
1817 */
Benny Prijonof798e502009-03-09 13:08:16 +00001818 if (pjsua_var.is_mswitch) {
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001819 pjmedia_conf_port_info port0_info;
1820 pjmedia_conf_port_info peer_info;
1821 unsigned peer_id;
1822 pj_bool_t need_reopen = PJ_FALSE;
1823 pj_status_t status;
1824
1825 peer_id = (source!=0)? source : sink;
1826 status = pjmedia_conf_get_port_info(pjsua_var.mconf, peer_id,
1827 &peer_info);
1828 pj_assert(status == PJ_SUCCESS);
1829
1830 status = pjmedia_conf_get_port_info(pjsua_var.mconf, 0, &port0_info);
1831 pj_assert(status == PJ_SUCCESS);
1832
1833 /* Check if sound device is instantiated. */
1834 need_reopen = (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1835 !pjsua_var.no_snd);
1836
1837 /* Check if sound device need to reopen because it needs to modify
1838 * settings to match its peer. Sound device must be idle in this case
1839 * though.
1840 */
1841 if (!need_reopen &&
1842 port0_info.listener_cnt==0 && port0_info.transmitter_cnt==0)
1843 {
1844 need_reopen = (peer_info.format.id != port0_info.format.id ||
1845 peer_info.format.bitrate != port0_info.format.bitrate ||
1846 peer_info.clock_rate != port0_info.clock_rate ||
1847 peer_info.channel_count != port0_info.channel_count);
1848 }
1849
1850 if (need_reopen) {
Benny Prijonod65f78c2009-06-03 18:59:37 +00001851 if (pjsua_var.cap_dev != NULL_SND_DEV_ID) {
1852 pjmedia_aud_param param;
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001853
Benny Prijonod65f78c2009-06-03 18:59:37 +00001854 /* Create parameter based on peer info */
1855 status = create_aud_param(&param, pjsua_var.cap_dev,
1856 pjsua_var.play_dev,
1857 peer_info.clock_rate,
1858 peer_info.channel_count,
1859 peer_info.samples_per_frame,
1860 peer_info.bits_per_sample);
1861 if (status != PJ_SUCCESS) {
1862 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1863 return status;
1864 }
Benny Prijonof798e502009-03-09 13:08:16 +00001865
Benny Prijonod65f78c2009-06-03 18:59:37 +00001866 /* And peer format */
1867 if (peer_info.format.id != PJMEDIA_FORMAT_PCM) {
1868 param.flags |= PJMEDIA_AUD_DEV_CAP_EXT_FORMAT;
1869 param.ext_fmt = peer_info.format;
1870 }
Benny Prijono10454dc2009-02-21 14:21:59 +00001871
Benny Prijonod65f78c2009-06-03 18:59:37 +00001872 status = open_snd_dev(&param);
1873 if (status != PJ_SUCCESS) {
1874 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1875 return status;
1876 }
1877 } else {
1878 /* Null-audio */
1879 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1880 if (status != PJ_SUCCESS) {
1881 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1882 return status;
1883 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001884 }
1885 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001886
Benny Prijonof798e502009-03-09 13:08:16 +00001887 } else {
1888 /* The bridge version */
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001889
Benny Prijonof798e502009-03-09 13:08:16 +00001890 /* Create sound port if none is instantiated */
1891 if (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1892 !pjsua_var.no_snd)
1893 {
1894 pj_status_t status;
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001895
Benny Prijonof798e502009-03-09 13:08:16 +00001896 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1897 if (status != PJ_SUCCESS) {
1898 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1899 return status;
1900 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001901 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001902
Benny Prijonof798e502009-03-09 13:08:16 +00001903 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001904
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001905 return pjmedia_conf_connect_port(pjsua_var.mconf, source, sink, 0);
1906}
1907
1908
1909/*
1910 * Disconnect media flow from the source to destination port.
1911 */
1912PJ_DEF(pj_status_t) pjsua_conf_disconnect( pjsua_conf_port_id source,
1913 pjsua_conf_port_id sink)
1914{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001915 pj_status_t status;
1916
1917 status = pjmedia_conf_disconnect_port(pjsua_var.mconf, source, sink);
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001918 check_snd_dev_idle();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001919
1920 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001921}
1922
1923
Benny Prijono6dd967c2006-12-26 02:27:14 +00001924/*
1925 * Adjust the signal level to be transmitted from the bridge to the
1926 * specified port by making it louder or quieter.
1927 */
1928PJ_DEF(pj_status_t) pjsua_conf_adjust_tx_level(pjsua_conf_port_id slot,
1929 float level)
1930{
1931 return pjmedia_conf_adjust_tx_level(pjsua_var.mconf, slot,
1932 (int)((level-1) * 128));
1933}
1934
1935/*
1936 * Adjust the signal level to be received from the specified port (to
1937 * the bridge) by making it louder or quieter.
1938 */
1939PJ_DEF(pj_status_t) pjsua_conf_adjust_rx_level(pjsua_conf_port_id slot,
1940 float level)
1941{
1942 return pjmedia_conf_adjust_rx_level(pjsua_var.mconf, slot,
1943 (int)((level-1) * 128));
1944}
1945
1946
1947/*
1948 * Get last signal level transmitted to or received from the specified port.
1949 */
1950PJ_DEF(pj_status_t) pjsua_conf_get_signal_level(pjsua_conf_port_id slot,
1951 unsigned *tx_level,
1952 unsigned *rx_level)
1953{
1954 return pjmedia_conf_get_signal_level(pjsua_var.mconf, slot,
1955 tx_level, rx_level);
1956}
1957
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001958/*****************************************************************************
1959 * File player.
1960 */
1961
Benny Prijonod5696da2007-07-17 16:25:45 +00001962static char* get_basename(const char *path, unsigned len)
1963{
1964 char *p = ((char*)path) + len;
1965
1966 if (len==0)
1967 return p;
1968
Benny Prijono1f61a8f2007-08-16 10:11:44 +00001969 for (--p; p!=path && *p!='/' && *p!='\\'; ) --p;
Benny Prijonod5696da2007-07-17 16:25:45 +00001970
1971 return (p==path) ? p : p+1;
1972}
1973
1974
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001975/*
1976 * Create a file player, and automatically connect this player to
1977 * the conference bridge.
1978 */
1979PJ_DEF(pj_status_t) pjsua_player_create( const pj_str_t *filename,
1980 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001981 pjsua_player_id *p_id)
1982{
1983 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00001984 char path[PJ_MAXPATH];
Benny Prijonod5696da2007-07-17 16:25:45 +00001985 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001986 pjmedia_port *port;
1987 pj_status_t status;
1988
1989 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
1990 return PJ_ETOOMANY;
1991
1992 PJSUA_LOCK();
1993
1994 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
1995 if (pjsua_var.player[file_id].port == NULL)
1996 break;
1997 }
1998
1999 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
2000 /* This is unexpected */
2001 PJSUA_UNLOCK();
2002 pj_assert(0);
2003 return PJ_EBUG;
2004 }
2005
2006 pj_memcpy(path, filename->ptr, filename->slen);
2007 path[filename->slen] = '\0';
Benny Prijonod5696da2007-07-17 16:25:45 +00002008
2009 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
2010 if (!pool) {
2011 PJSUA_UNLOCK();
2012 return PJ_ENOMEM;
2013 }
2014
Nanang Izzuddin81e9bd52008-06-27 12:52:51 +00002015 status = pjmedia_wav_player_port_create(
2016 pool, path,
2017 pjsua_var.mconf_cfg.samples_per_frame *
2018 1000 / pjsua_var.media_cfg.channel_count /
2019 pjsua_var.media_cfg.clock_rate,
2020 options, 0, &port);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002021 if (status != PJ_SUCCESS) {
2022 PJSUA_UNLOCK();
2023 pjsua_perror(THIS_FILE, "Unable to open file for playback", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002024 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002025 return status;
2026 }
2027
Benny Prijono5297af92008-03-18 13:40:40 +00002028 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002029 port, filename, &slot);
2030 if (status != PJ_SUCCESS) {
2031 pjmedia_port_destroy(port);
2032 PJSUA_UNLOCK();
Benny Prijono32e4f492007-01-24 00:44:26 +00002033 pjsua_perror(THIS_FILE, "Unable to add file to conference bridge",
2034 status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002035 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002036 return status;
2037 }
2038
Benny Prijonoa66c3312007-01-21 23:12:40 +00002039 pjsua_var.player[file_id].type = 0;
Benny Prijonod5696da2007-07-17 16:25:45 +00002040 pjsua_var.player[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002041 pjsua_var.player[file_id].port = port;
2042 pjsua_var.player[file_id].slot = slot;
2043
2044 if (p_id) *p_id = file_id;
2045
2046 ++pjsua_var.player_cnt;
2047
2048 PJSUA_UNLOCK();
2049 return PJ_SUCCESS;
2050}
2051
2052
2053/*
Benny Prijonoa66c3312007-01-21 23:12:40 +00002054 * Create a file playlist media port, and automatically add the port
2055 * to the conference bridge.
2056 */
2057PJ_DEF(pj_status_t) pjsua_playlist_create( const pj_str_t file_names[],
2058 unsigned file_count,
2059 const pj_str_t *label,
2060 unsigned options,
2061 pjsua_player_id *p_id)
2062{
2063 unsigned slot, file_id, ptime;
Benny Prijonod5696da2007-07-17 16:25:45 +00002064 pj_pool_t *pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002065 pjmedia_port *port;
2066 pj_status_t status;
2067
2068 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
2069 return PJ_ETOOMANY;
2070
2071 PJSUA_LOCK();
2072
2073 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
2074 if (pjsua_var.player[file_id].port == NULL)
2075 break;
2076 }
2077
2078 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
2079 /* This is unexpected */
2080 PJSUA_UNLOCK();
2081 pj_assert(0);
2082 return PJ_EBUG;
2083 }
2084
2085
2086 ptime = pjsua_var.mconf_cfg.samples_per_frame * 1000 /
2087 pjsua_var.media_cfg.clock_rate;
2088
Benny Prijonod5696da2007-07-17 16:25:45 +00002089 pool = pjsua_pool_create("playlist", 1000, 1000);
2090 if (!pool) {
2091 PJSUA_UNLOCK();
2092 return PJ_ENOMEM;
2093 }
2094
2095 status = pjmedia_wav_playlist_create(pool, label,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002096 file_names, file_count,
2097 ptime, options, 0, &port);
2098 if (status != PJ_SUCCESS) {
2099 PJSUA_UNLOCK();
2100 pjsua_perror(THIS_FILE, "Unable to create playlist", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002101 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002102 return status;
2103 }
2104
Benny Prijonod5696da2007-07-17 16:25:45 +00002105 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002106 port, &port->info.name, &slot);
2107 if (status != PJ_SUCCESS) {
2108 pjmedia_port_destroy(port);
2109 PJSUA_UNLOCK();
2110 pjsua_perror(THIS_FILE, "Unable to add port", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002111 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002112 return status;
2113 }
2114
2115 pjsua_var.player[file_id].type = 1;
Benny Prijonod5696da2007-07-17 16:25:45 +00002116 pjsua_var.player[file_id].pool = pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002117 pjsua_var.player[file_id].port = port;
2118 pjsua_var.player[file_id].slot = slot;
2119
2120 if (p_id) *p_id = file_id;
2121
2122 ++pjsua_var.player_cnt;
2123
2124 PJSUA_UNLOCK();
2125 return PJ_SUCCESS;
2126
2127}
2128
2129
2130/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002131 * Get conference port ID associated with player.
2132 */
2133PJ_DEF(pjsua_conf_port_id) pjsua_player_get_conf_port(pjsua_player_id id)
2134{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002135 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002136 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2137
2138 return pjsua_var.player[id].slot;
2139}
2140
Benny Prijono469b1522006-12-26 03:05:17 +00002141/*
2142 * Get the media port for the player.
2143 */
Benny Prijonobe41d862008-01-18 13:24:28 +00002144PJ_DEF(pj_status_t) pjsua_player_get_port( pjsua_player_id id,
Benny Prijono469b1522006-12-26 03:05:17 +00002145 pjmedia_port **p_port)
2146{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002147 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002148 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2149 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2150
2151 *p_port = pjsua_var.player[id].port;
2152
2153 return PJ_SUCCESS;
2154}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002155
2156/*
2157 * Set playback position.
2158 */
2159PJ_DEF(pj_status_t) pjsua_player_set_pos( pjsua_player_id id,
2160 pj_uint32_t samples)
2161{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002162 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002163 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002164 PJ_ASSERT_RETURN(pjsua_var.player[id].type == 0, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002165
2166 return pjmedia_wav_player_port_set_pos(pjsua_var.player[id].port, samples);
2167}
2168
2169
2170/*
2171 * Close the file, remove the player from the bridge, and free
2172 * resources associated with the file player.
2173 */
2174PJ_DEF(pj_status_t) pjsua_player_destroy(pjsua_player_id id)
2175{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002176 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002177 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2178
2179 PJSUA_LOCK();
2180
2181 if (pjsua_var.player[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002182 pjsua_conf_remove_port(pjsua_var.player[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002183 pjmedia_port_destroy(pjsua_var.player[id].port);
2184 pjsua_var.player[id].port = NULL;
2185 pjsua_var.player[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002186 pj_pool_release(pjsua_var.player[id].pool);
2187 pjsua_var.player[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002188 pjsua_var.player_cnt--;
2189 }
2190
2191 PJSUA_UNLOCK();
2192
2193 return PJ_SUCCESS;
2194}
2195
2196
2197/*****************************************************************************
2198 * File recorder.
2199 */
2200
2201/*
2202 * Create a file recorder, and automatically connect this recorder to
2203 * the conference bridge.
2204 */
2205PJ_DEF(pj_status_t) pjsua_recorder_create( const pj_str_t *filename,
Benny Prijono8f310522006-10-20 11:08:49 +00002206 unsigned enc_type,
2207 void *enc_param,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002208 pj_ssize_t max_size,
2209 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002210 pjsua_recorder_id *p_id)
2211{
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002212 enum Format
2213 {
2214 FMT_UNKNOWN,
2215 FMT_WAV,
2216 FMT_MP3,
2217 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002218 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002219 char path[PJ_MAXPATH];
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002220 pj_str_t ext;
Benny Prijono8f310522006-10-20 11:08:49 +00002221 int file_format;
Benny Prijonod5696da2007-07-17 16:25:45 +00002222 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002223 pjmedia_port *port;
2224 pj_status_t status;
2225
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002226 /* Filename must present */
2227 PJ_ASSERT_RETURN(filename != NULL, PJ_EINVAL);
2228
Benny Prijono00cae612006-07-31 15:19:36 +00002229 /* Don't support max_size at present */
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002230 PJ_ASSERT_RETURN(max_size == 0 || max_size == -1, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002231
Benny Prijono8f310522006-10-20 11:08:49 +00002232 /* Don't support encoding type at present */
2233 PJ_ASSERT_RETURN(enc_type == 0, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002234
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002235 if (pjsua_var.rec_cnt >= PJ_ARRAY_SIZE(pjsua_var.recorder))
2236 return PJ_ETOOMANY;
2237
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002238 /* Determine the file format */
2239 ext.ptr = filename->ptr + filename->slen - 4;
2240 ext.slen = 4;
2241
2242 if (pj_stricmp2(&ext, ".wav") == 0)
2243 file_format = FMT_WAV;
2244 else if (pj_stricmp2(&ext, ".mp3") == 0)
2245 file_format = FMT_MP3;
2246 else {
2247 PJ_LOG(1,(THIS_FILE, "pjsua_recorder_create() error: unable to "
2248 "determine file format for %.*s",
2249 (int)filename->slen, filename->ptr));
2250 return PJ_ENOTSUP;
2251 }
2252
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002253 PJSUA_LOCK();
2254
2255 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.recorder); ++file_id) {
2256 if (pjsua_var.recorder[file_id].port == NULL)
2257 break;
2258 }
2259
2260 if (file_id == PJ_ARRAY_SIZE(pjsua_var.recorder)) {
2261 /* This is unexpected */
2262 PJSUA_UNLOCK();
2263 pj_assert(0);
2264 return PJ_EBUG;
2265 }
2266
2267 pj_memcpy(path, filename->ptr, filename->slen);
2268 path[filename->slen] = '\0';
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002269
Benny Prijonod5696da2007-07-17 16:25:45 +00002270 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
2271 if (!pool) {
2272 PJSUA_UNLOCK();
2273 return PJ_ENOMEM;
2274 }
2275
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002276 if (file_format == FMT_WAV) {
Benny Prijonod5696da2007-07-17 16:25:45 +00002277 status = pjmedia_wav_writer_port_create(pool, path,
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002278 pjsua_var.media_cfg.clock_rate,
2279 pjsua_var.mconf_cfg.channel_count,
2280 pjsua_var.mconf_cfg.samples_per_frame,
2281 pjsua_var.mconf_cfg.bits_per_sample,
2282 options, 0, &port);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002283 } else {
Benny Prijonoc95a0f02007-04-09 07:06:08 +00002284 PJ_UNUSED_ARG(enc_param);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002285 port = NULL;
2286 status = PJ_ENOTSUP;
2287 }
2288
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002289 if (status != PJ_SUCCESS) {
2290 PJSUA_UNLOCK();
2291 pjsua_perror(THIS_FILE, "Unable to open file for recording", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002292 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002293 return status;
2294 }
2295
Benny Prijonod5696da2007-07-17 16:25:45 +00002296 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002297 port, filename, &slot);
2298 if (status != PJ_SUCCESS) {
2299 pjmedia_port_destroy(port);
2300 PJSUA_UNLOCK();
Benny Prijonod5696da2007-07-17 16:25:45 +00002301 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002302 return status;
2303 }
2304
2305 pjsua_var.recorder[file_id].port = port;
2306 pjsua_var.recorder[file_id].slot = slot;
Benny Prijonod5696da2007-07-17 16:25:45 +00002307 pjsua_var.recorder[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002308
2309 if (p_id) *p_id = file_id;
2310
2311 ++pjsua_var.rec_cnt;
2312
2313 PJSUA_UNLOCK();
2314 return PJ_SUCCESS;
2315}
2316
2317
2318/*
2319 * Get conference port associated with recorder.
2320 */
2321PJ_DEF(pjsua_conf_port_id) pjsua_recorder_get_conf_port(pjsua_recorder_id id)
2322{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002323 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2324 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002325 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2326
2327 return pjsua_var.recorder[id].slot;
2328}
2329
Benny Prijono469b1522006-12-26 03:05:17 +00002330/*
2331 * Get the media port for the recorder.
2332 */
2333PJ_DEF(pj_status_t) pjsua_recorder_get_port( pjsua_recorder_id id,
2334 pjmedia_port **p_port)
2335{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002336 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2337 PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002338 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2339 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2340
2341 *p_port = pjsua_var.recorder[id].port;
2342 return PJ_SUCCESS;
2343}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002344
2345/*
2346 * Destroy recorder (this will complete recording).
2347 */
2348PJ_DEF(pj_status_t) pjsua_recorder_destroy(pjsua_recorder_id id)
2349{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002350 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2351 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002352 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2353
2354 PJSUA_LOCK();
2355
2356 if (pjsua_var.recorder[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002357 pjsua_conf_remove_port(pjsua_var.recorder[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002358 pjmedia_port_destroy(pjsua_var.recorder[id].port);
2359 pjsua_var.recorder[id].port = NULL;
2360 pjsua_var.recorder[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002361 pj_pool_release(pjsua_var.recorder[id].pool);
2362 pjsua_var.recorder[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002363 pjsua_var.rec_cnt--;
2364 }
2365
2366 PJSUA_UNLOCK();
2367
2368 return PJ_SUCCESS;
2369}
2370
2371
2372/*****************************************************************************
2373 * Sound devices.
2374 */
2375
2376/*
2377 * Enum sound devices.
2378 */
Benny Prijonof798e502009-03-09 13:08:16 +00002379
2380PJ_DEF(pj_status_t) pjsua_enum_aud_devs( pjmedia_aud_dev_info info[],
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002381 unsigned *count)
2382{
2383 unsigned i, dev_count;
2384
Benny Prijono10454dc2009-02-21 14:21:59 +00002385 dev_count = pjmedia_aud_dev_count();
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002386
2387 if (dev_count > *count) dev_count = *count;
2388
2389 for (i=0; i<dev_count; ++i) {
Benny Prijono10454dc2009-02-21 14:21:59 +00002390 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002391
Benny Prijono10454dc2009-02-21 14:21:59 +00002392 status = pjmedia_aud_dev_get_info(i, &info[i]);
2393 if (status != PJ_SUCCESS)
2394 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002395 }
2396
2397 *count = dev_count;
2398
2399 return PJ_SUCCESS;
2400}
Benny Prijonof798e502009-03-09 13:08:16 +00002401
2402
Benny Prijono10454dc2009-02-21 14:21:59 +00002403PJ_DEF(pj_status_t) pjsua_enum_snd_devs( pjmedia_snd_dev_info info[],
2404 unsigned *count)
2405{
2406 unsigned i, dev_count;
2407
2408 dev_count = pjmedia_aud_dev_count();
2409
2410 if (dev_count > *count) dev_count = *count;
2411 pj_bzero(info, dev_count * sizeof(pjmedia_snd_dev_info));
2412
2413 for (i=0; i<dev_count; ++i) {
2414 pjmedia_aud_dev_info ai;
2415 pj_status_t status;
2416
2417 status = pjmedia_aud_dev_get_info(i, &ai);
2418 if (status != PJ_SUCCESS)
2419 return status;
2420
2421 strncpy(info[i].name, ai.name, sizeof(info[i].name));
2422 info[i].name[sizeof(info[i].name)-1] = '\0';
2423 info[i].input_count = ai.input_count;
2424 info[i].output_count = ai.output_count;
2425 info[i].default_samples_per_sec = ai.default_samples_per_sec;
2426 }
2427
2428 *count = dev_count;
2429
2430 return PJ_SUCCESS;
2431}
Benny Prijono10454dc2009-02-21 14:21:59 +00002432
Benny Prijonof798e502009-03-09 13:08:16 +00002433/* Create audio device parameter to open the device */
2434static pj_status_t create_aud_param(pjmedia_aud_param *param,
2435 pjmedia_aud_dev_index capture_dev,
2436 pjmedia_aud_dev_index playback_dev,
2437 unsigned clock_rate,
2438 unsigned channel_count,
2439 unsigned samples_per_frame,
2440 unsigned bits_per_sample)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002441{
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002442 pj_status_t status;
2443
Benny Prijono96e74f32009-02-22 12:00:12 +00002444 /* Normalize device ID with new convention about default device ID */
2445 if (playback_dev == PJMEDIA_AUD_DEFAULT_CAPTURE_DEV)
2446 playback_dev = PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV;
2447
Benny Prijono10454dc2009-02-21 14:21:59 +00002448 /* Create default parameters for the device */
Benny Prijonof798e502009-03-09 13:08:16 +00002449 status = pjmedia_aud_dev_default_param(capture_dev, param);
Benny Prijono10454dc2009-02-21 14:21:59 +00002450 if (status != PJ_SUCCESS) {
Benny Prijono96e74f32009-02-22 12:00:12 +00002451 pjsua_perror(THIS_FILE, "Error retrieving default audio "
2452 "device parameters", status);
Benny Prijono10454dc2009-02-21 14:21:59 +00002453 return status;
2454 }
Benny Prijonof798e502009-03-09 13:08:16 +00002455 param->dir = PJMEDIA_DIR_CAPTURE_PLAYBACK;
2456 param->rec_id = capture_dev;
2457 param->play_id = playback_dev;
2458 param->clock_rate = clock_rate;
2459 param->channel_count = channel_count;
2460 param->samples_per_frame = samples_per_frame;
2461 param->bits_per_sample = bits_per_sample;
2462
2463 /* Update the setting with user preference */
2464#define update_param(cap, field) \
2465 if (pjsua_var.aud_param.flags & cap) { \
2466 param->flags |= cap; \
2467 param->field = pjsua_var.aud_param.field; \
2468 }
2469 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2470 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2471 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2472 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2473#undef update_param
2474
Benny Prijono10454dc2009-02-21 14:21:59 +00002475 /* Latency settings */
Benny Prijonof798e502009-03-09 13:08:16 +00002476 param->flags |= (PJMEDIA_AUD_DEV_CAP_INPUT_LATENCY |
2477 PJMEDIA_AUD_DEV_CAP_OUTPUT_LATENCY);
2478 param->input_latency_ms = pjsua_var.media_cfg.snd_rec_latency;
2479 param->output_latency_ms = pjsua_var.media_cfg.snd_play_latency;
2480
Benny Prijono10454dc2009-02-21 14:21:59 +00002481 /* EC settings */
2482 if (pjsua_var.media_cfg.ec_tail_len) {
Benny Prijonof798e502009-03-09 13:08:16 +00002483 param->flags |= (PJMEDIA_AUD_DEV_CAP_EC | PJMEDIA_AUD_DEV_CAP_EC_TAIL);
2484 param->ec_enabled = PJ_TRUE;
2485 param->ec_tail_ms = pjsua_var.media_cfg.ec_tail_len;
Benny Prijono10454dc2009-02-21 14:21:59 +00002486 } else {
Benny Prijonof798e502009-03-09 13:08:16 +00002487 param->flags &= ~(PJMEDIA_AUD_DEV_CAP_EC|PJMEDIA_AUD_DEV_CAP_EC_TAIL);
Benny Prijono10454dc2009-02-21 14:21:59 +00002488 }
2489
Benny Prijonof798e502009-03-09 13:08:16 +00002490 return PJ_SUCCESS;
2491}
Benny Prijono26056d82006-10-11 16:03:41 +00002492
Benny Prijonof798e502009-03-09 13:08:16 +00002493/* Internal: the first time the audio device is opened (during app
2494 * startup), retrieve the audio settings such as volume level
2495 * so that aud_get_settings() will work.
2496 */
2497static pj_status_t update_initial_aud_param()
2498{
2499 pjmedia_aud_stream *strm;
2500 pjmedia_aud_param param;
2501 pj_status_t status;
Benny Prijono26056d82006-10-11 16:03:41 +00002502
Benny Prijonof798e502009-03-09 13:08:16 +00002503 PJ_ASSERT_RETURN(pjsua_var.snd_port != NULL, PJ_EBUG);
Nanang Izzuddin3c1ae632008-08-21 15:04:20 +00002504
Benny Prijonof798e502009-03-09 13:08:16 +00002505 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono26056d82006-10-11 16:03:41 +00002506
Benny Prijonof798e502009-03-09 13:08:16 +00002507 status = pjmedia_aud_stream_get_param(strm, &param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002508 if (status != PJ_SUCCESS) {
Benny Prijonof798e502009-03-09 13:08:16 +00002509 pjsua_perror(THIS_FILE, "Error audio stream "
2510 "device parameters", status);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002511 return status;
2512 }
2513
Benny Prijonof798e502009-03-09 13:08:16 +00002514#define update_saved_param(cap, field) \
2515 if (param.flags & cap) { \
2516 pjsua_var.aud_param.flags |= cap; \
2517 pjsua_var.aud_param.field = param.field; \
2518 }
2519
2520 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2521 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2522 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2523 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2524#undef update_saved_param
2525
2526 return PJ_SUCCESS;
2527}
2528
2529/* Get format name */
2530static const char *get_fmt_name(pj_uint32_t id)
2531{
2532 static char name[8];
2533
2534 if (id == PJMEDIA_FORMAT_L16)
2535 return "PCM";
2536 pj_memcpy(name, &id, 4);
2537 name[4] = '\0';
2538 return name;
2539}
2540
2541/* Open sound device with the setting. */
2542static pj_status_t open_snd_dev(pjmedia_aud_param *param)
2543{
2544 pjmedia_port *conf_port;
2545 pj_status_t status;
2546
2547 PJ_ASSERT_RETURN(param, PJ_EINVAL);
2548
2549 /* Check if NULL sound device is used */
2550 if (NULL_SND_DEV_ID==param->rec_id || NULL_SND_DEV_ID==param->play_id) {
2551 return pjsua_set_null_snd_dev();
2552 }
2553
2554 /* Close existing sound port */
2555 close_snd_dev();
2556
2557 /* Create memory pool for sound device. */
2558 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2559 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2560
2561
2562 PJ_LOG(4,(THIS_FILE, "Opening sound device %s@%d/%d/%dms",
2563 get_fmt_name(param->ext_fmt.id),
2564 param->clock_rate, param->channel_count,
2565 param->samples_per_frame / param->channel_count * 1000 /
2566 param->clock_rate));
2567
2568 status = pjmedia_snd_port_create2( pjsua_var.snd_pool,
2569 param, &pjsua_var.snd_port);
2570 if (status != PJ_SUCCESS)
2571 return status;
2572
2573 /* Get the port0 of the conference bridge. */
2574 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2575 pj_assert(conf_port != NULL);
2576
2577 /* For conference bridge, resample if necessary if the bridge's
2578 * clock rate is different than the sound device's clock rate.
2579 */
2580 if (!pjsua_var.is_mswitch &&
2581 param->ext_fmt.id == PJMEDIA_FORMAT_PCM &&
2582 conf_port->info.clock_rate != param->clock_rate)
2583 {
2584 pjmedia_port *resample_port;
2585 unsigned resample_opt = 0;
2586
2587 if (pjsua_var.media_cfg.quality >= 3 &&
2588 pjsua_var.media_cfg.quality <= 4)
2589 {
2590 resample_opt |= PJMEDIA_RESAMPLE_USE_SMALL_FILTER;
2591 }
2592 else if (pjsua_var.media_cfg.quality < 3) {
2593 resample_opt |= PJMEDIA_RESAMPLE_USE_LINEAR;
2594 }
2595
2596 status = pjmedia_resample_port_create(pjsua_var.snd_pool,
2597 conf_port,
2598 param->clock_rate,
2599 resample_opt,
2600 &resample_port);
2601 if (status != PJ_SUCCESS) {
2602 char errmsg[PJ_ERR_MSG_SIZE];
2603 pj_strerror(status, errmsg, sizeof(errmsg));
2604 PJ_LOG(4, (THIS_FILE,
2605 "Error creating resample port: %s",
2606 errmsg));
2607 close_snd_dev();
2608 return status;
2609 }
2610
2611 conf_port = resample_port;
2612 }
2613
2614 /* Otherwise for audio switchboard, the switch's port0 setting is
2615 * derived from the sound device setting, so update the setting.
2616 */
2617 if (pjsua_var.is_mswitch) {
2618 pj_memcpy(&conf_port->info.format, &param->ext_fmt,
2619 sizeof(conf_port->info.format));
2620 conf_port->info.clock_rate = param->clock_rate;
2621 conf_port->info.samples_per_frame = param->samples_per_frame;
2622 conf_port->info.channel_count = param->channel_count;
2623 conf_port->info.bits_per_sample = 16;
2624 }
2625
2626 /* Connect sound port to the bridge */
Benny Prijono52a93912006-08-04 20:54:37 +00002627 status = pjmedia_snd_port_connect(pjsua_var.snd_port,
2628 conf_port );
2629 if (status != PJ_SUCCESS) {
2630 pjsua_perror(THIS_FILE, "Unable to connect conference port to "
2631 "sound device", status);
2632 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2633 pjsua_var.snd_port = NULL;
2634 return status;
2635 }
2636
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002637 /* Save the device IDs */
Benny Prijonof798e502009-03-09 13:08:16 +00002638 pjsua_var.cap_dev = param->rec_id;
2639 pjsua_var.play_dev = param->play_id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002640
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002641 /* Update sound device name. */
Benny Prijonof798e502009-03-09 13:08:16 +00002642 {
2643 pjmedia_aud_dev_info rec_info;
2644 pjmedia_aud_stream *strm;
2645 pjmedia_aud_param si;
2646 pj_str_t tmp;
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002647
Benny Prijonof798e502009-03-09 13:08:16 +00002648 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2649 status = pjmedia_aud_stream_get_param(strm, &si);
2650 if (status == PJ_SUCCESS)
2651 status = pjmedia_aud_dev_get_info(si.rec_id, &rec_info);
Benny Prijonof3758ee2008-02-26 15:32:16 +00002652
Benny Prijonof798e502009-03-09 13:08:16 +00002653 if (status==PJ_SUCCESS) {
2654 if (param->clock_rate != pjsua_var.media_cfg.clock_rate) {
2655 char tmp_buf[128];
2656 int tmp_buf_len = sizeof(tmp_buf);
2657
2658 tmp_buf_len = pj_ansi_snprintf(tmp_buf, sizeof(tmp_buf)-1,
2659 "%s (%dKHz)",
2660 rec_info.name,
2661 param->clock_rate/1000);
2662 pj_strset(&tmp, tmp_buf, tmp_buf_len);
2663 pjmedia_conf_set_port0_name(pjsua_var.mconf, &tmp);
2664 } else {
2665 pjmedia_conf_set_port0_name(pjsua_var.mconf,
2666 pj_cstr(&tmp, rec_info.name));
2667 }
2668 }
2669
2670 /* Any error is not major, let it through */
2671 status = PJ_SUCCESS;
2672 };
2673
2674 /* If this is the first time the audio device is open, retrieve some
2675 * settings from the device (such as volume settings) so that the
2676 * pjsua_snd_get_setting() work.
2677 */
2678 if (pjsua_var.aud_open_cnt == 0) {
2679 update_initial_aud_param();
2680 ++pjsua_var.aud_open_cnt;
Benny Prijonof3758ee2008-02-26 15:32:16 +00002681 }
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002682
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002683 return PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002684}
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002685
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002686
Benny Prijonof798e502009-03-09 13:08:16 +00002687/* Close existing sound device */
2688static void close_snd_dev(void)
2689{
2690 /* Close sound device */
2691 if (pjsua_var.snd_port) {
2692 pjmedia_aud_dev_info cap_info, play_info;
2693 pjmedia_aud_stream *strm;
2694 pjmedia_aud_param param;
2695
2696 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2697 pjmedia_aud_stream_get_param(strm, &param);
2698
2699 if (pjmedia_aud_dev_get_info(param.rec_id, &cap_info) != PJ_SUCCESS)
2700 cap_info.name[0] = '\0';
2701 if (pjmedia_aud_dev_get_info(param.play_id, &play_info) != PJ_SUCCESS)
2702 play_info.name[0] = '\0';
2703
2704 PJ_LOG(4,(THIS_FILE, "Closing %s sound playback device and "
2705 "%s sound capture device",
2706 play_info.name, cap_info.name));
2707
2708 pjmedia_snd_port_disconnect(pjsua_var.snd_port);
2709 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2710 pjsua_var.snd_port = NULL;
2711 }
2712
2713 /* Close null sound device */
2714 if (pjsua_var.null_snd) {
2715 PJ_LOG(4,(THIS_FILE, "Closing null sound device.."));
2716 pjmedia_master_port_destroy(pjsua_var.null_snd, PJ_FALSE);
2717 pjsua_var.null_snd = NULL;
2718 }
2719
2720 if (pjsua_var.snd_pool)
2721 pj_pool_release(pjsua_var.snd_pool);
2722 pjsua_var.snd_pool = NULL;
2723}
2724
2725
2726/*
2727 * Select or change sound device. Application may call this function at
2728 * any time to replace current sound device.
2729 */
2730PJ_DEF(pj_status_t) pjsua_set_snd_dev( int capture_dev,
2731 int playback_dev)
2732{
2733 unsigned alt_cr_cnt = 1;
2734 unsigned alt_cr[] = {0, 44100, 48000, 32000, 16000, 8000};
2735 unsigned i;
2736 pj_status_t status = -1;
2737
Benny Prijono23ea21a2009-06-03 12:43:06 +00002738 /* Null-sound */
2739 if (capture_dev==NULL_SND_DEV_ID && playback_dev==NULL_SND_DEV_ID) {
2740 return pjsua_set_null_snd_dev();
2741 }
2742
Benny Prijonof798e502009-03-09 13:08:16 +00002743 /* Set default clock rate */
2744 alt_cr[0] = pjsua_var.media_cfg.snd_clock_rate;
2745 if (alt_cr[0] == 0)
2746 alt_cr[0] = pjsua_var.media_cfg.clock_rate;
2747
2748 /* Allow retrying of different clock rate if we're using conference
2749 * bridge (meaning audio format is always PCM), otherwise lock on
2750 * to one clock rate.
2751 */
2752 if (pjsua_var.is_mswitch) {
2753 alt_cr_cnt = 1;
2754 } else {
2755 alt_cr_cnt = PJ_ARRAY_SIZE(alt_cr);
2756 }
2757
2758 /* Attempts to open the sound device with different clock rates */
2759 for (i=0; i<alt_cr_cnt; ++i) {
2760 pjmedia_aud_param param;
2761 unsigned samples_per_frame;
2762
2763 /* Create the default audio param */
2764 samples_per_frame = alt_cr[i] *
2765 pjsua_var.media_cfg.audio_frame_ptime *
2766 pjsua_var.media_cfg.channel_count / 1000;
2767 status = create_aud_param(&param, capture_dev, playback_dev,
2768 alt_cr[i], pjsua_var.media_cfg.channel_count,
2769 samples_per_frame, 16);
2770 if (status != PJ_SUCCESS)
2771 return status;
2772
2773 /* Open! */
2774 status = open_snd_dev(&param);
2775 if (status == PJ_SUCCESS)
2776 break;
2777 }
2778
2779 if (status != PJ_SUCCESS) {
2780 pjsua_perror(THIS_FILE, "Unable to open sound device", status);
2781 return status;
2782 }
2783
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002784 pjsua_var.no_snd = PJ_FALSE;
2785
Benny Prijonof798e502009-03-09 13:08:16 +00002786 return PJ_SUCCESS;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002787}
2788
2789
2790/*
Benny Prijonoebdf8772007-02-01 19:25:50 +00002791 * Get currently active sound devices. If sound devices has not been created
2792 * (for example when pjsua_start() is not called), it is possible that
2793 * the function returns PJ_SUCCESS with -1 as device IDs.
2794 */
2795PJ_DEF(pj_status_t) pjsua_get_snd_dev(int *capture_dev,
2796 int *playback_dev)
2797{
2798 if (capture_dev) {
2799 *capture_dev = pjsua_var.cap_dev;
2800 }
2801 if (playback_dev) {
2802 *playback_dev = pjsua_var.play_dev;
2803 }
2804
2805 return PJ_SUCCESS;
2806}
2807
2808
2809/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002810 * Use null sound device.
2811 */
2812PJ_DEF(pj_status_t) pjsua_set_null_snd_dev(void)
2813{
2814 pjmedia_port *conf_port;
2815 pj_status_t status;
2816
2817 /* Close existing sound device */
2818 close_snd_dev();
2819
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002820 /* Create memory pool for sound device. */
2821 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2822 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2823
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002824 PJ_LOG(4,(THIS_FILE, "Opening null sound device.."));
2825
2826 /* Get the port0 of the conference bridge. */
2827 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2828 pj_assert(conf_port != NULL);
2829
2830 /* Create master port, connecting port0 of the conference bridge to
2831 * a null port.
2832 */
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002833 status = pjmedia_master_port_create(pjsua_var.snd_pool, pjsua_var.null_port,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002834 conf_port, 0, &pjsua_var.null_snd);
2835 if (status != PJ_SUCCESS) {
2836 pjsua_perror(THIS_FILE, "Unable to create null sound device",
2837 status);
2838 return status;
2839 }
2840
2841 /* Start the master port */
2842 status = pjmedia_master_port_start(pjsua_var.null_snd);
2843 PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);
2844
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002845 pjsua_var.cap_dev = NULL_SND_DEV_ID;
2846 pjsua_var.play_dev = NULL_SND_DEV_ID;
2847
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002848 pjsua_var.no_snd = PJ_FALSE;
2849
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002850 return PJ_SUCCESS;
2851}
2852
2853
Benny Prijonoe909eac2006-07-27 22:04:56 +00002854
2855/*
2856 * Use no device!
2857 */
2858PJ_DEF(pjmedia_port*) pjsua_set_no_snd_dev(void)
2859{
2860 /* Close existing sound device */
2861 close_snd_dev();
2862
2863 pjsua_var.no_snd = PJ_TRUE;
2864 return pjmedia_conf_get_master_port(pjsua_var.mconf);
2865}
2866
2867
Benny Prijonof20687a2006-08-04 18:27:19 +00002868/*
2869 * Configure the AEC settings of the sound port.
2870 */
Benny Prijono5da50432006-08-07 10:24:52 +00002871PJ_DEF(pj_status_t) pjsua_set_ec(unsigned tail_ms, unsigned options)
Benny Prijonof20687a2006-08-04 18:27:19 +00002872{
2873 pjsua_var.media_cfg.ec_tail_len = tail_ms;
2874
2875 if (pjsua_var.snd_port)
Benny Prijono5da50432006-08-07 10:24:52 +00002876 return pjmedia_snd_port_set_ec( pjsua_var.snd_port, pjsua_var.pool,
2877 tail_ms, options);
Benny Prijonof20687a2006-08-04 18:27:19 +00002878
2879 return PJ_SUCCESS;
2880}
2881
2882
2883/*
2884 * Get current AEC tail length.
2885 */
Benny Prijono22dfe592006-08-06 12:07:13 +00002886PJ_DEF(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms)
Benny Prijonof20687a2006-08-04 18:27:19 +00002887{
2888 *p_tail_ms = pjsua_var.media_cfg.ec_tail_len;
2889 return PJ_SUCCESS;
2890}
2891
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00002892
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002893/*
Benny Prijonof798e502009-03-09 13:08:16 +00002894 * Check whether the sound device is currently active.
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002895 */
Benny Prijonof798e502009-03-09 13:08:16 +00002896PJ_DEF(pj_bool_t) pjsua_snd_is_active(void)
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002897{
Benny Prijonof798e502009-03-09 13:08:16 +00002898 return pjsua_var.snd_port != NULL;
2899}
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002900
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002901
Benny Prijonof798e502009-03-09 13:08:16 +00002902/*
2903 * Configure sound device setting to the sound device being used.
2904 */
2905PJ_DEF(pj_status_t) pjsua_snd_set_setting( pjmedia_aud_dev_cap cap,
2906 const void *pval,
2907 pj_bool_t keep)
2908{
Benny Prijono09b0ff62009-03-10 12:07:51 +00002909 pj_status_t status;
2910
Benny Prijonof798e502009-03-09 13:08:16 +00002911 /* Check if we are allowed to set the cap */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002912 if ((cap & pjsua_var.aud_svmask) == 0) {
Benny Prijonof798e502009-03-09 13:08:16 +00002913 return PJMEDIA_EAUD_INVCAP;
2914 }
2915
Benny Prijono09b0ff62009-03-10 12:07:51 +00002916 /* If sound is active, set it immediately */
Benny Prijonof798e502009-03-09 13:08:16 +00002917 if (pjsua_snd_is_active()) {
Benny Prijonof798e502009-03-09 13:08:16 +00002918 pjmedia_aud_stream *strm;
2919
2920 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002921 status = pjmedia_aud_stream_set_cap(strm, cap, pval);
Benny Prijonof798e502009-03-09 13:08:16 +00002922 } else {
Benny Prijono09b0ff62009-03-10 12:07:51 +00002923 status = PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002924 }
Benny Prijono09b0ff62009-03-10 12:07:51 +00002925
2926 if (status != PJ_SUCCESS)
2927 return status;
2928
2929 /* Save in internal param for later device open */
2930 if (keep) {
2931 status = pjmedia_aud_param_set_cap(&pjsua_var.aud_param,
2932 cap, pval);
2933 }
2934
2935 return status;
Benny Prijonof798e502009-03-09 13:08:16 +00002936}
2937
2938/*
2939 * Retrieve a sound device setting.
2940 */
2941PJ_DEF(pj_status_t) pjsua_snd_get_setting( pjmedia_aud_dev_cap cap,
2942 void *pval)
2943{
2944 /* If sound device has never been opened before, open it to
2945 * retrieve the initial setting from the device (e.g. audio
2946 * volume)
2947 */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002948 if (pjsua_var.aud_open_cnt==0) {
2949 PJ_LOG(4,(THIS_FILE, "Opening sound device to get initial settings"));
Benny Prijonof798e502009-03-09 13:08:16 +00002950 pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002951 close_snd_dev();
2952 }
Benny Prijonof798e502009-03-09 13:08:16 +00002953
2954 if (pjsua_snd_is_active()) {
2955 /* Sound is active, retrieve from device directly */
2956 pjmedia_aud_stream *strm;
2957
2958 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2959 return pjmedia_aud_stream_get_cap(strm, cap, pval);
2960 } else {
2961 /* Otherwise retrieve from internal param */
2962 return pjmedia_aud_param_get_cap(&pjsua_var.aud_param,
2963 cap, pval);
2964 }
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002965}
2966
2967
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002968/*****************************************************************************
2969 * Codecs.
2970 */
2971
2972/*
2973 * Enum all supported codecs in the system.
2974 */
2975PJ_DEF(pj_status_t) pjsua_enum_codecs( pjsua_codec_info id[],
2976 unsigned *p_count )
2977{
2978 pjmedia_codec_mgr *codec_mgr;
2979 pjmedia_codec_info info[32];
2980 unsigned i, count, prio[32];
2981 pj_status_t status;
2982
2983 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
2984 count = PJ_ARRAY_SIZE(info);
2985 status = pjmedia_codec_mgr_enum_codecs( codec_mgr, &count, info, prio);
2986 if (status != PJ_SUCCESS) {
2987 *p_count = 0;
2988 return status;
2989 }
2990
2991 if (count > *p_count) count = *p_count;
2992
2993 for (i=0; i<count; ++i) {
2994 pjmedia_codec_info_to_id(&info[i], id[i].buf_, sizeof(id[i].buf_));
2995 id[i].codec_id = pj_str(id[i].buf_);
2996 id[i].priority = (pj_uint8_t) prio[i];
2997 }
2998
2999 *p_count = count;
3000
3001 return PJ_SUCCESS;
3002}
3003
3004
3005/*
3006 * Change codec priority.
3007 */
3008PJ_DEF(pj_status_t) pjsua_codec_set_priority( const pj_str_t *codec_id,
3009 pj_uint8_t priority )
3010{
Benny Prijono88accae2008-06-26 15:48:14 +00003011 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003012 pjmedia_codec_mgr *codec_mgr;
3013
3014 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3015
Benny Prijono88accae2008-06-26 15:48:14 +00003016 if (codec_id->slen==1 && *codec_id->ptr=='*')
3017 codec_id = &all;
3018
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003019 return pjmedia_codec_mgr_set_codec_priority(codec_mgr, codec_id,
3020 priority);
3021}
3022
3023
3024/*
3025 * Get codec parameters.
3026 */
3027PJ_DEF(pj_status_t) pjsua_codec_get_param( const pj_str_t *codec_id,
3028 pjmedia_codec_param *param )
3029{
Benny Prijono88accae2008-06-26 15:48:14 +00003030 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003031 const pjmedia_codec_info *info;
3032 pjmedia_codec_mgr *codec_mgr;
3033 unsigned count = 1;
3034 pj_status_t status;
3035
3036 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3037
Benny Prijono88accae2008-06-26 15:48:14 +00003038 if (codec_id->slen==1 && *codec_id->ptr=='*')
3039 codec_id = &all;
3040
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003041 status = pjmedia_codec_mgr_find_codecs_by_id(codec_mgr, codec_id,
3042 &count, &info, NULL);
3043 if (status != PJ_SUCCESS)
3044 return status;
3045
3046 if (count != 1)
3047 return PJ_ENOTFOUND;
3048
3049 status = pjmedia_codec_mgr_get_default_param( codec_mgr, info, param);
3050 return status;
3051}
3052
3053
3054/*
3055 * Set codec parameters.
3056 */
Nanang Izzuddin06839e72010-01-27 11:48:31 +00003057PJ_DEF(pj_status_t) pjsua_codec_set_param( const pj_str_t *codec_id,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003058 const pjmedia_codec_param *param)
3059{
Nanang Izzuddin06839e72010-01-27 11:48:31 +00003060 const pjmedia_codec_info *info[2];
3061 pjmedia_codec_mgr *codec_mgr;
3062 unsigned count = 2;
3063 pj_status_t status;
3064
3065 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3066
3067 status = pjmedia_codec_mgr_find_codecs_by_id(codec_mgr, codec_id,
3068 &count, info, NULL);
3069 if (status != PJ_SUCCESS)
3070 return status;
3071
3072 /* Codec ID should be specific, except for G.722.1 */
3073 if (count > 1 &&
3074 pj_strnicmp2(codec_id, "G7221/16", 8) != 0 &&
3075 pj_strnicmp2(codec_id, "G7221/32", 8) != 0)
3076 {
3077 pj_assert(!"Codec ID is not specific");
3078 return PJ_ETOOMANY;
3079 }
3080
3081 status = pjmedia_codec_mgr_set_default_param(codec_mgr, info[0], param);
3082 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003083}