blob: 311c015cbbbff3a2d6a74c42f5a28d65c187ad5e [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;
Benny Prijonoa310bd22008-06-27 21:19:44 +00001304
1305 if ((int)i == call->audio_idx)
1306 continue;
1307
Nanang Izzuddin16852b32010-06-04 13:41:34 +00001308 m = pjmedia_sdp_media_clone_deactivate(pool, rem_m);
Benny Prijonoa310bd22008-06-27 21:19:44 +00001309 if (i==sdp->media_count)
1310 sdp->media[sdp->media_count++] = m;
1311 else {
1312 pj_array_insert(sdp->media, sizeof(sdp->media[0]),
1313 sdp->media_count, i, &m);
1314 ++sdp->media_count;
1315 }
1316 }
1317 }
1318
Benny Prijono6ba8c542007-10-16 01:34:14 +00001319 /* Add NAT info in the SDP */
1320 if (pjsua_var.ua_cfg.nat_type_in_sdp) {
1321 pjmedia_sdp_attr *a;
1322 pj_str_t value;
1323 char nat_info[80];
1324
1325 value.ptr = nat_info;
1326 if (pjsua_var.ua_cfg.nat_type_in_sdp == 1) {
1327 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1328 "%d", pjsua_var.nat_type);
1329 } else {
1330 const char *type_name = pj_stun_get_nat_name(pjsua_var.nat_type);
1331 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1332 "%d %s",
1333 pjsua_var.nat_type,
1334 type_name);
1335 }
1336
1337 a = pjmedia_sdp_attr_create(pool, "X-nat", &value);
1338
1339 pjmedia_sdp_attr_add(&sdp->attr_count, sdp->attr, a);
1340
1341 }
1342
Benny Prijonod8179652008-01-23 20:39:07 +00001343 /* Give the SDP to media transport */
Benny Prijono224b4e22008-06-19 14:10:28 +00001344 status = pjmedia_transport_encode_sdp(call->med_tp, pool, sdp, rem_sdp,
Benny Prijonoa310bd22008-06-27 21:19:44 +00001345 call->audio_idx);
Benny Prijono25b2ea12008-01-24 19:20:54 +00001346 if (status != PJ_SUCCESS) {
1347 if (sip_status_code) *sip_status_code = PJSIP_SC_NOT_ACCEPTABLE;
Benny Prijono224b4e22008-06-19 14:10:28 +00001348 return status;
Benny Prijono25b2ea12008-01-24 19:20:54 +00001349 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001350
Nanang Izzuddind89cc3a2010-05-13 05:22:51 +00001351#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
1352 /* Check if SRTP is in optional mode and configured to use duplicated
1353 * media, i.e: secured and unsecured version, in the SDP offer.
1354 */
1355 if (!rem_sdp &&
1356 pjsua_var.acc[call->acc_id].cfg.use_srtp == PJMEDIA_SRTP_OPTIONAL &&
1357 pjsua_var.acc[call->acc_id].cfg.srtp_optional_dup_offer)
1358 {
1359 unsigned i;
1360
1361 for (i = 0; i < sdp->media_count; ++i) {
1362 pjmedia_sdp_media *m = sdp->media[i];
1363
1364 /* Check if this media is unsecured but has SDP "crypto"
1365 * attribute.
1366 */
1367 if (pj_stricmp2(&m->desc.transport, "RTP/AVP") == 0 &&
1368 pjmedia_sdp_media_find_attr2(m, "crypto", NULL) != NULL)
1369 {
1370 pjmedia_sdp_media *new_m;
1371
1372 /* Duplicate this media and apply secured transport */
1373 new_m = pjmedia_sdp_media_clone(pool, m);
1374 pj_strdup2(pool, &new_m->desc.transport, "RTP/SAVP");
1375
1376 /* Remove the "crypto" attribute in the unsecured media */
1377 pjmedia_sdp_media_remove_all_attr(m, "crypto");
1378
1379 /* Insert the new media before the unsecured media */
1380 if (sdp->media_count < PJMEDIA_MAX_SDP_MEDIA) {
1381 pj_array_insert(sdp->media, sizeof(new_m),
1382 sdp->media_count, i, &new_m);
1383 ++sdp->media_count;
1384 ++i;
1385 }
1386 }
1387 }
1388 }
1389#endif
1390
Benny Prijonof5d9f1f2009-10-14 13:13:18 +00001391 /* Update currently advertised RTP source address */
1392 pj_memcpy(&call->med_rtp_addr, &tpinfo.sock_info.rtp_addr_name,
1393 sizeof(pj_sockaddr));
1394
Benny Prijonoc97608e2007-03-23 16:34:20 +00001395 *p_sdp = sdp;
1396 return PJ_SUCCESS;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001397}
1398
1399
1400static void stop_media_session(pjsua_call_id call_id)
1401{
1402 pjsua_call *call = &pjsua_var.calls[call_id];
1403
1404 if (call->conf_slot != PJSUA_INVALID_ID) {
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001405 if (pjsua_var.mconf) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001406 pjsua_conf_remove_port(call->conf_slot);
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001407 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001408 call->conf_slot = PJSUA_INVALID_ID;
1409 }
1410
1411 if (call->session) {
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001412 pjmedia_rtcp_stat stat;
1413
Nanang Izzuddin8ea7eb02009-11-09 08:11:34 +00001414 if ((call->media_dir & PJMEDIA_DIR_ENCODING) &&
1415 (pjmedia_session_get_stream_stat(call->session, 0, &stat)
1416 == PJ_SUCCESS))
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001417 {
1418 /* Save RTP timestamp & sequence, so when media session is
1419 * restarted, those values will be restored as the initial
1420 * RTP timestamp & sequence of the new media session. So in
1421 * the same call session, RTP timestamp and sequence are
1422 * guaranteed to be contigue.
1423 */
1424 call->rtp_tx_seq_ts_set = 1 | (1 << 1);
1425 call->rtp_tx_seq = stat.rtp_tx_last_seq;
1426 call->rtp_tx_ts = stat.rtp_tx_last_ts;
1427 }
1428
Benny Prijonofc13bf62008-02-20 08:56:15 +00001429 if (pjsua_var.ua_cfg.cb.on_stream_destroyed) {
1430 pjsua_var.ua_cfg.cb.on_stream_destroyed(call_id, call->session, 0);
1431 }
1432
Benny Prijonoc97608e2007-03-23 16:34:20 +00001433 pjmedia_session_destroy(call->session);
1434 call->session = NULL;
1435
1436 PJ_LOG(4,(THIS_FILE, "Media session for call %d is destroyed",
1437 call_id));
1438
1439 }
1440
1441 call->media_st = PJSUA_CALL_MEDIA_NONE;
1442}
1443
1444pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id)
1445{
1446 pjsua_call *call = &pjsua_var.calls[call_id];
1447
1448 stop_media_session(call_id);
1449
Benny Prijono224b4e22008-06-19 14:10:28 +00001450 if (call->med_tp_st != PJSUA_MED_TP_IDLE) {
1451 pjmedia_transport_media_stop(call->med_tp);
1452 call->med_tp_st = PJSUA_MED_TP_IDLE;
1453 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001454
Benny Prijono311b63f2008-07-14 11:31:40 +00001455 if (call->med_orig && call->med_tp && call->med_tp != call->med_orig) {
Benny Prijonod8179652008-01-23 20:39:07 +00001456 pjmedia_transport_close(call->med_tp);
1457 call->med_tp = call->med_orig;
1458 }
Nanang Izzuddin670f71b2009-01-20 14:05:54 +00001459
1460 check_snd_dev_idle();
1461
Benny Prijonoc97608e2007-03-23 16:34:20 +00001462 return PJ_SUCCESS;
1463}
1464
1465
1466/*
1467 * DTMF callback from the stream.
1468 */
1469static void dtmf_callback(pjmedia_stream *strm, void *user_data,
1470 int digit)
1471{
1472 PJ_UNUSED_ARG(strm);
1473
Benny Prijono0c068262008-02-14 14:38:52 +00001474 /* For discussions about call mutex protection related to this
1475 * callback, please see ticket #460:
1476 * http://trac.pjsip.org/repos/ticket/460#comment:4
1477 */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001478 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1479 pjsua_call_id call_id;
1480
Benny Prijonod8179652008-01-23 20:39:07 +00001481 call_id = (pjsua_call_id)(long)user_data;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001482 pjsua_var.ua_cfg.cb.on_dtmf_digit(call_id, digit);
1483 }
1484}
1485
1486
1487pj_status_t pjsua_media_channel_update(pjsua_call_id call_id,
Benny Prijono224b4e22008-06-19 14:10:28 +00001488 const pjmedia_sdp_session *local_sdp,
Benny Prijonodbce2cf2007-03-28 16:24:00 +00001489 const pjmedia_sdp_session *remote_sdp)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001490{
1491 int prev_media_st = 0;
1492 pjsua_call *call = &pjsua_var.calls[call_id];
1493 pjmedia_session_info sess_info;
Benny Prijono91e567e2007-12-28 08:51:58 +00001494 pjmedia_stream_info *si = NULL;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001495 pjmedia_port *media_port;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001496 pj_status_t status;
1497
Benny Prijono4e5c3f52010-04-29 12:11:51 +00001498 if (!pjsua_var.med_endpt) {
1499 /* We're being shutdown */
1500 return PJ_EBUSY;
1501 }
1502
Benny Prijonoc97608e2007-03-23 16:34:20 +00001503 /* Destroy existing media session, if any. */
1504 prev_media_st = call->media_st;
1505 stop_media_session(call->index);
1506
1507 /* Create media session info based on SDP parameters.
Benny Prijonoc97608e2007-03-23 16:34:20 +00001508 */
Benny Prijono40d62b62009-08-12 17:53:47 +00001509 status = pjmedia_session_info_from_sdp( call->inv->pool_prov,
Benny Prijonoc97608e2007-03-23 16:34:20 +00001510 pjsua_var.med_endpt,
Benny Prijono91e567e2007-12-28 08:51:58 +00001511 PJMEDIA_MAX_SDP_MEDIA, &sess_info,
Benny Prijonoc97608e2007-03-23 16:34:20 +00001512 local_sdp, remote_sdp);
1513 if (status != PJ_SUCCESS)
1514 return status;
1515
Benny Prijonoa310bd22008-06-27 21:19:44 +00001516 /* Find which session is audio */
1517 PJ_ASSERT_RETURN(call->audio_idx != -1, PJ_EBUG);
1518 PJ_ASSERT_RETURN(call->audio_idx < (int)sess_info.stream_cnt, PJ_EBUG);
1519 si = &sess_info.stream_info[call->audio_idx];
Benny Prijono91e567e2007-12-28 08:51:58 +00001520
1521 /* Reset session info with only one media stream */
1522 sess_info.stream_cnt = 1;
1523 if (si != &sess_info.stream_info[0])
1524 pj_memcpy(&sess_info.stream_info[0], si, sizeof(pjmedia_stream_info));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001525
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001526 /* Check if no media is active */
Benny Prijono91e567e2007-12-28 08:51:58 +00001527 if (sess_info.stream_cnt == 0 || si->dir == PJMEDIA_DIR_NONE)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001528 {
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001529 /* Call media state */
1530 call->media_st = PJSUA_CALL_MEDIA_NONE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001531
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001532 /* Call media direction */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001533 call->media_dir = PJMEDIA_DIR_NONE;
1534
Benny Prijonod8179652008-01-23 20:39:07 +00001535 /* Shutdown transport's session */
1536 pjmedia_transport_media_stop(call->med_tp);
Benny Prijono224b4e22008-06-19 14:10:28 +00001537 call->med_tp_st = PJSUA_MED_TP_IDLE;
Benny Prijono667952e2007-04-02 19:27:54 +00001538
Benny Prijonoc97608e2007-03-23 16:34:20 +00001539 /* No need because we need keepalive? */
1540
Benny Prijono68f9e4f2008-03-21 08:56:02 +00001541 /* Close upper entry of transport stack */
1542 if (call->med_orig && (call->med_tp != call->med_orig)) {
1543 pjmedia_transport_close(call->med_tp);
1544 call->med_tp = call->med_orig;
1545 }
1546
Benny Prijonoc97608e2007-03-23 16:34:20 +00001547 } else {
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001548 pjmedia_transport_info tp_info;
1549
Benny Prijono224b4e22008-06-19 14:10:28 +00001550 /* Start/restart media transport */
Benny Prijonod8179652008-01-23 20:39:07 +00001551 status = pjmedia_transport_media_start(call->med_tp,
Benny Prijono40d62b62009-08-12 17:53:47 +00001552 call->inv->pool_prov,
Benny Prijonod8179652008-01-23 20:39:07 +00001553 local_sdp, remote_sdp, 0);
1554 if (status != PJ_SUCCESS)
1555 return status;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001556
Benny Prijono224b4e22008-06-19 14:10:28 +00001557 call->med_tp_st = PJSUA_MED_TP_RUNNING;
1558
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001559 /* Get remote SRTP usage policy */
1560 pjmedia_transport_info_init(&tp_info);
1561 pjmedia_transport_get_info(call->med_tp, &tp_info);
1562 if (tp_info.specific_info_cnt > 0) {
Benny Prijonof5d9f1f2009-10-14 13:13:18 +00001563 unsigned i;
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001564 for (i = 0; i < tp_info.specific_info_cnt; ++i) {
1565 if (tp_info.spc_info[i].type == PJMEDIA_TRANSPORT_TYPE_SRTP)
1566 {
1567 pjmedia_srtp_info *srtp_info =
1568 (pjmedia_srtp_info*) tp_info.spc_info[i].buffer;
1569
1570 call->rem_srtp_use = srtp_info->peer_use;
1571 break;
1572 }
1573 }
1574 }
1575
Benny Prijonoc97608e2007-03-23 16:34:20 +00001576 /* Override ptime, if this option is specified. */
1577 if (pjsua_var.media_cfg.ptime != 0) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001578 si->param->setting.frm_per_pkt = (pj_uint8_t)
1579 (pjsua_var.media_cfg.ptime / si->param->info.frm_ptime);
1580 if (si->param->setting.frm_per_pkt == 0)
1581 si->param->setting.frm_per_pkt = 1;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001582 }
1583
1584 /* Disable VAD, if this option is specified. */
1585 if (pjsua_var.media_cfg.no_vad) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001586 si->param->setting.vad = 0;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001587 }
1588
1589
1590 /* Optionally, application may modify other stream settings here
1591 * (such as jitter buffer parameters, codec ptime, etc.)
1592 */
Benny Prijono91e567e2007-12-28 08:51:58 +00001593 si->jb_init = pjsua_var.media_cfg.jb_init;
1594 si->jb_min_pre = pjsua_var.media_cfg.jb_min_pre;
1595 si->jb_max_pre = pjsua_var.media_cfg.jb_max_pre;
1596 si->jb_max = pjsua_var.media_cfg.jb_max;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001597
Benny Prijono8147f402007-11-21 14:50:07 +00001598 /* Set SSRC */
Benny Prijono91e567e2007-12-28 08:51:58 +00001599 si->ssrc = call->ssrc;
Benny Prijono8147f402007-11-21 14:50:07 +00001600
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001601 /* Set RTP timestamp & sequence, normally these value are intialized
1602 * automatically when stream session created, but for some cases (e.g:
1603 * call reinvite, call update) timestamp and sequence need to be kept
1604 * contigue.
1605 */
1606 si->rtp_ts = call->rtp_tx_ts;
1607 si->rtp_seq = call->rtp_tx_seq;
1608 si->rtp_seq_ts_set = call->rtp_tx_seq_ts_set;
1609
Benny Prijonoc97608e2007-03-23 16:34:20 +00001610 /* Create session based on session info. */
1611 status = pjmedia_session_create( pjsua_var.med_endpt, &sess_info,
1612 &call->med_tp,
1613 call, &call->session );
1614 if (status != PJ_SUCCESS) {
1615 return status;
1616 }
1617
1618 /* If DTMF callback is installed by application, install our
1619 * callback to the session.
1620 */
1621 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1622 pjmedia_session_set_dtmf_callback(call->session, 0,
1623 &dtmf_callback,
Benny Prijonod8179652008-01-23 20:39:07 +00001624 (void*)(long)(call->index));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001625 }
1626
1627 /* Get the port interface of the first stream in the session.
1628 * We need the port interface to add to the conference bridge.
1629 */
1630 pjmedia_session_get_port(call->session, 0, &media_port);
1631
Benny Prijonofc13bf62008-02-20 08:56:15 +00001632 /* Notify application about stream creation.
1633 * Note: application may modify media_port to point to different
1634 * media port
1635 */
1636 if (pjsua_var.ua_cfg.cb.on_stream_created) {
1637 pjsua_var.ua_cfg.cb.on_stream_created(call_id, call->session,
1638 0, &media_port);
1639 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001640
1641 /*
1642 * Add the call to conference bridge.
1643 */
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001644 {
1645 char tmp[PJSIP_MAX_URL_SIZE];
1646 pj_str_t port_name;
1647
1648 port_name.ptr = tmp;
1649 port_name.slen = pjsip_uri_print(PJSIP_URI_IN_REQ_URI,
1650 call->inv->dlg->remote.info->uri,
1651 tmp, sizeof(tmp));
1652 if (port_name.slen < 1) {
1653 port_name = pj_str("call");
1654 }
Benny Prijono40d62b62009-08-12 17:53:47 +00001655 status = pjmedia_conf_add_port( pjsua_var.mconf,
1656 call->inv->pool_prov,
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001657 media_port,
1658 &port_name,
1659 (unsigned*)&call->conf_slot);
1660 if (status != PJ_SUCCESS) {
1661 return status;
1662 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001663 }
1664
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001665 /* Call media direction */
Benny Prijono91e567e2007-12-28 08:51:58 +00001666 call->media_dir = si->dir;
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001667
1668 /* Call media state */
1669 if (call->local_hold)
1670 call->media_st = PJSUA_CALL_MEDIA_LOCAL_HOLD;
1671 else if (call->media_dir == PJMEDIA_DIR_DECODING)
1672 call->media_st = PJSUA_CALL_MEDIA_REMOTE_HOLD;
1673 else
1674 call->media_st = PJSUA_CALL_MEDIA_ACTIVE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001675 }
1676
1677 /* Print info. */
1678 {
1679 char info[80];
1680 int info_len = 0;
1681 unsigned i;
1682
1683 for (i=0; i<sess_info.stream_cnt; ++i) {
1684 int len;
1685 const char *dir;
1686 pjmedia_stream_info *strm_info = &sess_info.stream_info[i];
1687
1688 switch (strm_info->dir) {
1689 case PJMEDIA_DIR_NONE:
1690 dir = "inactive";
1691 break;
1692 case PJMEDIA_DIR_ENCODING:
1693 dir = "sendonly";
1694 break;
1695 case PJMEDIA_DIR_DECODING:
1696 dir = "recvonly";
1697 break;
1698 case PJMEDIA_DIR_ENCODING_DECODING:
1699 dir = "sendrecv";
1700 break;
1701 default:
1702 dir = "unknown";
1703 break;
1704 }
1705 len = pj_ansi_sprintf( info+info_len,
1706 ", stream #%d: %.*s (%s)", i,
1707 (int)strm_info->fmt.encoding_name.slen,
1708 strm_info->fmt.encoding_name.ptr,
1709 dir);
1710 if (len > 0)
1711 info_len += len;
1712 }
1713 PJ_LOG(4,(THIS_FILE,"Media updates%s", info));
1714 }
1715
1716 return PJ_SUCCESS;
1717}
1718
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001719/*
1720 * Get maxinum number of conference ports.
1721 */
1722PJ_DEF(unsigned) pjsua_conf_get_max_ports(void)
1723{
1724 return pjsua_var.media_cfg.max_media_ports;
1725}
1726
1727
1728/*
1729 * Get current number of active ports in the bridge.
1730 */
1731PJ_DEF(unsigned) pjsua_conf_get_active_ports(void)
1732{
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001733 unsigned ports[PJSUA_MAX_CONF_PORTS];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001734 unsigned count = PJ_ARRAY_SIZE(ports);
1735 pj_status_t status;
1736
1737 status = pjmedia_conf_enum_ports(pjsua_var.mconf, ports, &count);
1738 if (status != PJ_SUCCESS)
1739 count = 0;
1740
1741 return count;
1742}
1743
1744
1745/*
1746 * Enumerate all conference ports.
1747 */
1748PJ_DEF(pj_status_t) pjsua_enum_conf_ports(pjsua_conf_port_id id[],
1749 unsigned *count)
1750{
1751 return pjmedia_conf_enum_ports(pjsua_var.mconf, (unsigned*)id, count);
1752}
1753
1754
1755/*
1756 * Get information about the specified conference port
1757 */
1758PJ_DEF(pj_status_t) pjsua_conf_get_port_info( pjsua_conf_port_id id,
1759 pjsua_conf_port_info *info)
1760{
1761 pjmedia_conf_port_info cinfo;
Benny Prijono0498d902006-06-19 14:49:14 +00001762 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001763 pj_status_t status;
1764
1765 status = pjmedia_conf_get_port_info( pjsua_var.mconf, id, &cinfo);
1766 if (status != PJ_SUCCESS)
1767 return status;
1768
Benny Prijonoac623b32006-07-03 15:19:31 +00001769 pj_bzero(info, sizeof(*info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001770 info->slot_id = id;
1771 info->name = cinfo.name;
1772 info->clock_rate = cinfo.clock_rate;
1773 info->channel_count = cinfo.channel_count;
1774 info->samples_per_frame = cinfo.samples_per_frame;
1775 info->bits_per_sample = cinfo.bits_per_sample;
1776
1777 /* Build array of listeners */
Benny Prijonoc78c3a32006-06-16 15:54:43 +00001778 info->listener_cnt = cinfo.listener_cnt;
1779 for (i=0; i<cinfo.listener_cnt; ++i) {
1780 info->listeners[i] = cinfo.listener_slots[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001781 }
1782
1783 return PJ_SUCCESS;
1784}
1785
1786
1787/*
Benny Prijonoe909eac2006-07-27 22:04:56 +00001788 * Add arbitrary media port to PJSUA's conference bridge.
1789 */
1790PJ_DEF(pj_status_t) pjsua_conf_add_port( pj_pool_t *pool,
1791 pjmedia_port *port,
1792 pjsua_conf_port_id *p_id)
1793{
1794 pj_status_t status;
1795
1796 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
1797 port, NULL, (unsigned*)p_id);
1798 if (status != PJ_SUCCESS) {
1799 if (p_id)
1800 *p_id = PJSUA_INVALID_ID;
1801 }
1802
1803 return status;
1804}
1805
1806
1807/*
1808 * Remove arbitrary slot from the conference bridge.
1809 */
1810PJ_DEF(pj_status_t) pjsua_conf_remove_port(pjsua_conf_port_id id)
1811{
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001812 pj_status_t status;
1813
1814 status = pjmedia_conf_remove_port(pjsua_var.mconf, (unsigned)id);
1815 check_snd_dev_idle();
1816
1817 return status;
Benny Prijonoe909eac2006-07-27 22:04:56 +00001818}
1819
1820
1821/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001822 * Establish unidirectional media flow from souce to sink.
1823 */
1824PJ_DEF(pj_status_t) pjsua_conf_connect( pjsua_conf_port_id source,
1825 pjsua_conf_port_id sink)
1826{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001827 /* If sound device idle timer is active, cancel it first. */
Benny Prijono0f711b42009-05-06 19:08:43 +00001828 PJSUA_LOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001829 if (pjsua_var.snd_idle_timer.id) {
1830 pjsip_endpt_cancel_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer);
1831 pjsua_var.snd_idle_timer.id = PJ_FALSE;
1832 }
Benny Prijono0f711b42009-05-06 19:08:43 +00001833 PJSUA_UNLOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001834
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001835
Benny Prijonof798e502009-03-09 13:08:16 +00001836 /* For audio switchboard (i.e. APS-Direct):
1837 * Check if sound device need to be reopened, i.e: its attributes
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001838 * (format, clock rate, channel count) must match to peer's.
1839 * Note that sound device can be reopened only if it doesn't have
1840 * any connection.
1841 */
Benny Prijonof798e502009-03-09 13:08:16 +00001842 if (pjsua_var.is_mswitch) {
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001843 pjmedia_conf_port_info port0_info;
1844 pjmedia_conf_port_info peer_info;
1845 unsigned peer_id;
1846 pj_bool_t need_reopen = PJ_FALSE;
1847 pj_status_t status;
1848
1849 peer_id = (source!=0)? source : sink;
1850 status = pjmedia_conf_get_port_info(pjsua_var.mconf, peer_id,
1851 &peer_info);
1852 pj_assert(status == PJ_SUCCESS);
1853
1854 status = pjmedia_conf_get_port_info(pjsua_var.mconf, 0, &port0_info);
1855 pj_assert(status == PJ_SUCCESS);
1856
1857 /* Check if sound device is instantiated. */
1858 need_reopen = (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1859 !pjsua_var.no_snd);
1860
1861 /* Check if sound device need to reopen because it needs to modify
1862 * settings to match its peer. Sound device must be idle in this case
1863 * though.
1864 */
1865 if (!need_reopen &&
1866 port0_info.listener_cnt==0 && port0_info.transmitter_cnt==0)
1867 {
1868 need_reopen = (peer_info.format.id != port0_info.format.id ||
1869 peer_info.format.bitrate != port0_info.format.bitrate ||
1870 peer_info.clock_rate != port0_info.clock_rate ||
1871 peer_info.channel_count != port0_info.channel_count);
1872 }
1873
1874 if (need_reopen) {
Benny Prijonod65f78c2009-06-03 18:59:37 +00001875 if (pjsua_var.cap_dev != NULL_SND_DEV_ID) {
1876 pjmedia_aud_param param;
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001877
Benny Prijonod65f78c2009-06-03 18:59:37 +00001878 /* Create parameter based on peer info */
1879 status = create_aud_param(&param, pjsua_var.cap_dev,
1880 pjsua_var.play_dev,
1881 peer_info.clock_rate,
1882 peer_info.channel_count,
1883 peer_info.samples_per_frame,
1884 peer_info.bits_per_sample);
1885 if (status != PJ_SUCCESS) {
1886 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1887 return status;
1888 }
Benny Prijonof798e502009-03-09 13:08:16 +00001889
Benny Prijonod65f78c2009-06-03 18:59:37 +00001890 /* And peer format */
1891 if (peer_info.format.id != PJMEDIA_FORMAT_PCM) {
1892 param.flags |= PJMEDIA_AUD_DEV_CAP_EXT_FORMAT;
1893 param.ext_fmt = peer_info.format;
1894 }
Benny Prijono10454dc2009-02-21 14:21:59 +00001895
Benny Prijonod65f78c2009-06-03 18:59:37 +00001896 status = open_snd_dev(&param);
1897 if (status != PJ_SUCCESS) {
1898 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1899 return status;
1900 }
1901 } else {
1902 /* Null-audio */
1903 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1904 if (status != PJ_SUCCESS) {
1905 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1906 return status;
1907 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001908 }
1909 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001910
Benny Prijonof798e502009-03-09 13:08:16 +00001911 } else {
1912 /* The bridge version */
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001913
Benny Prijonof798e502009-03-09 13:08:16 +00001914 /* Create sound port if none is instantiated */
1915 if (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1916 !pjsua_var.no_snd)
1917 {
1918 pj_status_t status;
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001919
Benny Prijonof798e502009-03-09 13:08:16 +00001920 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1921 if (status != PJ_SUCCESS) {
1922 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1923 return status;
1924 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001925 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001926
Benny Prijonof798e502009-03-09 13:08:16 +00001927 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001928
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001929 return pjmedia_conf_connect_port(pjsua_var.mconf, source, sink, 0);
1930}
1931
1932
1933/*
1934 * Disconnect media flow from the source to destination port.
1935 */
1936PJ_DEF(pj_status_t) pjsua_conf_disconnect( pjsua_conf_port_id source,
1937 pjsua_conf_port_id sink)
1938{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001939 pj_status_t status;
1940
1941 status = pjmedia_conf_disconnect_port(pjsua_var.mconf, source, sink);
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001942 check_snd_dev_idle();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001943
1944 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001945}
1946
1947
Benny Prijono6dd967c2006-12-26 02:27:14 +00001948/*
1949 * Adjust the signal level to be transmitted from the bridge to the
1950 * specified port by making it louder or quieter.
1951 */
1952PJ_DEF(pj_status_t) pjsua_conf_adjust_tx_level(pjsua_conf_port_id slot,
1953 float level)
1954{
1955 return pjmedia_conf_adjust_tx_level(pjsua_var.mconf, slot,
1956 (int)((level-1) * 128));
1957}
1958
1959/*
1960 * Adjust the signal level to be received from the specified port (to
1961 * the bridge) by making it louder or quieter.
1962 */
1963PJ_DEF(pj_status_t) pjsua_conf_adjust_rx_level(pjsua_conf_port_id slot,
1964 float level)
1965{
1966 return pjmedia_conf_adjust_rx_level(pjsua_var.mconf, slot,
1967 (int)((level-1) * 128));
1968}
1969
1970
1971/*
1972 * Get last signal level transmitted to or received from the specified port.
1973 */
1974PJ_DEF(pj_status_t) pjsua_conf_get_signal_level(pjsua_conf_port_id slot,
1975 unsigned *tx_level,
1976 unsigned *rx_level)
1977{
1978 return pjmedia_conf_get_signal_level(pjsua_var.mconf, slot,
1979 tx_level, rx_level);
1980}
1981
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001982/*****************************************************************************
1983 * File player.
1984 */
1985
Benny Prijonod5696da2007-07-17 16:25:45 +00001986static char* get_basename(const char *path, unsigned len)
1987{
1988 char *p = ((char*)path) + len;
1989
1990 if (len==0)
1991 return p;
1992
Benny Prijono1f61a8f2007-08-16 10:11:44 +00001993 for (--p; p!=path && *p!='/' && *p!='\\'; ) --p;
Benny Prijonod5696da2007-07-17 16:25:45 +00001994
1995 return (p==path) ? p : p+1;
1996}
1997
1998
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001999/*
2000 * Create a file player, and automatically connect this player to
2001 * the conference bridge.
2002 */
2003PJ_DEF(pj_status_t) pjsua_player_create( const pj_str_t *filename,
2004 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002005 pjsua_player_id *p_id)
2006{
2007 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002008 char path[PJ_MAXPATH];
Benny Prijonod5696da2007-07-17 16:25:45 +00002009 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002010 pjmedia_port *port;
2011 pj_status_t status;
2012
2013 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
2014 return PJ_ETOOMANY;
2015
2016 PJSUA_LOCK();
2017
2018 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
2019 if (pjsua_var.player[file_id].port == NULL)
2020 break;
2021 }
2022
2023 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
2024 /* This is unexpected */
2025 PJSUA_UNLOCK();
2026 pj_assert(0);
2027 return PJ_EBUG;
2028 }
2029
2030 pj_memcpy(path, filename->ptr, filename->slen);
2031 path[filename->slen] = '\0';
Benny Prijonod5696da2007-07-17 16:25:45 +00002032
2033 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
2034 if (!pool) {
2035 PJSUA_UNLOCK();
2036 return PJ_ENOMEM;
2037 }
2038
Nanang Izzuddin81e9bd52008-06-27 12:52:51 +00002039 status = pjmedia_wav_player_port_create(
2040 pool, path,
2041 pjsua_var.mconf_cfg.samples_per_frame *
2042 1000 / pjsua_var.media_cfg.channel_count /
2043 pjsua_var.media_cfg.clock_rate,
2044 options, 0, &port);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002045 if (status != PJ_SUCCESS) {
2046 PJSUA_UNLOCK();
2047 pjsua_perror(THIS_FILE, "Unable to open file for playback", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002048 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002049 return status;
2050 }
2051
Benny Prijono5297af92008-03-18 13:40:40 +00002052 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002053 port, filename, &slot);
2054 if (status != PJ_SUCCESS) {
2055 pjmedia_port_destroy(port);
2056 PJSUA_UNLOCK();
Benny Prijono32e4f492007-01-24 00:44:26 +00002057 pjsua_perror(THIS_FILE, "Unable to add file to conference bridge",
2058 status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002059 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002060 return status;
2061 }
2062
Benny Prijonoa66c3312007-01-21 23:12:40 +00002063 pjsua_var.player[file_id].type = 0;
Benny Prijonod5696da2007-07-17 16:25:45 +00002064 pjsua_var.player[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002065 pjsua_var.player[file_id].port = port;
2066 pjsua_var.player[file_id].slot = slot;
2067
2068 if (p_id) *p_id = file_id;
2069
2070 ++pjsua_var.player_cnt;
2071
2072 PJSUA_UNLOCK();
2073 return PJ_SUCCESS;
2074}
2075
2076
2077/*
Benny Prijonoa66c3312007-01-21 23:12:40 +00002078 * Create a file playlist media port, and automatically add the port
2079 * to the conference bridge.
2080 */
2081PJ_DEF(pj_status_t) pjsua_playlist_create( const pj_str_t file_names[],
2082 unsigned file_count,
2083 const pj_str_t *label,
2084 unsigned options,
2085 pjsua_player_id *p_id)
2086{
2087 unsigned slot, file_id, ptime;
Benny Prijonod5696da2007-07-17 16:25:45 +00002088 pj_pool_t *pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002089 pjmedia_port *port;
2090 pj_status_t status;
2091
2092 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
2093 return PJ_ETOOMANY;
2094
2095 PJSUA_LOCK();
2096
2097 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
2098 if (pjsua_var.player[file_id].port == NULL)
2099 break;
2100 }
2101
2102 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
2103 /* This is unexpected */
2104 PJSUA_UNLOCK();
2105 pj_assert(0);
2106 return PJ_EBUG;
2107 }
2108
2109
2110 ptime = pjsua_var.mconf_cfg.samples_per_frame * 1000 /
2111 pjsua_var.media_cfg.clock_rate;
2112
Benny Prijonod5696da2007-07-17 16:25:45 +00002113 pool = pjsua_pool_create("playlist", 1000, 1000);
2114 if (!pool) {
2115 PJSUA_UNLOCK();
2116 return PJ_ENOMEM;
2117 }
2118
2119 status = pjmedia_wav_playlist_create(pool, label,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002120 file_names, file_count,
2121 ptime, options, 0, &port);
2122 if (status != PJ_SUCCESS) {
2123 PJSUA_UNLOCK();
2124 pjsua_perror(THIS_FILE, "Unable to create playlist", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002125 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002126 return status;
2127 }
2128
Benny Prijonod5696da2007-07-17 16:25:45 +00002129 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002130 port, &port->info.name, &slot);
2131 if (status != PJ_SUCCESS) {
2132 pjmedia_port_destroy(port);
2133 PJSUA_UNLOCK();
2134 pjsua_perror(THIS_FILE, "Unable to add port", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002135 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002136 return status;
2137 }
2138
2139 pjsua_var.player[file_id].type = 1;
Benny Prijonod5696da2007-07-17 16:25:45 +00002140 pjsua_var.player[file_id].pool = pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002141 pjsua_var.player[file_id].port = port;
2142 pjsua_var.player[file_id].slot = slot;
2143
2144 if (p_id) *p_id = file_id;
2145
2146 ++pjsua_var.player_cnt;
2147
2148 PJSUA_UNLOCK();
2149 return PJ_SUCCESS;
2150
2151}
2152
2153
2154/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002155 * Get conference port ID associated with player.
2156 */
2157PJ_DEF(pjsua_conf_port_id) pjsua_player_get_conf_port(pjsua_player_id id)
2158{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002159 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002160 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2161
2162 return pjsua_var.player[id].slot;
2163}
2164
Benny Prijono469b1522006-12-26 03:05:17 +00002165/*
2166 * Get the media port for the player.
2167 */
Benny Prijonobe41d862008-01-18 13:24:28 +00002168PJ_DEF(pj_status_t) pjsua_player_get_port( pjsua_player_id id,
Benny Prijono469b1522006-12-26 03:05:17 +00002169 pjmedia_port **p_port)
2170{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002171 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002172 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2173 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2174
2175 *p_port = pjsua_var.player[id].port;
2176
2177 return PJ_SUCCESS;
2178}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002179
2180/*
2181 * Set playback position.
2182 */
2183PJ_DEF(pj_status_t) pjsua_player_set_pos( pjsua_player_id id,
2184 pj_uint32_t samples)
2185{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002186 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002187 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002188 PJ_ASSERT_RETURN(pjsua_var.player[id].type == 0, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002189
2190 return pjmedia_wav_player_port_set_pos(pjsua_var.player[id].port, samples);
2191}
2192
2193
2194/*
2195 * Close the file, remove the player from the bridge, and free
2196 * resources associated with the file player.
2197 */
2198PJ_DEF(pj_status_t) pjsua_player_destroy(pjsua_player_id id)
2199{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002200 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002201 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2202
2203 PJSUA_LOCK();
2204
2205 if (pjsua_var.player[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002206 pjsua_conf_remove_port(pjsua_var.player[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002207 pjmedia_port_destroy(pjsua_var.player[id].port);
2208 pjsua_var.player[id].port = NULL;
2209 pjsua_var.player[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002210 pj_pool_release(pjsua_var.player[id].pool);
2211 pjsua_var.player[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002212 pjsua_var.player_cnt--;
2213 }
2214
2215 PJSUA_UNLOCK();
2216
2217 return PJ_SUCCESS;
2218}
2219
2220
2221/*****************************************************************************
2222 * File recorder.
2223 */
2224
2225/*
2226 * Create a file recorder, and automatically connect this recorder to
2227 * the conference bridge.
2228 */
2229PJ_DEF(pj_status_t) pjsua_recorder_create( const pj_str_t *filename,
Benny Prijono8f310522006-10-20 11:08:49 +00002230 unsigned enc_type,
2231 void *enc_param,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002232 pj_ssize_t max_size,
2233 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002234 pjsua_recorder_id *p_id)
2235{
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002236 enum Format
2237 {
2238 FMT_UNKNOWN,
2239 FMT_WAV,
2240 FMT_MP3,
2241 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002242 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002243 char path[PJ_MAXPATH];
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002244 pj_str_t ext;
Benny Prijono8f310522006-10-20 11:08:49 +00002245 int file_format;
Benny Prijonod5696da2007-07-17 16:25:45 +00002246 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002247 pjmedia_port *port;
2248 pj_status_t status;
2249
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002250 /* Filename must present */
2251 PJ_ASSERT_RETURN(filename != NULL, PJ_EINVAL);
2252
Benny Prijono00cae612006-07-31 15:19:36 +00002253 /* Don't support max_size at present */
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002254 PJ_ASSERT_RETURN(max_size == 0 || max_size == -1, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002255
Benny Prijono8f310522006-10-20 11:08:49 +00002256 /* Don't support encoding type at present */
2257 PJ_ASSERT_RETURN(enc_type == 0, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002258
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002259 if (pjsua_var.rec_cnt >= PJ_ARRAY_SIZE(pjsua_var.recorder))
2260 return PJ_ETOOMANY;
2261
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002262 /* Determine the file format */
2263 ext.ptr = filename->ptr + filename->slen - 4;
2264 ext.slen = 4;
2265
2266 if (pj_stricmp2(&ext, ".wav") == 0)
2267 file_format = FMT_WAV;
2268 else if (pj_stricmp2(&ext, ".mp3") == 0)
2269 file_format = FMT_MP3;
2270 else {
2271 PJ_LOG(1,(THIS_FILE, "pjsua_recorder_create() error: unable to "
2272 "determine file format for %.*s",
2273 (int)filename->slen, filename->ptr));
2274 return PJ_ENOTSUP;
2275 }
2276
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002277 PJSUA_LOCK();
2278
2279 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.recorder); ++file_id) {
2280 if (pjsua_var.recorder[file_id].port == NULL)
2281 break;
2282 }
2283
2284 if (file_id == PJ_ARRAY_SIZE(pjsua_var.recorder)) {
2285 /* This is unexpected */
2286 PJSUA_UNLOCK();
2287 pj_assert(0);
2288 return PJ_EBUG;
2289 }
2290
2291 pj_memcpy(path, filename->ptr, filename->slen);
2292 path[filename->slen] = '\0';
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002293
Benny Prijonod5696da2007-07-17 16:25:45 +00002294 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
2295 if (!pool) {
2296 PJSUA_UNLOCK();
2297 return PJ_ENOMEM;
2298 }
2299
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002300 if (file_format == FMT_WAV) {
Benny Prijonod5696da2007-07-17 16:25:45 +00002301 status = pjmedia_wav_writer_port_create(pool, path,
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002302 pjsua_var.media_cfg.clock_rate,
2303 pjsua_var.mconf_cfg.channel_count,
2304 pjsua_var.mconf_cfg.samples_per_frame,
2305 pjsua_var.mconf_cfg.bits_per_sample,
2306 options, 0, &port);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002307 } else {
Benny Prijonoc95a0f02007-04-09 07:06:08 +00002308 PJ_UNUSED_ARG(enc_param);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002309 port = NULL;
2310 status = PJ_ENOTSUP;
2311 }
2312
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002313 if (status != PJ_SUCCESS) {
2314 PJSUA_UNLOCK();
2315 pjsua_perror(THIS_FILE, "Unable to open file for recording", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002316 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002317 return status;
2318 }
2319
Benny Prijonod5696da2007-07-17 16:25:45 +00002320 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002321 port, filename, &slot);
2322 if (status != PJ_SUCCESS) {
2323 pjmedia_port_destroy(port);
2324 PJSUA_UNLOCK();
Benny Prijonod5696da2007-07-17 16:25:45 +00002325 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002326 return status;
2327 }
2328
2329 pjsua_var.recorder[file_id].port = port;
2330 pjsua_var.recorder[file_id].slot = slot;
Benny Prijonod5696da2007-07-17 16:25:45 +00002331 pjsua_var.recorder[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002332
2333 if (p_id) *p_id = file_id;
2334
2335 ++pjsua_var.rec_cnt;
2336
2337 PJSUA_UNLOCK();
2338 return PJ_SUCCESS;
2339}
2340
2341
2342/*
2343 * Get conference port associated with recorder.
2344 */
2345PJ_DEF(pjsua_conf_port_id) pjsua_recorder_get_conf_port(pjsua_recorder_id id)
2346{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002347 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2348 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002349 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2350
2351 return pjsua_var.recorder[id].slot;
2352}
2353
Benny Prijono469b1522006-12-26 03:05:17 +00002354/*
2355 * Get the media port for the recorder.
2356 */
2357PJ_DEF(pj_status_t) pjsua_recorder_get_port( pjsua_recorder_id id,
2358 pjmedia_port **p_port)
2359{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002360 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2361 PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002362 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2363 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2364
2365 *p_port = pjsua_var.recorder[id].port;
2366 return PJ_SUCCESS;
2367}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002368
2369/*
2370 * Destroy recorder (this will complete recording).
2371 */
2372PJ_DEF(pj_status_t) pjsua_recorder_destroy(pjsua_recorder_id id)
2373{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002374 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2375 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002376 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2377
2378 PJSUA_LOCK();
2379
2380 if (pjsua_var.recorder[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002381 pjsua_conf_remove_port(pjsua_var.recorder[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002382 pjmedia_port_destroy(pjsua_var.recorder[id].port);
2383 pjsua_var.recorder[id].port = NULL;
2384 pjsua_var.recorder[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002385 pj_pool_release(pjsua_var.recorder[id].pool);
2386 pjsua_var.recorder[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002387 pjsua_var.rec_cnt--;
2388 }
2389
2390 PJSUA_UNLOCK();
2391
2392 return PJ_SUCCESS;
2393}
2394
2395
2396/*****************************************************************************
2397 * Sound devices.
2398 */
2399
2400/*
2401 * Enum sound devices.
2402 */
Benny Prijonof798e502009-03-09 13:08:16 +00002403
2404PJ_DEF(pj_status_t) pjsua_enum_aud_devs( pjmedia_aud_dev_info info[],
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002405 unsigned *count)
2406{
2407 unsigned i, dev_count;
2408
Benny Prijono10454dc2009-02-21 14:21:59 +00002409 dev_count = pjmedia_aud_dev_count();
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002410
2411 if (dev_count > *count) dev_count = *count;
2412
2413 for (i=0; i<dev_count; ++i) {
Benny Prijono10454dc2009-02-21 14:21:59 +00002414 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002415
Benny Prijono10454dc2009-02-21 14:21:59 +00002416 status = pjmedia_aud_dev_get_info(i, &info[i]);
2417 if (status != PJ_SUCCESS)
2418 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002419 }
2420
2421 *count = dev_count;
2422
2423 return PJ_SUCCESS;
2424}
Benny Prijonof798e502009-03-09 13:08:16 +00002425
2426
Benny Prijono10454dc2009-02-21 14:21:59 +00002427PJ_DEF(pj_status_t) pjsua_enum_snd_devs( pjmedia_snd_dev_info info[],
2428 unsigned *count)
2429{
2430 unsigned i, dev_count;
2431
2432 dev_count = pjmedia_aud_dev_count();
2433
2434 if (dev_count > *count) dev_count = *count;
2435 pj_bzero(info, dev_count * sizeof(pjmedia_snd_dev_info));
2436
2437 for (i=0; i<dev_count; ++i) {
2438 pjmedia_aud_dev_info ai;
2439 pj_status_t status;
2440
2441 status = pjmedia_aud_dev_get_info(i, &ai);
2442 if (status != PJ_SUCCESS)
2443 return status;
2444
2445 strncpy(info[i].name, ai.name, sizeof(info[i].name));
2446 info[i].name[sizeof(info[i].name)-1] = '\0';
2447 info[i].input_count = ai.input_count;
2448 info[i].output_count = ai.output_count;
2449 info[i].default_samples_per_sec = ai.default_samples_per_sec;
2450 }
2451
2452 *count = dev_count;
2453
2454 return PJ_SUCCESS;
2455}
Benny Prijono10454dc2009-02-21 14:21:59 +00002456
Benny Prijonof798e502009-03-09 13:08:16 +00002457/* Create audio device parameter to open the device */
2458static pj_status_t create_aud_param(pjmedia_aud_param *param,
2459 pjmedia_aud_dev_index capture_dev,
2460 pjmedia_aud_dev_index playback_dev,
2461 unsigned clock_rate,
2462 unsigned channel_count,
2463 unsigned samples_per_frame,
2464 unsigned bits_per_sample)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002465{
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002466 pj_status_t status;
2467
Benny Prijono96e74f32009-02-22 12:00:12 +00002468 /* Normalize device ID with new convention about default device ID */
2469 if (playback_dev == PJMEDIA_AUD_DEFAULT_CAPTURE_DEV)
2470 playback_dev = PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV;
2471
Benny Prijono10454dc2009-02-21 14:21:59 +00002472 /* Create default parameters for the device */
Benny Prijonof798e502009-03-09 13:08:16 +00002473 status = pjmedia_aud_dev_default_param(capture_dev, param);
Benny Prijono10454dc2009-02-21 14:21:59 +00002474 if (status != PJ_SUCCESS) {
Benny Prijono96e74f32009-02-22 12:00:12 +00002475 pjsua_perror(THIS_FILE, "Error retrieving default audio "
2476 "device parameters", status);
Benny Prijono10454dc2009-02-21 14:21:59 +00002477 return status;
2478 }
Benny Prijonof798e502009-03-09 13:08:16 +00002479 param->dir = PJMEDIA_DIR_CAPTURE_PLAYBACK;
2480 param->rec_id = capture_dev;
2481 param->play_id = playback_dev;
2482 param->clock_rate = clock_rate;
2483 param->channel_count = channel_count;
2484 param->samples_per_frame = samples_per_frame;
2485 param->bits_per_sample = bits_per_sample;
2486
2487 /* Update the setting with user preference */
2488#define update_param(cap, field) \
2489 if (pjsua_var.aud_param.flags & cap) { \
2490 param->flags |= cap; \
2491 param->field = pjsua_var.aud_param.field; \
2492 }
2493 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2494 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2495 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2496 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2497#undef update_param
2498
Benny Prijono10454dc2009-02-21 14:21:59 +00002499 /* Latency settings */
Benny Prijonof798e502009-03-09 13:08:16 +00002500 param->flags |= (PJMEDIA_AUD_DEV_CAP_INPUT_LATENCY |
2501 PJMEDIA_AUD_DEV_CAP_OUTPUT_LATENCY);
2502 param->input_latency_ms = pjsua_var.media_cfg.snd_rec_latency;
2503 param->output_latency_ms = pjsua_var.media_cfg.snd_play_latency;
2504
Benny Prijono10454dc2009-02-21 14:21:59 +00002505 /* EC settings */
2506 if (pjsua_var.media_cfg.ec_tail_len) {
Benny Prijonof798e502009-03-09 13:08:16 +00002507 param->flags |= (PJMEDIA_AUD_DEV_CAP_EC | PJMEDIA_AUD_DEV_CAP_EC_TAIL);
2508 param->ec_enabled = PJ_TRUE;
2509 param->ec_tail_ms = pjsua_var.media_cfg.ec_tail_len;
Benny Prijono10454dc2009-02-21 14:21:59 +00002510 } else {
Benny Prijonof798e502009-03-09 13:08:16 +00002511 param->flags &= ~(PJMEDIA_AUD_DEV_CAP_EC|PJMEDIA_AUD_DEV_CAP_EC_TAIL);
Benny Prijono10454dc2009-02-21 14:21:59 +00002512 }
2513
Benny Prijonof798e502009-03-09 13:08:16 +00002514 return PJ_SUCCESS;
2515}
Benny Prijono26056d82006-10-11 16:03:41 +00002516
Benny Prijonof798e502009-03-09 13:08:16 +00002517/* Internal: the first time the audio device is opened (during app
2518 * startup), retrieve the audio settings such as volume level
2519 * so that aud_get_settings() will work.
2520 */
2521static pj_status_t update_initial_aud_param()
2522{
2523 pjmedia_aud_stream *strm;
2524 pjmedia_aud_param param;
2525 pj_status_t status;
Benny Prijono26056d82006-10-11 16:03:41 +00002526
Benny Prijonof798e502009-03-09 13:08:16 +00002527 PJ_ASSERT_RETURN(pjsua_var.snd_port != NULL, PJ_EBUG);
Nanang Izzuddin3c1ae632008-08-21 15:04:20 +00002528
Benny Prijonof798e502009-03-09 13:08:16 +00002529 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono26056d82006-10-11 16:03:41 +00002530
Benny Prijonof798e502009-03-09 13:08:16 +00002531 status = pjmedia_aud_stream_get_param(strm, &param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002532 if (status != PJ_SUCCESS) {
Benny Prijonof798e502009-03-09 13:08:16 +00002533 pjsua_perror(THIS_FILE, "Error audio stream "
2534 "device parameters", status);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002535 return status;
2536 }
2537
Benny Prijonof798e502009-03-09 13:08:16 +00002538#define update_saved_param(cap, field) \
2539 if (param.flags & cap) { \
2540 pjsua_var.aud_param.flags |= cap; \
2541 pjsua_var.aud_param.field = param.field; \
2542 }
2543
2544 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2545 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2546 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2547 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2548#undef update_saved_param
2549
2550 return PJ_SUCCESS;
2551}
2552
2553/* Get format name */
2554static const char *get_fmt_name(pj_uint32_t id)
2555{
2556 static char name[8];
2557
2558 if (id == PJMEDIA_FORMAT_L16)
2559 return "PCM";
2560 pj_memcpy(name, &id, 4);
2561 name[4] = '\0';
2562 return name;
2563}
2564
2565/* Open sound device with the setting. */
2566static pj_status_t open_snd_dev(pjmedia_aud_param *param)
2567{
2568 pjmedia_port *conf_port;
2569 pj_status_t status;
2570
2571 PJ_ASSERT_RETURN(param, PJ_EINVAL);
2572
2573 /* Check if NULL sound device is used */
2574 if (NULL_SND_DEV_ID==param->rec_id || NULL_SND_DEV_ID==param->play_id) {
2575 return pjsua_set_null_snd_dev();
2576 }
2577
2578 /* Close existing sound port */
2579 close_snd_dev();
2580
2581 /* Create memory pool for sound device. */
2582 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2583 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2584
2585
2586 PJ_LOG(4,(THIS_FILE, "Opening sound device %s@%d/%d/%dms",
2587 get_fmt_name(param->ext_fmt.id),
2588 param->clock_rate, param->channel_count,
2589 param->samples_per_frame / param->channel_count * 1000 /
2590 param->clock_rate));
2591
2592 status = pjmedia_snd_port_create2( pjsua_var.snd_pool,
2593 param, &pjsua_var.snd_port);
2594 if (status != PJ_SUCCESS)
2595 return status;
2596
2597 /* Get the port0 of the conference bridge. */
2598 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2599 pj_assert(conf_port != NULL);
2600
2601 /* For conference bridge, resample if necessary if the bridge's
2602 * clock rate is different than the sound device's clock rate.
2603 */
2604 if (!pjsua_var.is_mswitch &&
2605 param->ext_fmt.id == PJMEDIA_FORMAT_PCM &&
2606 conf_port->info.clock_rate != param->clock_rate)
2607 {
2608 pjmedia_port *resample_port;
2609 unsigned resample_opt = 0;
2610
2611 if (pjsua_var.media_cfg.quality >= 3 &&
2612 pjsua_var.media_cfg.quality <= 4)
2613 {
2614 resample_opt |= PJMEDIA_RESAMPLE_USE_SMALL_FILTER;
2615 }
2616 else if (pjsua_var.media_cfg.quality < 3) {
2617 resample_opt |= PJMEDIA_RESAMPLE_USE_LINEAR;
2618 }
2619
2620 status = pjmedia_resample_port_create(pjsua_var.snd_pool,
2621 conf_port,
2622 param->clock_rate,
2623 resample_opt,
2624 &resample_port);
2625 if (status != PJ_SUCCESS) {
2626 char errmsg[PJ_ERR_MSG_SIZE];
2627 pj_strerror(status, errmsg, sizeof(errmsg));
2628 PJ_LOG(4, (THIS_FILE,
2629 "Error creating resample port: %s",
2630 errmsg));
2631 close_snd_dev();
2632 return status;
2633 }
2634
2635 conf_port = resample_port;
2636 }
2637
2638 /* Otherwise for audio switchboard, the switch's port0 setting is
2639 * derived from the sound device setting, so update the setting.
2640 */
2641 if (pjsua_var.is_mswitch) {
2642 pj_memcpy(&conf_port->info.format, &param->ext_fmt,
2643 sizeof(conf_port->info.format));
2644 conf_port->info.clock_rate = param->clock_rate;
2645 conf_port->info.samples_per_frame = param->samples_per_frame;
2646 conf_port->info.channel_count = param->channel_count;
2647 conf_port->info.bits_per_sample = 16;
2648 }
2649
2650 /* Connect sound port to the bridge */
Benny Prijono52a93912006-08-04 20:54:37 +00002651 status = pjmedia_snd_port_connect(pjsua_var.snd_port,
2652 conf_port );
2653 if (status != PJ_SUCCESS) {
2654 pjsua_perror(THIS_FILE, "Unable to connect conference port to "
2655 "sound device", status);
2656 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2657 pjsua_var.snd_port = NULL;
2658 return status;
2659 }
2660
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002661 /* Save the device IDs */
Benny Prijonof798e502009-03-09 13:08:16 +00002662 pjsua_var.cap_dev = param->rec_id;
2663 pjsua_var.play_dev = param->play_id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002664
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002665 /* Update sound device name. */
Benny Prijonof798e502009-03-09 13:08:16 +00002666 {
2667 pjmedia_aud_dev_info rec_info;
2668 pjmedia_aud_stream *strm;
2669 pjmedia_aud_param si;
2670 pj_str_t tmp;
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002671
Benny Prijonof798e502009-03-09 13:08:16 +00002672 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2673 status = pjmedia_aud_stream_get_param(strm, &si);
2674 if (status == PJ_SUCCESS)
2675 status = pjmedia_aud_dev_get_info(si.rec_id, &rec_info);
Benny Prijonof3758ee2008-02-26 15:32:16 +00002676
Benny Prijonof798e502009-03-09 13:08:16 +00002677 if (status==PJ_SUCCESS) {
2678 if (param->clock_rate != pjsua_var.media_cfg.clock_rate) {
2679 char tmp_buf[128];
2680 int tmp_buf_len = sizeof(tmp_buf);
2681
2682 tmp_buf_len = pj_ansi_snprintf(tmp_buf, sizeof(tmp_buf)-1,
2683 "%s (%dKHz)",
2684 rec_info.name,
2685 param->clock_rate/1000);
2686 pj_strset(&tmp, tmp_buf, tmp_buf_len);
2687 pjmedia_conf_set_port0_name(pjsua_var.mconf, &tmp);
2688 } else {
2689 pjmedia_conf_set_port0_name(pjsua_var.mconf,
2690 pj_cstr(&tmp, rec_info.name));
2691 }
2692 }
2693
2694 /* Any error is not major, let it through */
2695 status = PJ_SUCCESS;
2696 };
2697
2698 /* If this is the first time the audio device is open, retrieve some
2699 * settings from the device (such as volume settings) so that the
2700 * pjsua_snd_get_setting() work.
2701 */
2702 if (pjsua_var.aud_open_cnt == 0) {
2703 update_initial_aud_param();
2704 ++pjsua_var.aud_open_cnt;
Benny Prijonof3758ee2008-02-26 15:32:16 +00002705 }
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002706
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002707 return PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002708}
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002709
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002710
Benny Prijonof798e502009-03-09 13:08:16 +00002711/* Close existing sound device */
2712static void close_snd_dev(void)
2713{
2714 /* Close sound device */
2715 if (pjsua_var.snd_port) {
2716 pjmedia_aud_dev_info cap_info, play_info;
2717 pjmedia_aud_stream *strm;
2718 pjmedia_aud_param param;
2719
2720 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2721 pjmedia_aud_stream_get_param(strm, &param);
2722
2723 if (pjmedia_aud_dev_get_info(param.rec_id, &cap_info) != PJ_SUCCESS)
2724 cap_info.name[0] = '\0';
2725 if (pjmedia_aud_dev_get_info(param.play_id, &play_info) != PJ_SUCCESS)
2726 play_info.name[0] = '\0';
2727
2728 PJ_LOG(4,(THIS_FILE, "Closing %s sound playback device and "
2729 "%s sound capture device",
2730 play_info.name, cap_info.name));
2731
2732 pjmedia_snd_port_disconnect(pjsua_var.snd_port);
2733 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2734 pjsua_var.snd_port = NULL;
2735 }
2736
2737 /* Close null sound device */
2738 if (pjsua_var.null_snd) {
2739 PJ_LOG(4,(THIS_FILE, "Closing null sound device.."));
2740 pjmedia_master_port_destroy(pjsua_var.null_snd, PJ_FALSE);
2741 pjsua_var.null_snd = NULL;
2742 }
2743
2744 if (pjsua_var.snd_pool)
2745 pj_pool_release(pjsua_var.snd_pool);
2746 pjsua_var.snd_pool = NULL;
2747}
2748
2749
2750/*
2751 * Select or change sound device. Application may call this function at
2752 * any time to replace current sound device.
2753 */
2754PJ_DEF(pj_status_t) pjsua_set_snd_dev( int capture_dev,
2755 int playback_dev)
2756{
2757 unsigned alt_cr_cnt = 1;
2758 unsigned alt_cr[] = {0, 44100, 48000, 32000, 16000, 8000};
2759 unsigned i;
2760 pj_status_t status = -1;
2761
Benny Prijono23ea21a2009-06-03 12:43:06 +00002762 /* Null-sound */
2763 if (capture_dev==NULL_SND_DEV_ID && playback_dev==NULL_SND_DEV_ID) {
2764 return pjsua_set_null_snd_dev();
2765 }
2766
Benny Prijonof798e502009-03-09 13:08:16 +00002767 /* Set default clock rate */
2768 alt_cr[0] = pjsua_var.media_cfg.snd_clock_rate;
2769 if (alt_cr[0] == 0)
2770 alt_cr[0] = pjsua_var.media_cfg.clock_rate;
2771
2772 /* Allow retrying of different clock rate if we're using conference
2773 * bridge (meaning audio format is always PCM), otherwise lock on
2774 * to one clock rate.
2775 */
2776 if (pjsua_var.is_mswitch) {
2777 alt_cr_cnt = 1;
2778 } else {
2779 alt_cr_cnt = PJ_ARRAY_SIZE(alt_cr);
2780 }
2781
2782 /* Attempts to open the sound device with different clock rates */
2783 for (i=0; i<alt_cr_cnt; ++i) {
2784 pjmedia_aud_param param;
2785 unsigned samples_per_frame;
2786
2787 /* Create the default audio param */
2788 samples_per_frame = alt_cr[i] *
2789 pjsua_var.media_cfg.audio_frame_ptime *
2790 pjsua_var.media_cfg.channel_count / 1000;
2791 status = create_aud_param(&param, capture_dev, playback_dev,
2792 alt_cr[i], pjsua_var.media_cfg.channel_count,
2793 samples_per_frame, 16);
2794 if (status != PJ_SUCCESS)
2795 return status;
2796
2797 /* Open! */
2798 status = open_snd_dev(&param);
2799 if (status == PJ_SUCCESS)
2800 break;
2801 }
2802
2803 if (status != PJ_SUCCESS) {
2804 pjsua_perror(THIS_FILE, "Unable to open sound device", status);
2805 return status;
2806 }
2807
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002808 pjsua_var.no_snd = PJ_FALSE;
2809
Benny Prijonof798e502009-03-09 13:08:16 +00002810 return PJ_SUCCESS;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002811}
2812
2813
2814/*
Benny Prijonoebdf8772007-02-01 19:25:50 +00002815 * Get currently active sound devices. If sound devices has not been created
2816 * (for example when pjsua_start() is not called), it is possible that
2817 * the function returns PJ_SUCCESS with -1 as device IDs.
2818 */
2819PJ_DEF(pj_status_t) pjsua_get_snd_dev(int *capture_dev,
2820 int *playback_dev)
2821{
2822 if (capture_dev) {
2823 *capture_dev = pjsua_var.cap_dev;
2824 }
2825 if (playback_dev) {
2826 *playback_dev = pjsua_var.play_dev;
2827 }
2828
2829 return PJ_SUCCESS;
2830}
2831
2832
2833/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002834 * Use null sound device.
2835 */
2836PJ_DEF(pj_status_t) pjsua_set_null_snd_dev(void)
2837{
2838 pjmedia_port *conf_port;
2839 pj_status_t status;
2840
2841 /* Close existing sound device */
2842 close_snd_dev();
2843
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002844 /* Create memory pool for sound device. */
2845 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2846 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2847
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002848 PJ_LOG(4,(THIS_FILE, "Opening null sound device.."));
2849
2850 /* Get the port0 of the conference bridge. */
2851 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2852 pj_assert(conf_port != NULL);
2853
2854 /* Create master port, connecting port0 of the conference bridge to
2855 * a null port.
2856 */
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002857 status = pjmedia_master_port_create(pjsua_var.snd_pool, pjsua_var.null_port,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002858 conf_port, 0, &pjsua_var.null_snd);
2859 if (status != PJ_SUCCESS) {
2860 pjsua_perror(THIS_FILE, "Unable to create null sound device",
2861 status);
2862 return status;
2863 }
2864
2865 /* Start the master port */
2866 status = pjmedia_master_port_start(pjsua_var.null_snd);
2867 PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);
2868
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002869 pjsua_var.cap_dev = NULL_SND_DEV_ID;
2870 pjsua_var.play_dev = NULL_SND_DEV_ID;
2871
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002872 pjsua_var.no_snd = PJ_FALSE;
2873
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002874 return PJ_SUCCESS;
2875}
2876
2877
Benny Prijonoe909eac2006-07-27 22:04:56 +00002878
2879/*
2880 * Use no device!
2881 */
2882PJ_DEF(pjmedia_port*) pjsua_set_no_snd_dev(void)
2883{
2884 /* Close existing sound device */
2885 close_snd_dev();
2886
2887 pjsua_var.no_snd = PJ_TRUE;
2888 return pjmedia_conf_get_master_port(pjsua_var.mconf);
2889}
2890
2891
Benny Prijonof20687a2006-08-04 18:27:19 +00002892/*
2893 * Configure the AEC settings of the sound port.
2894 */
Benny Prijono5da50432006-08-07 10:24:52 +00002895PJ_DEF(pj_status_t) pjsua_set_ec(unsigned tail_ms, unsigned options)
Benny Prijonof20687a2006-08-04 18:27:19 +00002896{
2897 pjsua_var.media_cfg.ec_tail_len = tail_ms;
2898
2899 if (pjsua_var.snd_port)
Benny Prijono5da50432006-08-07 10:24:52 +00002900 return pjmedia_snd_port_set_ec( pjsua_var.snd_port, pjsua_var.pool,
2901 tail_ms, options);
Benny Prijonof20687a2006-08-04 18:27:19 +00002902
2903 return PJ_SUCCESS;
2904}
2905
2906
2907/*
2908 * Get current AEC tail length.
2909 */
Benny Prijono22dfe592006-08-06 12:07:13 +00002910PJ_DEF(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms)
Benny Prijonof20687a2006-08-04 18:27:19 +00002911{
2912 *p_tail_ms = pjsua_var.media_cfg.ec_tail_len;
2913 return PJ_SUCCESS;
2914}
2915
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00002916
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002917/*
Benny Prijonof798e502009-03-09 13:08:16 +00002918 * Check whether the sound device is currently active.
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002919 */
Benny Prijonof798e502009-03-09 13:08:16 +00002920PJ_DEF(pj_bool_t) pjsua_snd_is_active(void)
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002921{
Benny Prijonof798e502009-03-09 13:08:16 +00002922 return pjsua_var.snd_port != NULL;
2923}
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002924
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002925
Benny Prijonof798e502009-03-09 13:08:16 +00002926/*
2927 * Configure sound device setting to the sound device being used.
2928 */
2929PJ_DEF(pj_status_t) pjsua_snd_set_setting( pjmedia_aud_dev_cap cap,
2930 const void *pval,
2931 pj_bool_t keep)
2932{
Benny Prijono09b0ff62009-03-10 12:07:51 +00002933 pj_status_t status;
2934
Benny Prijonof798e502009-03-09 13:08:16 +00002935 /* Check if we are allowed to set the cap */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002936 if ((cap & pjsua_var.aud_svmask) == 0) {
Benny Prijonof798e502009-03-09 13:08:16 +00002937 return PJMEDIA_EAUD_INVCAP;
2938 }
2939
Benny Prijono09b0ff62009-03-10 12:07:51 +00002940 /* If sound is active, set it immediately */
Benny Prijonof798e502009-03-09 13:08:16 +00002941 if (pjsua_snd_is_active()) {
Benny Prijonof798e502009-03-09 13:08:16 +00002942 pjmedia_aud_stream *strm;
2943
2944 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002945 status = pjmedia_aud_stream_set_cap(strm, cap, pval);
Benny Prijonof798e502009-03-09 13:08:16 +00002946 } else {
Benny Prijono09b0ff62009-03-10 12:07:51 +00002947 status = PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002948 }
Benny Prijono09b0ff62009-03-10 12:07:51 +00002949
2950 if (status != PJ_SUCCESS)
2951 return status;
2952
2953 /* Save in internal param for later device open */
2954 if (keep) {
2955 status = pjmedia_aud_param_set_cap(&pjsua_var.aud_param,
2956 cap, pval);
2957 }
2958
2959 return status;
Benny Prijonof798e502009-03-09 13:08:16 +00002960}
2961
2962/*
2963 * Retrieve a sound device setting.
2964 */
2965PJ_DEF(pj_status_t) pjsua_snd_get_setting( pjmedia_aud_dev_cap cap,
2966 void *pval)
2967{
2968 /* If sound device has never been opened before, open it to
2969 * retrieve the initial setting from the device (e.g. audio
2970 * volume)
2971 */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002972 if (pjsua_var.aud_open_cnt==0) {
2973 PJ_LOG(4,(THIS_FILE, "Opening sound device to get initial settings"));
Benny Prijonof798e502009-03-09 13:08:16 +00002974 pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002975 close_snd_dev();
2976 }
Benny Prijonof798e502009-03-09 13:08:16 +00002977
2978 if (pjsua_snd_is_active()) {
2979 /* Sound is active, retrieve from device directly */
2980 pjmedia_aud_stream *strm;
2981
2982 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2983 return pjmedia_aud_stream_get_cap(strm, cap, pval);
2984 } else {
2985 /* Otherwise retrieve from internal param */
2986 return pjmedia_aud_param_get_cap(&pjsua_var.aud_param,
2987 cap, pval);
2988 }
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002989}
2990
2991
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002992/*****************************************************************************
2993 * Codecs.
2994 */
2995
2996/*
2997 * Enum all supported codecs in the system.
2998 */
2999PJ_DEF(pj_status_t) pjsua_enum_codecs( pjsua_codec_info id[],
3000 unsigned *p_count )
3001{
3002 pjmedia_codec_mgr *codec_mgr;
3003 pjmedia_codec_info info[32];
3004 unsigned i, count, prio[32];
3005 pj_status_t status;
3006
3007 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3008 count = PJ_ARRAY_SIZE(info);
3009 status = pjmedia_codec_mgr_enum_codecs( codec_mgr, &count, info, prio);
3010 if (status != PJ_SUCCESS) {
3011 *p_count = 0;
3012 return status;
3013 }
3014
3015 if (count > *p_count) count = *p_count;
3016
3017 for (i=0; i<count; ++i) {
3018 pjmedia_codec_info_to_id(&info[i], id[i].buf_, sizeof(id[i].buf_));
3019 id[i].codec_id = pj_str(id[i].buf_);
3020 id[i].priority = (pj_uint8_t) prio[i];
3021 }
3022
3023 *p_count = count;
3024
3025 return PJ_SUCCESS;
3026}
3027
3028
3029/*
3030 * Change codec priority.
3031 */
3032PJ_DEF(pj_status_t) pjsua_codec_set_priority( const pj_str_t *codec_id,
3033 pj_uint8_t priority )
3034{
Benny Prijono88accae2008-06-26 15:48:14 +00003035 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003036 pjmedia_codec_mgr *codec_mgr;
3037
3038 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3039
Benny Prijono88accae2008-06-26 15:48:14 +00003040 if (codec_id->slen==1 && *codec_id->ptr=='*')
3041 codec_id = &all;
3042
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003043 return pjmedia_codec_mgr_set_codec_priority(codec_mgr, codec_id,
3044 priority);
3045}
3046
3047
3048/*
3049 * Get codec parameters.
3050 */
3051PJ_DEF(pj_status_t) pjsua_codec_get_param( const pj_str_t *codec_id,
3052 pjmedia_codec_param *param )
3053{
Benny Prijono88accae2008-06-26 15:48:14 +00003054 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003055 const pjmedia_codec_info *info;
3056 pjmedia_codec_mgr *codec_mgr;
3057 unsigned count = 1;
3058 pj_status_t status;
3059
3060 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3061
Benny Prijono88accae2008-06-26 15:48:14 +00003062 if (codec_id->slen==1 && *codec_id->ptr=='*')
3063 codec_id = &all;
3064
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003065 status = pjmedia_codec_mgr_find_codecs_by_id(codec_mgr, codec_id,
3066 &count, &info, NULL);
3067 if (status != PJ_SUCCESS)
3068 return status;
3069
3070 if (count != 1)
3071 return PJ_ENOTFOUND;
3072
3073 status = pjmedia_codec_mgr_get_default_param( codec_mgr, info, param);
3074 return status;
3075}
3076
3077
3078/*
3079 * Set codec parameters.
3080 */
Nanang Izzuddin06839e72010-01-27 11:48:31 +00003081PJ_DEF(pj_status_t) pjsua_codec_set_param( const pj_str_t *codec_id,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003082 const pjmedia_codec_param *param)
3083{
Nanang Izzuddin06839e72010-01-27 11:48:31 +00003084 const pjmedia_codec_info *info[2];
3085 pjmedia_codec_mgr *codec_mgr;
3086 unsigned count = 2;
3087 pj_status_t status;
3088
3089 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
3090
3091 status = pjmedia_codec_mgr_find_codecs_by_id(codec_mgr, codec_id,
3092 &count, info, NULL);
3093 if (status != PJ_SUCCESS)
3094 return status;
3095
3096 /* Codec ID should be specific, except for G.722.1 */
3097 if (count > 1 &&
3098 pj_strnicmp2(codec_id, "G7221/16", 8) != 0 &&
3099 pj_strnicmp2(codec_id, "G7221/32", 8) != 0)
3100 {
3101 pj_assert(!"Codec ID is not specific");
3102 return PJ_ETOOMANY;
3103 }
3104
3105 status = pjmedia_codec_mgr_set_default_param(codec_mgr, info[0], param);
3106 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003107}