blob: b4d39711b964eb0e5d4e7d16c7b44de518d01ceb [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 Prijono6ba8c542007-10-16 01:34:14 +0000337 /* Perform NAT detection */
338 pjsua_detect_nat_type();
339
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000340 return PJ_SUCCESS;
341}
342
343
344/*
345 * Create RTP and RTCP socket pair, and possibly resolve their public
346 * address via STUN.
347 */
348static pj_status_t create_rtp_rtcp_sock(const pjsua_transport_config *cfg,
349 pjmedia_sock_info *skinfo)
350{
351 enum {
352 RTP_RETRY = 100
353 };
354 int i;
Benny Prijono0a5cad82006-09-26 13:21:02 +0000355 pj_sockaddr_in bound_addr;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000356 pj_sockaddr_in mapped_addr[2];
357 pj_status_t status = PJ_SUCCESS;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000358 char addr_buf[PJ_INET6_ADDRSTRLEN+2];
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000359 pj_sock_t sock[2];
360
Benny Prijonoc97608e2007-03-23 16:34:20 +0000361 /* Make sure STUN server resolution has completed */
362 status = pjsua_resolve_stun_server(PJ_TRUE);
363 if (status != PJ_SUCCESS) {
364 pjsua_perror(THIS_FILE, "Error resolving STUN server", status);
365 return status;
366 }
367
Benny Prijonode479562007-03-15 10:23:55 +0000368 if (next_rtp_port == 0)
369 next_rtp_port = (pj_uint16_t)cfg->port;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000370
371 for (i=0; i<2; ++i)
372 sock[i] = PJ_INVALID_SOCKET;
373
Benny Prijono0a5cad82006-09-26 13:21:02 +0000374 bound_addr.sin_addr.s_addr = PJ_INADDR_ANY;
375 if (cfg->bound_addr.slen) {
376 status = pj_sockaddr_in_set_str_addr(&bound_addr, &cfg->bound_addr);
377 if (status != PJ_SUCCESS) {
378 pjsua_perror(THIS_FILE, "Unable to resolve transport bind address",
379 status);
380 return status;
381 }
382 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000383
384 /* Loop retry to bind RTP and RTCP sockets. */
Benny Prijonode479562007-03-15 10:23:55 +0000385 for (i=0; i<RTP_RETRY; ++i, next_rtp_port += 2) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000386
387 /* Create and bind RTP socket. */
Benny Prijono8ab968f2007-07-20 08:08:30 +0000388 status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[0]);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000389 if (status != PJ_SUCCESS) {
390 pjsua_perror(THIS_FILE, "socket() error", status);
391 return status;
392 }
393
Benny Prijono0cdcd3f2007-12-09 14:14:11 +0000394 status=pj_sock_bind_in(sock[0], pj_ntohl(bound_addr.sin_addr.s_addr),
395 next_rtp_port);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000396 if (status != PJ_SUCCESS) {
397 pj_sock_close(sock[0]);
398 sock[0] = PJ_INVALID_SOCKET;
399 continue;
400 }
401
402 /* Create and bind RTCP socket. */
Benny Prijono8ab968f2007-07-20 08:08:30 +0000403 status = pj_sock_socket(pj_AF_INET(), pj_SOCK_DGRAM(), 0, &sock[1]);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000404 if (status != PJ_SUCCESS) {
405 pjsua_perror(THIS_FILE, "socket() error", status);
406 pj_sock_close(sock[0]);
407 return status;
408 }
409
Benny Prijono0cdcd3f2007-12-09 14:14:11 +0000410 status=pj_sock_bind_in(sock[1], pj_ntohl(bound_addr.sin_addr.s_addr),
411 (pj_uint16_t)(next_rtp_port+1));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000412 if (status != PJ_SUCCESS) {
413 pj_sock_close(sock[0]);
414 sock[0] = PJ_INVALID_SOCKET;
415
416 pj_sock_close(sock[1]);
417 sock[1] = PJ_INVALID_SOCKET;
418 continue;
419 }
420
421 /*
422 * If we're configured to use STUN, then find out the mapped address,
423 * and make sure that the mapped RTCP port is adjacent with the RTP.
424 */
Benny Prijonoc97608e2007-03-23 16:34:20 +0000425 if (pjsua_var.stun_srv.addr.sa_family != 0) {
426 char ip_addr[32];
427 pj_str_t stun_srv;
428
429 pj_ansi_strcpy(ip_addr,
430 pj_inet_ntoa(pjsua_var.stun_srv.ipv4.sin_addr));
431 stun_srv = pj_str(ip_addr);
432
Benny Prijono14c2b862007-02-21 00:40:05 +0000433 status=pjstun_get_mapped_addr(&pjsua_var.cp.factory, 2, sock,
Benny Prijonoaf09dc32007-04-22 12:48:30 +0000434 &stun_srv, pj_ntohs(pjsua_var.stun_srv.ipv4.sin_port),
435 &stun_srv, pj_ntohs(pjsua_var.stun_srv.ipv4.sin_port),
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000436 mapped_addr);
437 if (status != PJ_SUCCESS) {
438 pjsua_perror(THIS_FILE, "STUN resolve error", status);
439 goto on_error;
440 }
441
Benny Prijono80eee892007-11-03 22:43:23 +0000442#if PJSUA_REQUIRE_CONSECUTIVE_RTCP_PORT
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000443 if (pj_ntohs(mapped_addr[1].sin_port) ==
444 pj_ntohs(mapped_addr[0].sin_port)+1)
445 {
446 /* Success! */
447 break;
448 }
449
450 pj_sock_close(sock[0]);
451 sock[0] = PJ_INVALID_SOCKET;
452
453 pj_sock_close(sock[1]);
454 sock[1] = PJ_INVALID_SOCKET;
Benny Prijono80eee892007-11-03 22:43:23 +0000455#else
456 if (pj_ntohs(mapped_addr[1].sin_port) !=
457 pj_ntohs(mapped_addr[0].sin_port)+1)
458 {
459 PJ_LOG(4,(THIS_FILE,
460 "Note: STUN mapped RTCP port %d is not adjacent"
461 " to RTP port %d",
462 pj_ntohs(mapped_addr[1].sin_port),
463 pj_ntohs(mapped_addr[0].sin_port)));
464 }
465 /* Success! */
466 break;
467#endif
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000468
Benny Prijono0a5cad82006-09-26 13:21:02 +0000469 } else if (cfg->public_addr.slen) {
470
471 status = pj_sockaddr_in_init(&mapped_addr[0], &cfg->public_addr,
Benny Prijonode479562007-03-15 10:23:55 +0000472 (pj_uint16_t)next_rtp_port);
Benny Prijono0a5cad82006-09-26 13:21:02 +0000473 if (status != PJ_SUCCESS)
474 goto on_error;
475
476 status = pj_sockaddr_in_init(&mapped_addr[1], &cfg->public_addr,
Benny Prijonode479562007-03-15 10:23:55 +0000477 (pj_uint16_t)(next_rtp_port+1));
Benny Prijono0a5cad82006-09-26 13:21:02 +0000478 if (status != PJ_SUCCESS)
479 goto on_error;
480
481 break;
482
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000483 } else {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000484
Benny Prijono42d08d22007-12-20 11:23:07 +0000485 if (bound_addr.sin_addr.s_addr == 0) {
486 pj_sockaddr addr;
487
488 /* Get local IP address. */
489 status = pj_gethostip(pj_AF_INET(), &addr);
490 if (status != PJ_SUCCESS)
491 goto on_error;
492
493 bound_addr.sin_addr.s_addr = addr.ipv4.sin_addr.s_addr;
494 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000495
Benny Prijonofe0b1d62007-12-05 04:07:37 +0000496 for (i=0; i<2; ++i) {
497 pj_sockaddr_in_init(&mapped_addr[i], NULL, 0);
Benny Prijono42d08d22007-12-20 11:23:07 +0000498 mapped_addr[i].sin_addr.s_addr = bound_addr.sin_addr.s_addr;
Benny Prijonofe0b1d62007-12-05 04:07:37 +0000499 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000500
Benny Prijonode479562007-03-15 10:23:55 +0000501 mapped_addr[0].sin_port=pj_htons((pj_uint16_t)next_rtp_port);
502 mapped_addr[1].sin_port=pj_htons((pj_uint16_t)(next_rtp_port+1));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000503 break;
504 }
505 }
506
507 if (sock[0] == PJ_INVALID_SOCKET) {
508 PJ_LOG(1,(THIS_FILE,
509 "Unable to find appropriate RTP/RTCP ports combination"));
510 goto on_error;
511 }
512
513
514 skinfo->rtp_sock = sock[0];
515 pj_memcpy(&skinfo->rtp_addr_name,
516 &mapped_addr[0], sizeof(pj_sockaddr_in));
517
518 skinfo->rtcp_sock = sock[1];
519 pj_memcpy(&skinfo->rtcp_addr_name,
520 &mapped_addr[1], sizeof(pj_sockaddr_in));
521
Benny Prijono8b22ce12008-02-08 12:57:55 +0000522 PJ_LOG(4,(THIS_FILE, "RTP socket reachable at %s",
Benny Prijono5186eae2007-12-03 14:38:25 +0000523 pj_sockaddr_print(&skinfo->rtp_addr_name, addr_buf,
524 sizeof(addr_buf), 3)));
Benny Prijono8b22ce12008-02-08 12:57:55 +0000525 PJ_LOG(4,(THIS_FILE, "RTCP socket reachable at %s",
Benny Prijono5186eae2007-12-03 14:38:25 +0000526 pj_sockaddr_print(&skinfo->rtcp_addr_name, addr_buf,
527 sizeof(addr_buf), 3)));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000528
Benny Prijonode479562007-03-15 10:23:55 +0000529 next_rtp_port += 2;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000530 return PJ_SUCCESS;
531
532on_error:
533 for (i=0; i<2; ++i) {
534 if (sock[i] != PJ_INVALID_SOCKET)
535 pj_sock_close(sock[i]);
536 }
537 return status;
538}
539
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000540/* Check if sound device is idle. */
541static void check_snd_dev_idle()
542{
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000543 unsigned call_cnt;
544
545 /* Get the call count, we shouldn't close the sound device when there is
546 * any calls active.
547 */
548 call_cnt = pjsua_call_get_count();
549
550 /* When this function is called from pjsua_media_channel_deinit() upon
551 * disconnecting call, actually the call count hasn't been updated/
552 * decreased. So we put additional check here, if there is only one
553 * call and it's in DISCONNECTED state, there is actually no active
554 * call.
555 */
556 if (call_cnt == 1) {
557 pjsua_call_id call_id;
558 pj_status_t status;
559
560 status = pjsua_enum_calls(&call_id, &call_cnt);
561 if (status == PJ_SUCCESS && call_cnt > 0 &&
562 !pjsua_call_is_active(call_id))
563 {
564 call_cnt = 0;
565 }
566 }
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000567
568 /* Activate sound device auto-close timer if sound device is idle.
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000569 * It is idle when there is no port connection in the bridge and
570 * there is no active call.
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000571 */
572 if ((pjsua_var.snd_port!=NULL || pjsua_var.null_snd!=NULL) &&
573 pjsua_var.snd_idle_timer.id == PJ_FALSE &&
574 pjmedia_conf_get_connect_count(pjsua_var.mconf) == 0 &&
Nanang Izzuddin7082b262009-06-12 11:15:08 +0000575 call_cnt == 0 &&
Nanang Izzuddin148fd392008-06-16 09:52:50 +0000576 pjsua_var.media_cfg.snd_auto_close_time >= 0)
577 {
578 pj_time_val delay;
579
580 delay.msec = 0;
581 delay.sec = pjsua_var.media_cfg.snd_auto_close_time;
582
583 pjsua_var.snd_idle_timer.id = PJ_TRUE;
584 pjsip_endpt_schedule_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer,
585 &delay);
586 }
587}
588
589
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000590/* Timer callback to close sound device */
591static void close_snd_timer_cb( pj_timer_heap_t *th,
592 pj_timer_entry *entry)
593{
594 PJ_UNUSED_ARG(th);
595
Benny Prijono0f711b42009-05-06 19:08:43 +0000596 PJSUA_LOCK();
597 if (entry->id) {
598 PJ_LOG(4,(THIS_FILE,"Closing sound device after idle for %d seconds",
599 pjsua_var.media_cfg.snd_auto_close_time));
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000600
Benny Prijono0f711b42009-05-06 19:08:43 +0000601 entry->id = PJ_FALSE;
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000602
Benny Prijono0f711b42009-05-06 19:08:43 +0000603 close_snd_dev();
604 }
605 PJSUA_UNLOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000606}
607
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000608
609/*
610 * Start pjsua media subsystem.
611 */
612pj_status_t pjsua_media_subsys_start(void)
613{
614 pj_status_t status;
615
616 /* Create media for calls, if none is specified */
617 if (pjsua_var.calls[0].med_tp == NULL) {
618 pjsua_transport_config transport_cfg;
619
620 /* Create default transport config */
621 pjsua_transport_config_default(&transport_cfg);
622 transport_cfg.port = DEFAULT_RTP_PORT;
623
624 status = pjsua_media_transports_create(&transport_cfg);
625 if (status != PJ_SUCCESS)
626 return status;
627 }
628
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000629 pj_timer_entry_init(&pjsua_var.snd_idle_timer, PJ_FALSE, NULL,
630 &close_snd_timer_cb);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000631
632 return PJ_SUCCESS;
633}
634
635
636/*
637 * Destroy pjsua media subsystem.
638 */
639pj_status_t pjsua_media_subsys_destroy(void)
640{
641 unsigned i;
642
643 close_snd_dev();
644
645 if (pjsua_var.mconf) {
646 pjmedia_conf_destroy(pjsua_var.mconf);
647 pjsua_var.mconf = NULL;
648 }
649
650 if (pjsua_var.null_port) {
651 pjmedia_port_destroy(pjsua_var.null_port);
652 pjsua_var.null_port = NULL;
653 }
654
655 /* Destroy file players */
656 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.player); ++i) {
657 if (pjsua_var.player[i].port) {
658 pjmedia_port_destroy(pjsua_var.player[i].port);
659 pjsua_var.player[i].port = NULL;
660 }
661 }
662
663 /* Destroy file recorders */
664 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.recorder); ++i) {
665 if (pjsua_var.recorder[i].port) {
666 pjmedia_port_destroy(pjsua_var.recorder[i].port);
667 pjsua_var.recorder[i].port = NULL;
668 }
669 }
670
671 /* Close media transports */
Benny Prijono0875ae82006-12-26 00:11:48 +0000672 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono311b63f2008-07-14 11:31:40 +0000673 if (pjsua_var.calls[i].med_tp_st != PJSUA_MED_TP_IDLE) {
674 pjsua_media_channel_deinit(i);
675 }
Benny Prijono40860c32008-09-04 13:55:33 +0000676 if (pjsua_var.calls[i].med_tp && pjsua_var.calls[i].med_tp_auto_del) {
677 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000678 }
Benny Prijono40860c32008-09-04 13:55:33 +0000679 pjsua_var.calls[i].med_tp = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000680 }
681
682 /* Destroy media endpoint. */
683 if (pjsua_var.med_endpt) {
684
685 /* Shutdown all codecs: */
686# if PJMEDIA_HAS_SPEEX_CODEC
687 pjmedia_codec_speex_deinit();
688# endif /* PJMEDIA_HAS_SPEEX_CODEC */
689
690# if PJMEDIA_HAS_GSM_CODEC
691 pjmedia_codec_gsm_deinit();
692# endif /* PJMEDIA_HAS_GSM_CODEC */
693
694# if PJMEDIA_HAS_G711_CODEC
695 pjmedia_codec_g711_deinit();
696# endif /* PJMEDIA_HAS_G711_CODEC */
697
Benny Prijono7ffd7752008-03-17 14:07:53 +0000698# if PJMEDIA_HAS_G722_CODEC
699 pjmedia_codec_g722_deinit();
700# endif /* PJMEDIA_HAS_G722_CODEC */
701
Nanang Izzuddin6df1d532008-08-25 13:46:03 +0000702# if PJMEDIA_HAS_INTEL_IPP
Nanang Izzuddin7dd32682008-08-19 11:23:33 +0000703 pjmedia_codec_ipp_deinit();
Nanang Izzuddin6df1d532008-08-25 13:46:03 +0000704# endif /* PJMEDIA_HAS_INTEL_IPP */
Nanang Izzuddin7dd32682008-08-19 11:23:33 +0000705
Nanang Izzuddin81db8c72009-02-05 10:59:14 +0000706# if PJMEDIA_HAS_PASSTHROUGH_CODECS
707 pjmedia_codec_passthrough_deinit();
708# endif /* PJMEDIA_HAS_PASSTHROUGH_CODECS */
709
Nanang Izzuddin57b88572009-04-01 12:05:34 +0000710# if PJMEDIA_HAS_G7221_CODEC
711 pjmedia_codec_g7221_deinit();
712# endif /* PJMEDIA_HAS_G7221_CODEC */
713
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000714# if PJMEDIA_HAS_L16_CODEC
715 pjmedia_codec_l16_deinit();
716# endif /* PJMEDIA_HAS_L16_CODEC */
717
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000718 pjmedia_endpt_destroy(pjsua_var.med_endpt);
719 pjsua_var.med_endpt = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000720
Benny Prijonoad2e0ca2007-04-29 12:31:51 +0000721 /* Deinitialize sound subsystem */
Benny Prijonoa41d66e2007-10-01 12:17:23 +0000722 // Not necessary, as pjmedia_snd_deinit() should have been called
723 // in pjmedia_endpt_destroy().
724 //pjmedia_snd_deinit();
Benny Prijonoad2e0ca2007-04-29 12:31:51 +0000725 }
Benny Prijonoaf1bb1e2006-11-21 12:39:31 +0000726
Benny Prijonode479562007-03-15 10:23:55 +0000727 /* Reset RTP port */
728 next_rtp_port = 0;
729
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000730 return PJ_SUCCESS;
731}
732
733
Benny Prijonoc97608e2007-03-23 16:34:20 +0000734/* Create normal UDP media transports */
735static pj_status_t create_udp_media_transports(pjsua_transport_config *cfg)
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000736{
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000737 unsigned i;
Benny Prijono617c5bc2007-04-02 19:51:21 +0000738 pjmedia_sock_info skinfo;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000739 pj_status_t status;
740
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000741 /* Create each media transport */
742 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
743
Benny Prijono617c5bc2007-04-02 19:51:21 +0000744 status = create_rtp_rtcp_sock(cfg, &skinfo);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000745 if (status != PJ_SUCCESS) {
746 pjsua_perror(THIS_FILE, "Unable to create RTP/RTCP socket",
747 status);
748 goto on_error;
749 }
Benny Prijonod8179652008-01-23 20:39:07 +0000750
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000751 status = pjmedia_transport_udp_attach(pjsua_var.med_endpt, NULL,
Benny Prijono617c5bc2007-04-02 19:51:21 +0000752 &skinfo, 0,
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000753 &pjsua_var.calls[i].med_tp);
754 if (status != PJ_SUCCESS) {
755 pjsua_perror(THIS_FILE, "Unable to create media transport",
756 status);
757 goto on_error;
758 }
Benny Prijono00cae612006-07-31 15:19:36 +0000759
Benny Prijonod8179652008-01-23 20:39:07 +0000760 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
761 PJMEDIA_DIR_ENCODING,
762 pjsua_var.media_cfg.tx_drop_pct);
Benny Prijono00cae612006-07-31 15:19:36 +0000763
Benny Prijonod8179652008-01-23 20:39:07 +0000764 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
765 PJMEDIA_DIR_DECODING,
766 pjsua_var.media_cfg.rx_drop_pct);
Benny Prijono00cae612006-07-31 15:19:36 +0000767
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000768 }
769
Benny Prijonoc97608e2007-03-23 16:34:20 +0000770 return PJ_SUCCESS;
771
772on_error:
773 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
774 if (pjsua_var.calls[i].med_tp != NULL) {
775 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
776 pjsua_var.calls[i].med_tp = NULL;
777 }
778 }
779
780 return status;
781}
782
783
Benny Prijono096c56c2007-09-15 08:30:16 +0000784/* This callback is called when ICE negotiation completes */
Benny Prijonof76e1392008-06-06 14:51:48 +0000785static void on_ice_complete(pjmedia_transport *tp,
786 pj_ice_strans_op op,
787 pj_status_t result)
Benny Prijono096c56c2007-09-15 08:30:16 +0000788{
Benny Prijonof76e1392008-06-06 14:51:48 +0000789 unsigned id;
Benny Prijono096c56c2007-09-15 08:30:16 +0000790 pj_bool_t found = PJ_FALSE;
791
Benny Prijono096c56c2007-09-15 08:30:16 +0000792 /* Find call which has this media transport */
793
794 PJSUA_LOCK();
795
Benny Prijonof76e1392008-06-06 14:51:48 +0000796 for (id=0; id<pjsua_var.ua_cfg.max_calls; ++id) {
797 if (pjsua_var.calls[id].med_tp == tp ||
798 pjsua_var.calls[id].med_orig == tp)
799 {
800 found = PJ_TRUE;
801 break;
Benny Prijono096c56c2007-09-15 08:30:16 +0000802 }
803 }
804
805 PJSUA_UNLOCK();
806
Benny Prijonof76e1392008-06-06 14:51:48 +0000807 if (!found)
808 return;
809
810 switch (op) {
811 case PJ_ICE_STRANS_OP_INIT:
Benny Prijono224b4e22008-06-19 14:10:28 +0000812 pjsua_var.calls[id].med_tp_ready = result;
Benny Prijonof76e1392008-06-06 14:51:48 +0000813 break;
814 case PJ_ICE_STRANS_OP_NEGOTIATION:
815 if (result != PJ_SUCCESS) {
816 pjsua_var.calls[id].media_st = PJSUA_CALL_MEDIA_ERROR;
817 pjsua_var.calls[id].media_dir = PJMEDIA_DIR_NONE;
818
819 if (pjsua_var.ua_cfg.cb.on_call_media_state) {
820 pjsua_var.ua_cfg.cb.on_call_media_state(id);
821 }
822 }
823 break;
Benny Prijono096c56c2007-09-15 08:30:16 +0000824 }
825}
826
827
Benny Prijonof76e1392008-06-06 14:51:48 +0000828/* Parse "HOST:PORT" format */
829static pj_status_t parse_host_port(const pj_str_t *host_port,
830 pj_str_t *host, pj_uint16_t *port)
Benny Prijonoc97608e2007-03-23 16:34:20 +0000831{
Benny Prijonof76e1392008-06-06 14:51:48 +0000832 pj_str_t str_port;
833
834 str_port.ptr = pj_strchr(host_port, ':');
835 if (str_port.ptr != NULL) {
836 int iport;
837
838 host->ptr = host_port->ptr;
839 host->slen = (str_port.ptr - host->ptr);
840 str_port.ptr++;
841 str_port.slen = host_port->slen - host->slen - 1;
842 iport = (int)pj_strtoul(&str_port);
843 if (iport < 1 || iport > 65535)
844 return PJ_EINVAL;
845 *port = (pj_uint16_t)iport;
846 } else {
847 *host = *host_port;
848 *port = 0;
849 }
850
851 return PJ_SUCCESS;
852}
853
854/* Create ICE media transports (when ice is enabled) */
855static pj_status_t create_ice_media_transports(void)
856{
857 char stunip[PJ_INET6_ADDRSTRLEN];
858 pj_ice_strans_cfg ice_cfg;
Benny Prijonoc97608e2007-03-23 16:34:20 +0000859 unsigned i;
860 pj_status_t status;
861
Benny Prijonoda9785b2007-04-02 20:43:06 +0000862 /* Make sure STUN server resolution has completed */
863 status = pjsua_resolve_stun_server(PJ_TRUE);
864 if (status != PJ_SUCCESS) {
865 pjsua_perror(THIS_FILE, "Error resolving STUN server", status);
866 return status;
867 }
868
Benny Prijonof76e1392008-06-06 14:51:48 +0000869 /* Create ICE stream transport configuration */
870 pj_ice_strans_cfg_default(&ice_cfg);
871 pj_stun_config_init(&ice_cfg.stun_cfg, &pjsua_var.cp.factory, 0,
872 pjsip_endpt_get_ioqueue(pjsua_var.endpt),
873 pjsip_endpt_get_timer_heap(pjsua_var.endpt));
874
875 ice_cfg.af = pj_AF_INET();
876 ice_cfg.resolver = pjsua_var.resolver;
877
Benny Prijono329d6382009-05-29 13:04:03 +0000878 ice_cfg.opt = pjsua_var.media_cfg.ice_opt;
879
Benny Prijonof76e1392008-06-06 14:51:48 +0000880 /* Configure STUN settings */
881 if (pj_sockaddr_has_addr(&pjsua_var.stun_srv)) {
882 pj_sockaddr_print(&pjsua_var.stun_srv, stunip, sizeof(stunip), 0);
883 ice_cfg.stun.server = pj_str(stunip);
884 ice_cfg.stun.port = pj_sockaddr_get_port(&pjsua_var.stun_srv);
885 }
Benny Prijono329d6382009-05-29 13:04:03 +0000886 if (pjsua_var.media_cfg.ice_max_host_cands >= 0)
887 ice_cfg.stun.max_host_cands = pjsua_var.media_cfg.ice_max_host_cands;
Benny Prijonof76e1392008-06-06 14:51:48 +0000888
889 /* Configure TURN settings */
890 if (pjsua_var.media_cfg.enable_turn) {
891 status = parse_host_port(&pjsua_var.media_cfg.turn_server,
892 &ice_cfg.turn.server,
893 &ice_cfg.turn.port);
894 if (status != PJ_SUCCESS || ice_cfg.turn.server.slen == 0) {
895 PJ_LOG(1,(THIS_FILE, "Invalid TURN server setting"));
896 return PJ_EINVAL;
897 }
898 if (ice_cfg.turn.port == 0)
899 ice_cfg.turn.port = 3479;
900 ice_cfg.turn.conn_type = pjsua_var.media_cfg.turn_conn_type;
901 pj_memcpy(&ice_cfg.turn.auth_cred,
902 &pjsua_var.media_cfg.turn_auth_cred,
903 sizeof(ice_cfg.turn.auth_cred));
904 }
Benny Prijonob681a2f2007-03-25 18:44:51 +0000905
Benny Prijonoc97608e2007-03-23 16:34:20 +0000906 /* Create each media transport */
907 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono096c56c2007-09-15 08:30:16 +0000908 pjmedia_ice_cb ice_cb;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000909 char name[32];
Benny Prijonof76e1392008-06-06 14:51:48 +0000910 unsigned comp_cnt;
Benny Prijonoc97608e2007-03-23 16:34:20 +0000911
Benny Prijono096c56c2007-09-15 08:30:16 +0000912 pj_bzero(&ice_cb, sizeof(pjmedia_ice_cb));
913 ice_cb.on_ice_complete = &on_ice_complete;
Benny Prijono38fb3ea2008-01-02 08:27:03 +0000914 pj_ansi_snprintf(name, sizeof(name), "icetp%02d", i);
Benny Prijono224b4e22008-06-19 14:10:28 +0000915 pjsua_var.calls[i].med_tp_ready = PJ_EPENDING;
Benny Prijonof76e1392008-06-06 14:51:48 +0000916
917 comp_cnt = 1;
Benny Prijono551af422008-08-07 09:55:52 +0000918 if (PJMEDIA_ADVERTISE_RTCP && !pjsua_var.media_cfg.ice_no_rtcp)
Benny Prijonof76e1392008-06-06 14:51:48 +0000919 ++comp_cnt;
920
921 status = pjmedia_ice_create(pjsua_var.med_endpt, name, comp_cnt,
922 &ice_cfg, &ice_cb,
Benny Prijonoc97608e2007-03-23 16:34:20 +0000923 &pjsua_var.calls[i].med_tp);
924 if (status != PJ_SUCCESS) {
925 pjsua_perror(THIS_FILE, "Unable to create ICE media transport",
926 status);
927 goto on_error;
928 }
929
Benny Prijonof76e1392008-06-06 14:51:48 +0000930 /* Wait until transport is initialized, or time out */
931 PJSUA_UNLOCK();
Benny Prijono224b4e22008-06-19 14:10:28 +0000932 while (pjsua_var.calls[i].med_tp_ready == PJ_EPENDING) {
Benny Prijonof76e1392008-06-06 14:51:48 +0000933 pjsua_handle_events(100);
934 }
935 PJSUA_LOCK();
Benny Prijono224b4e22008-06-19 14:10:28 +0000936 if (pjsua_var.calls[i].med_tp_ready != PJ_SUCCESS) {
Benny Prijonof76e1392008-06-06 14:51:48 +0000937 pjsua_perror(THIS_FILE, "Error initializing ICE media transport",
Benny Prijono224b4e22008-06-19 14:10:28 +0000938 pjsua_var.calls[i].med_tp_ready);
939 status = pjsua_var.calls[i].med_tp_ready;
Benny Prijonof76e1392008-06-06 14:51:48 +0000940 goto on_error;
941 }
942
Benny Prijonod8179652008-01-23 20:39:07 +0000943 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
944 PJMEDIA_DIR_ENCODING,
945 pjsua_var.media_cfg.tx_drop_pct);
Benny Prijono11da9bc2007-09-15 08:55:00 +0000946
Benny Prijonod8179652008-01-23 20:39:07 +0000947 pjmedia_transport_simulate_lost(pjsua_var.calls[i].med_tp,
948 PJMEDIA_DIR_DECODING,
949 pjsua_var.media_cfg.rx_drop_pct);
Benny Prijonoc97608e2007-03-23 16:34:20 +0000950 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000951
952 return PJ_SUCCESS;
953
954on_error:
955 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
956 if (pjsua_var.calls[i].med_tp != NULL) {
Benny Prijonoc97608e2007-03-23 16:34:20 +0000957 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000958 pjsua_var.calls[i].med_tp = NULL;
959 }
960 }
961
Benny Prijonoc97608e2007-03-23 16:34:20 +0000962 return status;
963}
964
965
966/*
967 * Create UDP media transports for all the calls. This function creates
968 * one UDP media transport for each call.
969 */
Benny Prijono1f61a8f2007-08-16 10:11:44 +0000970PJ_DEF(pj_status_t) pjsua_media_transports_create(
971 const pjsua_transport_config *app_cfg)
Benny Prijonoc97608e2007-03-23 16:34:20 +0000972{
973 pjsua_transport_config cfg;
974 unsigned i;
975 pj_status_t status;
976
977
978 /* Make sure pjsua_init() has been called */
979 PJ_ASSERT_RETURN(pjsua_var.ua_cfg.max_calls>0, PJ_EINVALIDOP);
980
981 PJSUA_LOCK();
982
983 /* Delete existing media transports */
984 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
Benny Prijono40860c32008-09-04 13:55:33 +0000985 if (pjsua_var.calls[i].med_tp != NULL &&
986 pjsua_var.calls[i].med_tp_auto_del)
987 {
Benny Prijonoc97608e2007-03-23 16:34:20 +0000988 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
989 pjsua_var.calls[i].med_tp = NULL;
Nanang Izzuddind704a8b2008-09-23 16:34:07 +0000990 pjsua_var.calls[i].med_orig = NULL;
Benny Prijonoc97608e2007-03-23 16:34:20 +0000991 }
992 }
993
994 /* Copy config */
995 pjsua_transport_config_dup(pjsua_var.pool, &cfg, app_cfg);
996
Benny Prijono40860c32008-09-04 13:55:33 +0000997 /* Create the transports */
Benny Prijonoc97608e2007-03-23 16:34:20 +0000998 if (pjsua_var.media_cfg.enable_ice) {
Benny Prijonof76e1392008-06-06 14:51:48 +0000999 status = create_ice_media_transports();
Benny Prijonoc97608e2007-03-23 16:34:20 +00001000 } else {
1001 status = create_udp_media_transports(&cfg);
1002 }
1003
Benny Prijono40860c32008-09-04 13:55:33 +00001004 /* Set media transport auto_delete to True */
1005 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
1006 pjsua_var.calls[i].med_tp_auto_del = PJ_TRUE;
1007 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001008
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001009 PJSUA_UNLOCK();
1010
1011 return status;
1012}
1013
Benny Prijono40860c32008-09-04 13:55:33 +00001014/*
1015 * Attach application's created media transports.
1016 */
1017PJ_DEF(pj_status_t) pjsua_media_transports_attach(pjsua_media_transport tp[],
1018 unsigned count,
1019 pj_bool_t auto_delete)
1020{
1021 unsigned i;
1022
1023 PJ_ASSERT_RETURN(tp && count==pjsua_var.ua_cfg.max_calls, PJ_EINVAL);
1024
1025 /* Assign the media transports */
1026 for (i=0; i<pjsua_var.ua_cfg.max_calls; ++i) {
1027 if (pjsua_var.calls[i].med_tp != NULL &&
1028 pjsua_var.calls[i].med_tp_auto_del)
1029 {
1030 pjmedia_transport_close(pjsua_var.calls[i].med_tp);
1031 }
1032
1033 pjsua_var.calls[i].med_tp = tp[i].transport;
1034 pjsua_var.calls[i].med_tp_auto_del = auto_delete;
1035 }
1036
1037 return PJ_SUCCESS;
1038}
1039
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001040
Benny Prijonoc97608e2007-03-23 16:34:20 +00001041pj_status_t pjsua_media_channel_init(pjsua_call_id call_id,
Benny Prijonod8179652008-01-23 20:39:07 +00001042 pjsip_role_e role,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001043 int security_level,
Benny Prijono224b4e22008-06-19 14:10:28 +00001044 pj_pool_t *tmp_pool,
1045 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001046 int *sip_err_code)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001047{
1048 pjsua_call *call = &pjsua_var.calls[call_id];
Benny Prijono224b4e22008-06-19 14:10:28 +00001049 pj_status_t status;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001050
Benny Prijonod8179652008-01-23 20:39:07 +00001051#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
1052 pjsua_acc *acc = &pjsua_var.acc[call->acc_id];
1053 pjmedia_srtp_setting srtp_opt;
Benny Prijonoa310bd22008-06-27 21:19:44 +00001054 pjmedia_transport *srtp = NULL;
Benny Prijonod8179652008-01-23 20:39:07 +00001055#endif
Benny Prijonoc97608e2007-03-23 16:34:20 +00001056
Benny Prijonod8179652008-01-23 20:39:07 +00001057 PJ_UNUSED_ARG(role);
Benny Prijonoc97608e2007-03-23 16:34:20 +00001058
Benny Prijonod8179652008-01-23 20:39:07 +00001059 /* Return error if media transport has not been created yet
1060 * (e.g. application is starting)
1061 */
1062 if (call->med_tp == NULL) {
Benny Prijono03789052008-09-16 14:30:50 +00001063 if (sip_err_code)
1064 *sip_err_code = PJSIP_SC_INTERNAL_SERVER_ERROR;
Benny Prijonod8179652008-01-23 20:39:07 +00001065 return PJ_EBUSY;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001066 }
1067
Benny Prijonod8179652008-01-23 20:39:07 +00001068#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
Benny Prijono53a7c702008-04-14 02:57:29 +00001069 /* This function may be called when SRTP transport already exists
1070 * (e.g: in re-invite, update), don't need to destroy/re-create.
1071 */
1072 if (!call->med_orig || call->med_tp == call->med_orig) {
1073
1074 /* Check if SRTP requires secure signaling */
1075 if (acc->cfg.use_srtp != PJMEDIA_SRTP_DISABLED) {
1076 if (security_level < acc->cfg.srtp_secure_signaling) {
1077 if (sip_err_code)
1078 *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE;
1079 return PJSIP_ESESSIONINSECURE;
1080 }
Benny Prijonod8179652008-01-23 20:39:07 +00001081 }
Benny Prijonod8179652008-01-23 20:39:07 +00001082
Benny Prijono53a7c702008-04-14 02:57:29 +00001083 /* Always create SRTP adapter */
1084 pjmedia_srtp_setting_default(&srtp_opt);
1085 srtp_opt.close_member_tp = PJ_FALSE;
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001086 /* If media session has been ever established, let's use remote's
1087 * preference in SRTP usage policy, especially when it is stricter.
1088 */
1089 if (call->rem_srtp_use > acc->cfg.use_srtp)
1090 srtp_opt.use = call->rem_srtp_use;
1091 else
1092 srtp_opt.use = acc->cfg.use_srtp;
1093
Benny Prijono53a7c702008-04-14 02:57:29 +00001094 status = pjmedia_transport_srtp_create(pjsua_var.med_endpt,
1095 call->med_tp,
1096 &srtp_opt, &srtp);
1097 if (status != PJ_SUCCESS) {
1098 if (sip_err_code)
1099 *sip_err_code = PJSIP_SC_INTERNAL_SERVER_ERROR;
1100 return status;
1101 }
Benny Prijonod8179652008-01-23 20:39:07 +00001102
Benny Prijono53a7c702008-04-14 02:57:29 +00001103 /* Set SRTP as current media transport */
1104 call->med_orig = call->med_tp;
1105 call->med_tp = srtp;
1106 }
Benny Prijonod8179652008-01-23 20:39:07 +00001107#else
1108 call->med_orig = call->med_tp;
1109 PJ_UNUSED_ARG(security_level);
1110#endif
1111
Benny Prijonoa310bd22008-06-27 21:19:44 +00001112 /* Find out which media line in SDP that we support. If we are offerer,
1113 * audio will be at index 0 in SDP.
1114 */
1115 if (rem_sdp == 0) {
1116 call->audio_idx = 0;
1117 }
1118 /* Otherwise find out the candidate audio media line in SDP */
1119 else {
1120 unsigned i;
1121 pj_bool_t srtp_active;
1122
1123#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
1124 srtp_active = acc->cfg.use_srtp && srtp != NULL;
1125#else
1126 srtp_active = PJ_FALSE;
1127#endif
1128
1129 /* Media count must have been checked */
1130 pj_assert(rem_sdp->media_count != 0);
1131
1132 for (i=0; i<rem_sdp->media_count; ++i) {
1133 const pjmedia_sdp_media *m = rem_sdp->media[i];
1134
1135 /* Skip if media is not audio */
1136 if (pj_stricmp2(&m->desc.media, "audio") != 0)
1137 continue;
1138
1139 /* Skip if media is disabled */
1140 if (m->desc.port == 0)
1141 continue;
1142
1143 /* Skip if transport is not supported */
1144 if (pj_stricmp2(&m->desc.transport, "RTP/AVP") != 0 &&
1145 pj_stricmp2(&m->desc.transport, "RTP/SAVP") != 0)
1146 {
1147 continue;
1148 }
1149
1150 if (call->audio_idx == -1) {
1151 call->audio_idx = i;
1152 } else {
1153 /* We've found multiple candidates. This could happen
1154 * e.g. when remote is offering both RTP/AVP and RTP/AVP,
1155 * or when remote for some reason offers two audio.
1156 */
1157
1158 if (srtp_active &&
1159 pj_stricmp2(&m->desc.transport, "RTP/SAVP")==0)
1160 {
1161 /* Prefer RTP/SAVP when our media transport is SRTP */
1162 call->audio_idx = i;
1163 } else if (!srtp_active &&
1164 pj_stricmp2(&m->desc.transport, "RTP/AVP")==0)
1165 {
1166 /* Prefer RTP/AVP when our media transport is NOT SRTP */
1167 call->audio_idx = i;
1168 }
1169 }
1170 }
1171 }
1172
1173 /* Reject offer if we couldn't find a good m=audio line in offer */
1174 if (call->audio_idx < 0) {
Benny Prijonoab8dba92008-06-27 21:59:15 +00001175 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE_HERE;
Benny Prijonoa310bd22008-06-27 21:19:44 +00001176 pjsua_media_channel_deinit(call_id);
Benny Prijonoab8dba92008-06-27 21:59:15 +00001177 return PJSIP_ERRNO_FROM_SIP_STATUS(PJSIP_SC_NOT_ACCEPTABLE_HERE);
Benny Prijonoa310bd22008-06-27 21:19:44 +00001178 }
1179
1180 PJ_LOG(4,(THIS_FILE, "Media index %d selected for call %d",
1181 call->audio_idx, call->index));
1182
Benny Prijono224b4e22008-06-19 14:10:28 +00001183 /* Create the media transport */
1184 status = pjmedia_transport_media_create(call->med_tp, tmp_pool, 0,
Benny Prijonoa310bd22008-06-27 21:19:44 +00001185 rem_sdp, call->audio_idx);
Benny Prijono224b4e22008-06-19 14:10:28 +00001186 if (status != PJ_SUCCESS) {
1187 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE;
1188 pjsua_media_channel_deinit(call_id);
1189 return status;
1190 }
1191
1192 call->med_tp_st = PJSUA_MED_TP_INIT;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001193 return PJ_SUCCESS;
1194}
1195
1196pj_status_t pjsua_media_channel_create_sdp(pjsua_call_id call_id,
1197 pj_pool_t *pool,
Benny Prijonod8179652008-01-23 20:39:07 +00001198 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +00001199 pjmedia_sdp_session **p_sdp,
1200 int *sip_status_code)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001201{
Benny Prijonoa310bd22008-06-27 21:19:44 +00001202 enum { MAX_MEDIA = 1 };
Benny Prijonoc97608e2007-03-23 16:34:20 +00001203 pjmedia_sdp_session *sdp;
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001204 pjmedia_transport_info tpinfo;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001205 pjsua_call *call = &pjsua_var.calls[call_id];
1206 pj_status_t status;
1207
Benny Prijono55e82352007-05-10 20:49:08 +00001208 /* Return error if media transport has not been created yet
1209 * (e.g. application is starting)
1210 */
1211 if (call->med_tp == NULL) {
1212 return PJ_EBUSY;
1213 }
1214
Benny Prijonoa310bd22008-06-27 21:19:44 +00001215 /* Media index must have been determined before */
1216 pj_assert(call->audio_idx != -1);
1217
Benny Prijono224b4e22008-06-19 14:10:28 +00001218 /* Create media if it's not created. This could happen when call is
1219 * currently on-hold
1220 */
1221 if (call->med_tp_st == PJSUA_MED_TP_IDLE) {
1222 pjsip_role_e role;
1223 role = (rem_sdp ? PJSIP_ROLE_UAS : PJSIP_ROLE_UAC);
1224 status = pjsua_media_channel_init(call_id, role, call->secure_level,
1225 pool, rem_sdp, sip_status_code);
1226 if (status != PJ_SUCCESS)
1227 return status;
1228 }
1229
Benny Prijono617c5bc2007-04-02 19:51:21 +00001230 /* Get media socket info */
Benny Prijono734fc2d2008-03-17 16:05:35 +00001231 pjmedia_transport_info_init(&tpinfo);
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001232 pjmedia_transport_get_info(call->med_tp, &tpinfo);
Benny Prijono617c5bc2007-04-02 19:51:21 +00001233
1234 /* Create SDP */
Benny Prijonod8179652008-01-23 20:39:07 +00001235 status = pjmedia_endpt_create_sdp(pjsua_var.med_endpt, pool, MAX_MEDIA,
Benny Prijonoe1a5a852008-03-11 21:38:05 +00001236 &tpinfo.sock_info, &sdp);
Benny Prijono25b2ea12008-01-24 19:20:54 +00001237 if (status != PJ_SUCCESS) {
1238 if (sip_status_code) *sip_status_code = 500;
Benny Prijono224b4e22008-06-19 14:10:28 +00001239 return status;
Benny Prijono25b2ea12008-01-24 19:20:54 +00001240 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001241
Benny Prijonoa310bd22008-06-27 21:19:44 +00001242 /* If we're answering and the selected media is not the first media
1243 * in SDP, then fill in the unselected media with with zero port.
1244 * Otherwise we'll crash in transport_encode_sdp() because the media
1245 * lines are not aligned between offer and answer.
1246 */
1247 if (rem_sdp && call->audio_idx != 0) {
1248 unsigned i;
1249
1250 for (i=0; i<rem_sdp->media_count; ++i) {
1251 const pjmedia_sdp_media *rem_m = rem_sdp->media[i];
1252 pjmedia_sdp_media *m;
1253 const pjmedia_sdp_attr *a;
1254
1255 if ((int)i == call->audio_idx)
1256 continue;
1257
1258 m = PJ_POOL_ZALLOC_T(pool, pjmedia_sdp_media);
1259 pj_strdup(pool, &m->desc.media, &rem_m->desc.media);
1260 pj_strdup(pool, &m->desc.transport, &rem_m->desc.transport);
1261 m->desc.port = 0;
1262
1263 /* Add one format, copy from the offer. And copy the corresponding
1264 * rtpmap and fmtp attributes too.
1265 */
1266 m->desc.fmt_count = 1;
1267 pj_strdup(pool, &m->desc.fmt[0], &rem_m->desc.fmt[0]);
1268 if ((a=pjmedia_sdp_attr_find2(rem_m->attr_count, rem_m->attr,
1269 "rtpmap", &m->desc.fmt[0])) != NULL)
1270 {
1271 m->attr[m->attr_count++] = pjmedia_sdp_attr_clone(pool, a);
1272 }
1273 if ((a=pjmedia_sdp_attr_find2(rem_m->attr_count, rem_m->attr,
1274 "fmtp", &m->desc.fmt[0])) != NULL)
1275 {
1276 m->attr[m->attr_count++] = pjmedia_sdp_attr_clone(pool, a);
1277 }
1278
1279 if (i==sdp->media_count)
1280 sdp->media[sdp->media_count++] = m;
1281 else {
1282 pj_array_insert(sdp->media, sizeof(sdp->media[0]),
1283 sdp->media_count, i, &m);
1284 ++sdp->media_count;
1285 }
1286 }
1287 }
1288
Benny Prijono6ba8c542007-10-16 01:34:14 +00001289 /* Add NAT info in the SDP */
1290 if (pjsua_var.ua_cfg.nat_type_in_sdp) {
1291 pjmedia_sdp_attr *a;
1292 pj_str_t value;
1293 char nat_info[80];
1294
1295 value.ptr = nat_info;
1296 if (pjsua_var.ua_cfg.nat_type_in_sdp == 1) {
1297 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1298 "%d", pjsua_var.nat_type);
1299 } else {
1300 const char *type_name = pj_stun_get_nat_name(pjsua_var.nat_type);
1301 value.slen = pj_ansi_snprintf(nat_info, sizeof(nat_info),
1302 "%d %s",
1303 pjsua_var.nat_type,
1304 type_name);
1305 }
1306
1307 a = pjmedia_sdp_attr_create(pool, "X-nat", &value);
1308
1309 pjmedia_sdp_attr_add(&sdp->attr_count, sdp->attr, a);
1310
1311 }
1312
Benny Prijonod8179652008-01-23 20:39:07 +00001313 /* Give the SDP to media transport */
Benny Prijono224b4e22008-06-19 14:10:28 +00001314 status = pjmedia_transport_encode_sdp(call->med_tp, pool, sdp, rem_sdp,
Benny Prijonoa310bd22008-06-27 21:19:44 +00001315 call->audio_idx);
Benny Prijono25b2ea12008-01-24 19:20:54 +00001316 if (status != PJ_SUCCESS) {
1317 if (sip_status_code) *sip_status_code = PJSIP_SC_NOT_ACCEPTABLE;
Benny Prijono224b4e22008-06-19 14:10:28 +00001318 return status;
Benny Prijono25b2ea12008-01-24 19:20:54 +00001319 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001320
1321 *p_sdp = sdp;
1322 return PJ_SUCCESS;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001323}
1324
1325
1326static void stop_media_session(pjsua_call_id call_id)
1327{
1328 pjsua_call *call = &pjsua_var.calls[call_id];
1329
1330 if (call->conf_slot != PJSUA_INVALID_ID) {
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001331 if (pjsua_var.mconf) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001332 pjsua_conf_remove_port(call->conf_slot);
Nanang Izzuddinfd461eb2008-06-09 09:35:59 +00001333 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001334 call->conf_slot = PJSUA_INVALID_ID;
1335 }
1336
1337 if (call->session) {
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001338 pjmedia_rtcp_stat stat;
1339
Nanang Izzuddin437d77c2008-08-26 18:04:15 +00001340 if (pjmedia_session_get_stream_stat(call->session, 0, &stat)
1341 == PJ_SUCCESS)
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001342 {
1343 /* Save RTP timestamp & sequence, so when media session is
1344 * restarted, those values will be restored as the initial
1345 * RTP timestamp & sequence of the new media session. So in
1346 * the same call session, RTP timestamp and sequence are
1347 * guaranteed to be contigue.
1348 */
1349 call->rtp_tx_seq_ts_set = 1 | (1 << 1);
1350 call->rtp_tx_seq = stat.rtp_tx_last_seq;
1351 call->rtp_tx_ts = stat.rtp_tx_last_ts;
1352 }
1353
Benny Prijonofc13bf62008-02-20 08:56:15 +00001354 if (pjsua_var.ua_cfg.cb.on_stream_destroyed) {
1355 pjsua_var.ua_cfg.cb.on_stream_destroyed(call_id, call->session, 0);
1356 }
1357
Benny Prijonoc97608e2007-03-23 16:34:20 +00001358 pjmedia_session_destroy(call->session);
1359 call->session = NULL;
1360
1361 PJ_LOG(4,(THIS_FILE, "Media session for call %d is destroyed",
1362 call_id));
1363
1364 }
1365
1366 call->media_st = PJSUA_CALL_MEDIA_NONE;
1367}
1368
1369pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id)
1370{
1371 pjsua_call *call = &pjsua_var.calls[call_id];
1372
1373 stop_media_session(call_id);
1374
Benny Prijono224b4e22008-06-19 14:10:28 +00001375 if (call->med_tp_st != PJSUA_MED_TP_IDLE) {
1376 pjmedia_transport_media_stop(call->med_tp);
1377 call->med_tp_st = PJSUA_MED_TP_IDLE;
1378 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001379
Benny Prijono311b63f2008-07-14 11:31:40 +00001380 if (call->med_orig && call->med_tp && call->med_tp != call->med_orig) {
Benny Prijonod8179652008-01-23 20:39:07 +00001381 pjmedia_transport_close(call->med_tp);
1382 call->med_tp = call->med_orig;
1383 }
Nanang Izzuddin670f71b2009-01-20 14:05:54 +00001384
1385 check_snd_dev_idle();
1386
Benny Prijonoc97608e2007-03-23 16:34:20 +00001387 return PJ_SUCCESS;
1388}
1389
1390
1391/*
1392 * DTMF callback from the stream.
1393 */
1394static void dtmf_callback(pjmedia_stream *strm, void *user_data,
1395 int digit)
1396{
1397 PJ_UNUSED_ARG(strm);
1398
Benny Prijono0c068262008-02-14 14:38:52 +00001399 /* For discussions about call mutex protection related to this
1400 * callback, please see ticket #460:
1401 * http://trac.pjsip.org/repos/ticket/460#comment:4
1402 */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001403 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1404 pjsua_call_id call_id;
1405
Benny Prijonod8179652008-01-23 20:39:07 +00001406 call_id = (pjsua_call_id)(long)user_data;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001407 pjsua_var.ua_cfg.cb.on_dtmf_digit(call_id, digit);
1408 }
1409}
1410
1411
1412pj_status_t pjsua_media_channel_update(pjsua_call_id call_id,
Benny Prijono224b4e22008-06-19 14:10:28 +00001413 const pjmedia_sdp_session *local_sdp,
Benny Prijonodbce2cf2007-03-28 16:24:00 +00001414 const pjmedia_sdp_session *remote_sdp)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001415{
1416 int prev_media_st = 0;
1417 pjsua_call *call = &pjsua_var.calls[call_id];
1418 pjmedia_session_info sess_info;
Benny Prijono91e567e2007-12-28 08:51:58 +00001419 pjmedia_stream_info *si = NULL;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001420 pjmedia_port *media_port;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001421 pj_status_t status;
1422
1423 /* Destroy existing media session, if any. */
1424 prev_media_st = call->media_st;
1425 stop_media_session(call->index);
1426
1427 /* Create media session info based on SDP parameters.
Benny Prijonoc97608e2007-03-23 16:34:20 +00001428 */
1429 status = pjmedia_session_info_from_sdp( call->inv->dlg->pool,
1430 pjsua_var.med_endpt,
Benny Prijono91e567e2007-12-28 08:51:58 +00001431 PJMEDIA_MAX_SDP_MEDIA, &sess_info,
Benny Prijonoc97608e2007-03-23 16:34:20 +00001432 local_sdp, remote_sdp);
1433 if (status != PJ_SUCCESS)
1434 return status;
1435
Benny Prijonoa310bd22008-06-27 21:19:44 +00001436 /* Find which session is audio */
1437 PJ_ASSERT_RETURN(call->audio_idx != -1, PJ_EBUG);
1438 PJ_ASSERT_RETURN(call->audio_idx < (int)sess_info.stream_cnt, PJ_EBUG);
1439 si = &sess_info.stream_info[call->audio_idx];
Benny Prijono91e567e2007-12-28 08:51:58 +00001440
1441 /* Reset session info with only one media stream */
1442 sess_info.stream_cnt = 1;
1443 if (si != &sess_info.stream_info[0])
1444 pj_memcpy(&sess_info.stream_info[0], si, sizeof(pjmedia_stream_info));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001445
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001446 /* Check if no media is active */
Benny Prijono91e567e2007-12-28 08:51:58 +00001447 if (sess_info.stream_cnt == 0 || si->dir == PJMEDIA_DIR_NONE)
Benny Prijonoc97608e2007-03-23 16:34:20 +00001448 {
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001449 /* Call media state */
1450 call->media_st = PJSUA_CALL_MEDIA_NONE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001451
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001452 /* Call media direction */
Benny Prijonoc97608e2007-03-23 16:34:20 +00001453 call->media_dir = PJMEDIA_DIR_NONE;
1454
Benny Prijonod8179652008-01-23 20:39:07 +00001455 /* Shutdown transport's session */
1456 pjmedia_transport_media_stop(call->med_tp);
Benny Prijono224b4e22008-06-19 14:10:28 +00001457 call->med_tp_st = PJSUA_MED_TP_IDLE;
Benny Prijono667952e2007-04-02 19:27:54 +00001458
Benny Prijonoc97608e2007-03-23 16:34:20 +00001459 /* No need because we need keepalive? */
1460
Benny Prijono68f9e4f2008-03-21 08:56:02 +00001461 /* Close upper entry of transport stack */
1462 if (call->med_orig && (call->med_tp != call->med_orig)) {
1463 pjmedia_transport_close(call->med_tp);
1464 call->med_tp = call->med_orig;
1465 }
1466
Benny Prijonoc97608e2007-03-23 16:34:20 +00001467 } else {
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001468 pjmedia_transport_info tp_info;
1469
Benny Prijono224b4e22008-06-19 14:10:28 +00001470 /* Start/restart media transport */
Benny Prijonod8179652008-01-23 20:39:07 +00001471 status = pjmedia_transport_media_start(call->med_tp,
1472 call->inv->pool,
1473 local_sdp, remote_sdp, 0);
1474 if (status != PJ_SUCCESS)
1475 return status;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001476
Benny Prijono224b4e22008-06-19 14:10:28 +00001477 call->med_tp_st = PJSUA_MED_TP_RUNNING;
1478
Nanang Izzuddin4375f902008-06-26 19:12:09 +00001479 /* Get remote SRTP usage policy */
1480 pjmedia_transport_info_init(&tp_info);
1481 pjmedia_transport_get_info(call->med_tp, &tp_info);
1482 if (tp_info.specific_info_cnt > 0) {
1483 int i;
1484 for (i = 0; i < tp_info.specific_info_cnt; ++i) {
1485 if (tp_info.spc_info[i].type == PJMEDIA_TRANSPORT_TYPE_SRTP)
1486 {
1487 pjmedia_srtp_info *srtp_info =
1488 (pjmedia_srtp_info*) tp_info.spc_info[i].buffer;
1489
1490 call->rem_srtp_use = srtp_info->peer_use;
1491 break;
1492 }
1493 }
1494 }
1495
Benny Prijonoc97608e2007-03-23 16:34:20 +00001496 /* Override ptime, if this option is specified. */
1497 if (pjsua_var.media_cfg.ptime != 0) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001498 si->param->setting.frm_per_pkt = (pj_uint8_t)
1499 (pjsua_var.media_cfg.ptime / si->param->info.frm_ptime);
1500 if (si->param->setting.frm_per_pkt == 0)
1501 si->param->setting.frm_per_pkt = 1;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001502 }
1503
1504 /* Disable VAD, if this option is specified. */
1505 if (pjsua_var.media_cfg.no_vad) {
Benny Prijono91e567e2007-12-28 08:51:58 +00001506 si->param->setting.vad = 0;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001507 }
1508
1509
1510 /* Optionally, application may modify other stream settings here
1511 * (such as jitter buffer parameters, codec ptime, etc.)
1512 */
Benny Prijono91e567e2007-12-28 08:51:58 +00001513 si->jb_init = pjsua_var.media_cfg.jb_init;
1514 si->jb_min_pre = pjsua_var.media_cfg.jb_min_pre;
1515 si->jb_max_pre = pjsua_var.media_cfg.jb_max_pre;
1516 si->jb_max = pjsua_var.media_cfg.jb_max;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001517
Benny Prijono8147f402007-11-21 14:50:07 +00001518 /* Set SSRC */
Benny Prijono91e567e2007-12-28 08:51:58 +00001519 si->ssrc = call->ssrc;
Benny Prijono8147f402007-11-21 14:50:07 +00001520
Nanang Izzuddina815ceb2008-08-26 16:51:28 +00001521 /* Set RTP timestamp & sequence, normally these value are intialized
1522 * automatically when stream session created, but for some cases (e.g:
1523 * call reinvite, call update) timestamp and sequence need to be kept
1524 * contigue.
1525 */
1526 si->rtp_ts = call->rtp_tx_ts;
1527 si->rtp_seq = call->rtp_tx_seq;
1528 si->rtp_seq_ts_set = call->rtp_tx_seq_ts_set;
1529
Benny Prijonoc97608e2007-03-23 16:34:20 +00001530 /* Create session based on session info. */
1531 status = pjmedia_session_create( pjsua_var.med_endpt, &sess_info,
1532 &call->med_tp,
1533 call, &call->session );
1534 if (status != PJ_SUCCESS) {
1535 return status;
1536 }
1537
1538 /* If DTMF callback is installed by application, install our
1539 * callback to the session.
1540 */
1541 if (pjsua_var.ua_cfg.cb.on_dtmf_digit) {
1542 pjmedia_session_set_dtmf_callback(call->session, 0,
1543 &dtmf_callback,
Benny Prijonod8179652008-01-23 20:39:07 +00001544 (void*)(long)(call->index));
Benny Prijonoc97608e2007-03-23 16:34:20 +00001545 }
1546
1547 /* Get the port interface of the first stream in the session.
1548 * We need the port interface to add to the conference bridge.
1549 */
1550 pjmedia_session_get_port(call->session, 0, &media_port);
1551
Benny Prijonofc13bf62008-02-20 08:56:15 +00001552 /* Notify application about stream creation.
1553 * Note: application may modify media_port to point to different
1554 * media port
1555 */
1556 if (pjsua_var.ua_cfg.cb.on_stream_created) {
1557 pjsua_var.ua_cfg.cb.on_stream_created(call_id, call->session,
1558 0, &media_port);
1559 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001560
1561 /*
1562 * Add the call to conference bridge.
1563 */
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001564 {
1565 char tmp[PJSIP_MAX_URL_SIZE];
1566 pj_str_t port_name;
1567
1568 port_name.ptr = tmp;
1569 port_name.slen = pjsip_uri_print(PJSIP_URI_IN_REQ_URI,
1570 call->inv->dlg->remote.info->uri,
1571 tmp, sizeof(tmp));
1572 if (port_name.slen < 1) {
1573 port_name = pj_str("call");
1574 }
1575 status = pjmedia_conf_add_port( pjsua_var.mconf, call->inv->pool,
1576 media_port,
1577 &port_name,
1578 (unsigned*)&call->conf_slot);
1579 if (status != PJ_SUCCESS) {
1580 return status;
1581 }
Benny Prijonoc97608e2007-03-23 16:34:20 +00001582 }
1583
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001584 /* Call media direction */
Benny Prijono91e567e2007-12-28 08:51:58 +00001585 call->media_dir = si->dir;
Nanang Izzuddin99d69522008-08-04 15:01:38 +00001586
1587 /* Call media state */
1588 if (call->local_hold)
1589 call->media_st = PJSUA_CALL_MEDIA_LOCAL_HOLD;
1590 else if (call->media_dir == PJMEDIA_DIR_DECODING)
1591 call->media_st = PJSUA_CALL_MEDIA_REMOTE_HOLD;
1592 else
1593 call->media_st = PJSUA_CALL_MEDIA_ACTIVE;
Benny Prijonoc97608e2007-03-23 16:34:20 +00001594 }
1595
1596 /* Print info. */
1597 {
1598 char info[80];
1599 int info_len = 0;
1600 unsigned i;
1601
1602 for (i=0; i<sess_info.stream_cnt; ++i) {
1603 int len;
1604 const char *dir;
1605 pjmedia_stream_info *strm_info = &sess_info.stream_info[i];
1606
1607 switch (strm_info->dir) {
1608 case PJMEDIA_DIR_NONE:
1609 dir = "inactive";
1610 break;
1611 case PJMEDIA_DIR_ENCODING:
1612 dir = "sendonly";
1613 break;
1614 case PJMEDIA_DIR_DECODING:
1615 dir = "recvonly";
1616 break;
1617 case PJMEDIA_DIR_ENCODING_DECODING:
1618 dir = "sendrecv";
1619 break;
1620 default:
1621 dir = "unknown";
1622 break;
1623 }
1624 len = pj_ansi_sprintf( info+info_len,
1625 ", stream #%d: %.*s (%s)", i,
1626 (int)strm_info->fmt.encoding_name.slen,
1627 strm_info->fmt.encoding_name.ptr,
1628 dir);
1629 if (len > 0)
1630 info_len += len;
1631 }
1632 PJ_LOG(4,(THIS_FILE,"Media updates%s", info));
1633 }
1634
1635 return PJ_SUCCESS;
1636}
1637
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001638/*
1639 * Get maxinum number of conference ports.
1640 */
1641PJ_DEF(unsigned) pjsua_conf_get_max_ports(void)
1642{
1643 return pjsua_var.media_cfg.max_media_ports;
1644}
1645
1646
1647/*
1648 * Get current number of active ports in the bridge.
1649 */
1650PJ_DEF(unsigned) pjsua_conf_get_active_ports(void)
1651{
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001652 unsigned ports[PJSUA_MAX_CONF_PORTS];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001653 unsigned count = PJ_ARRAY_SIZE(ports);
1654 pj_status_t status;
1655
1656 status = pjmedia_conf_enum_ports(pjsua_var.mconf, ports, &count);
1657 if (status != PJ_SUCCESS)
1658 count = 0;
1659
1660 return count;
1661}
1662
1663
1664/*
1665 * Enumerate all conference ports.
1666 */
1667PJ_DEF(pj_status_t) pjsua_enum_conf_ports(pjsua_conf_port_id id[],
1668 unsigned *count)
1669{
1670 return pjmedia_conf_enum_ports(pjsua_var.mconf, (unsigned*)id, count);
1671}
1672
1673
1674/*
1675 * Get information about the specified conference port
1676 */
1677PJ_DEF(pj_status_t) pjsua_conf_get_port_info( pjsua_conf_port_id id,
1678 pjsua_conf_port_info *info)
1679{
1680 pjmedia_conf_port_info cinfo;
Benny Prijono0498d902006-06-19 14:49:14 +00001681 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001682 pj_status_t status;
1683
1684 status = pjmedia_conf_get_port_info( pjsua_var.mconf, id, &cinfo);
1685 if (status != PJ_SUCCESS)
1686 return status;
1687
Benny Prijonoac623b32006-07-03 15:19:31 +00001688 pj_bzero(info, sizeof(*info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001689 info->slot_id = id;
1690 info->name = cinfo.name;
1691 info->clock_rate = cinfo.clock_rate;
1692 info->channel_count = cinfo.channel_count;
1693 info->samples_per_frame = cinfo.samples_per_frame;
1694 info->bits_per_sample = cinfo.bits_per_sample;
1695
1696 /* Build array of listeners */
Benny Prijonoc78c3a32006-06-16 15:54:43 +00001697 info->listener_cnt = cinfo.listener_cnt;
1698 for (i=0; i<cinfo.listener_cnt; ++i) {
1699 info->listeners[i] = cinfo.listener_slots[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001700 }
1701
1702 return PJ_SUCCESS;
1703}
1704
1705
1706/*
Benny Prijonoe909eac2006-07-27 22:04:56 +00001707 * Add arbitrary media port to PJSUA's conference bridge.
1708 */
1709PJ_DEF(pj_status_t) pjsua_conf_add_port( pj_pool_t *pool,
1710 pjmedia_port *port,
1711 pjsua_conf_port_id *p_id)
1712{
1713 pj_status_t status;
1714
1715 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
1716 port, NULL, (unsigned*)p_id);
1717 if (status != PJ_SUCCESS) {
1718 if (p_id)
1719 *p_id = PJSUA_INVALID_ID;
1720 }
1721
1722 return status;
1723}
1724
1725
1726/*
1727 * Remove arbitrary slot from the conference bridge.
1728 */
1729PJ_DEF(pj_status_t) pjsua_conf_remove_port(pjsua_conf_port_id id)
1730{
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001731 pj_status_t status;
1732
1733 status = pjmedia_conf_remove_port(pjsua_var.mconf, (unsigned)id);
1734 check_snd_dev_idle();
1735
1736 return status;
Benny Prijonoe909eac2006-07-27 22:04:56 +00001737}
1738
1739
1740/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001741 * Establish unidirectional media flow from souce to sink.
1742 */
1743PJ_DEF(pj_status_t) pjsua_conf_connect( pjsua_conf_port_id source,
1744 pjsua_conf_port_id sink)
1745{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001746 /* If sound device idle timer is active, cancel it first. */
Benny Prijono0f711b42009-05-06 19:08:43 +00001747 PJSUA_LOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001748 if (pjsua_var.snd_idle_timer.id) {
1749 pjsip_endpt_cancel_timer(pjsua_var.endpt, &pjsua_var.snd_idle_timer);
1750 pjsua_var.snd_idle_timer.id = PJ_FALSE;
1751 }
Benny Prijono0f711b42009-05-06 19:08:43 +00001752 PJSUA_UNLOCK();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001753
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001754
Benny Prijonof798e502009-03-09 13:08:16 +00001755 /* For audio switchboard (i.e. APS-Direct):
1756 * Check if sound device need to be reopened, i.e: its attributes
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001757 * (format, clock rate, channel count) must match to peer's.
1758 * Note that sound device can be reopened only if it doesn't have
1759 * any connection.
1760 */
Benny Prijonof798e502009-03-09 13:08:16 +00001761 if (pjsua_var.is_mswitch) {
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001762 pjmedia_conf_port_info port0_info;
1763 pjmedia_conf_port_info peer_info;
1764 unsigned peer_id;
1765 pj_bool_t need_reopen = PJ_FALSE;
1766 pj_status_t status;
1767
1768 peer_id = (source!=0)? source : sink;
1769 status = pjmedia_conf_get_port_info(pjsua_var.mconf, peer_id,
1770 &peer_info);
1771 pj_assert(status == PJ_SUCCESS);
1772
1773 status = pjmedia_conf_get_port_info(pjsua_var.mconf, 0, &port0_info);
1774 pj_assert(status == PJ_SUCCESS);
1775
1776 /* Check if sound device is instantiated. */
1777 need_reopen = (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1778 !pjsua_var.no_snd);
1779
1780 /* Check if sound device need to reopen because it needs to modify
1781 * settings to match its peer. Sound device must be idle in this case
1782 * though.
1783 */
1784 if (!need_reopen &&
1785 port0_info.listener_cnt==0 && port0_info.transmitter_cnt==0)
1786 {
1787 need_reopen = (peer_info.format.id != port0_info.format.id ||
1788 peer_info.format.bitrate != port0_info.format.bitrate ||
1789 peer_info.clock_rate != port0_info.clock_rate ||
1790 peer_info.channel_count != port0_info.channel_count);
1791 }
1792
1793 if (need_reopen) {
Benny Prijonod65f78c2009-06-03 18:59:37 +00001794 if (pjsua_var.cap_dev != NULL_SND_DEV_ID) {
1795 pjmedia_aud_param param;
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001796
Benny Prijonod65f78c2009-06-03 18:59:37 +00001797 /* Create parameter based on peer info */
1798 status = create_aud_param(&param, pjsua_var.cap_dev,
1799 pjsua_var.play_dev,
1800 peer_info.clock_rate,
1801 peer_info.channel_count,
1802 peer_info.samples_per_frame,
1803 peer_info.bits_per_sample);
1804 if (status != PJ_SUCCESS) {
1805 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1806 return status;
1807 }
Benny Prijonof798e502009-03-09 13:08:16 +00001808
Benny Prijonod65f78c2009-06-03 18:59:37 +00001809 /* And peer format */
1810 if (peer_info.format.id != PJMEDIA_FORMAT_PCM) {
1811 param.flags |= PJMEDIA_AUD_DEV_CAP_EXT_FORMAT;
1812 param.ext_fmt = peer_info.format;
1813 }
Benny Prijono10454dc2009-02-21 14:21:59 +00001814
Benny Prijonod65f78c2009-06-03 18:59:37 +00001815 status = open_snd_dev(&param);
1816 if (status != PJ_SUCCESS) {
1817 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1818 return status;
1819 }
1820 } else {
1821 /* Null-audio */
1822 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1823 if (status != PJ_SUCCESS) {
1824 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1825 return status;
1826 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001827 }
1828 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001829
Benny Prijonof798e502009-03-09 13:08:16 +00001830 } else {
1831 /* The bridge version */
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001832
Benny Prijonof798e502009-03-09 13:08:16 +00001833 /* Create sound port if none is instantiated */
1834 if (pjsua_var.snd_port==NULL && pjsua_var.null_snd==NULL &&
1835 !pjsua_var.no_snd)
1836 {
1837 pj_status_t status;
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001838
Benny Prijonof798e502009-03-09 13:08:16 +00001839 status = pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
1840 if (status != PJ_SUCCESS) {
1841 pjsua_perror(THIS_FILE, "Error opening sound device", status);
1842 return status;
1843 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001844 }
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001845
Benny Prijonof798e502009-03-09 13:08:16 +00001846 }
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00001847
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001848 return pjmedia_conf_connect_port(pjsua_var.mconf, source, sink, 0);
1849}
1850
1851
1852/*
1853 * Disconnect media flow from the source to destination port.
1854 */
1855PJ_DEF(pj_status_t) pjsua_conf_disconnect( pjsua_conf_port_id source,
1856 pjsua_conf_port_id sink)
1857{
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001858 pj_status_t status;
1859
1860 status = pjmedia_conf_disconnect_port(pjsua_var.mconf, source, sink);
Nanang Izzuddin148fd392008-06-16 09:52:50 +00001861 check_snd_dev_idle();
Nanang Izzuddin68559c32008-06-13 17:01:46 +00001862
1863 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001864}
1865
1866
Benny Prijono6dd967c2006-12-26 02:27:14 +00001867/*
1868 * Adjust the signal level to be transmitted from the bridge to the
1869 * specified port by making it louder or quieter.
1870 */
1871PJ_DEF(pj_status_t) pjsua_conf_adjust_tx_level(pjsua_conf_port_id slot,
1872 float level)
1873{
1874 return pjmedia_conf_adjust_tx_level(pjsua_var.mconf, slot,
1875 (int)((level-1) * 128));
1876}
1877
1878/*
1879 * Adjust the signal level to be received from the specified port (to
1880 * the bridge) by making it louder or quieter.
1881 */
1882PJ_DEF(pj_status_t) pjsua_conf_adjust_rx_level(pjsua_conf_port_id slot,
1883 float level)
1884{
1885 return pjmedia_conf_adjust_rx_level(pjsua_var.mconf, slot,
1886 (int)((level-1) * 128));
1887}
1888
1889
1890/*
1891 * Get last signal level transmitted to or received from the specified port.
1892 */
1893PJ_DEF(pj_status_t) pjsua_conf_get_signal_level(pjsua_conf_port_id slot,
1894 unsigned *tx_level,
1895 unsigned *rx_level)
1896{
1897 return pjmedia_conf_get_signal_level(pjsua_var.mconf, slot,
1898 tx_level, rx_level);
1899}
1900
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001901/*****************************************************************************
1902 * File player.
1903 */
1904
Benny Prijonod5696da2007-07-17 16:25:45 +00001905static char* get_basename(const char *path, unsigned len)
1906{
1907 char *p = ((char*)path) + len;
1908
1909 if (len==0)
1910 return p;
1911
Benny Prijono1f61a8f2007-08-16 10:11:44 +00001912 for (--p; p!=path && *p!='/' && *p!='\\'; ) --p;
Benny Prijonod5696da2007-07-17 16:25:45 +00001913
1914 return (p==path) ? p : p+1;
1915}
1916
1917
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001918/*
1919 * Create a file player, and automatically connect this player to
1920 * the conference bridge.
1921 */
1922PJ_DEF(pj_status_t) pjsua_player_create( const pj_str_t *filename,
1923 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001924 pjsua_player_id *p_id)
1925{
1926 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00001927 char path[PJ_MAXPATH];
Benny Prijonod5696da2007-07-17 16:25:45 +00001928 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001929 pjmedia_port *port;
1930 pj_status_t status;
1931
1932 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
1933 return PJ_ETOOMANY;
1934
1935 PJSUA_LOCK();
1936
1937 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
1938 if (pjsua_var.player[file_id].port == NULL)
1939 break;
1940 }
1941
1942 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
1943 /* This is unexpected */
1944 PJSUA_UNLOCK();
1945 pj_assert(0);
1946 return PJ_EBUG;
1947 }
1948
1949 pj_memcpy(path, filename->ptr, filename->slen);
1950 path[filename->slen] = '\0';
Benny Prijonod5696da2007-07-17 16:25:45 +00001951
1952 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
1953 if (!pool) {
1954 PJSUA_UNLOCK();
1955 return PJ_ENOMEM;
1956 }
1957
Nanang Izzuddin81e9bd52008-06-27 12:52:51 +00001958 status = pjmedia_wav_player_port_create(
1959 pool, path,
1960 pjsua_var.mconf_cfg.samples_per_frame *
1961 1000 / pjsua_var.media_cfg.channel_count /
1962 pjsua_var.media_cfg.clock_rate,
1963 options, 0, &port);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001964 if (status != PJ_SUCCESS) {
1965 PJSUA_UNLOCK();
1966 pjsua_perror(THIS_FILE, "Unable to open file for playback", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00001967 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001968 return status;
1969 }
1970
Benny Prijono5297af92008-03-18 13:40:40 +00001971 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001972 port, filename, &slot);
1973 if (status != PJ_SUCCESS) {
1974 pjmedia_port_destroy(port);
1975 PJSUA_UNLOCK();
Benny Prijono32e4f492007-01-24 00:44:26 +00001976 pjsua_perror(THIS_FILE, "Unable to add file to conference bridge",
1977 status);
Benny Prijonod5696da2007-07-17 16:25:45 +00001978 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001979 return status;
1980 }
1981
Benny Prijonoa66c3312007-01-21 23:12:40 +00001982 pjsua_var.player[file_id].type = 0;
Benny Prijonod5696da2007-07-17 16:25:45 +00001983 pjsua_var.player[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001984 pjsua_var.player[file_id].port = port;
1985 pjsua_var.player[file_id].slot = slot;
1986
1987 if (p_id) *p_id = file_id;
1988
1989 ++pjsua_var.player_cnt;
1990
1991 PJSUA_UNLOCK();
1992 return PJ_SUCCESS;
1993}
1994
1995
1996/*
Benny Prijonoa66c3312007-01-21 23:12:40 +00001997 * Create a file playlist media port, and automatically add the port
1998 * to the conference bridge.
1999 */
2000PJ_DEF(pj_status_t) pjsua_playlist_create( const pj_str_t file_names[],
2001 unsigned file_count,
2002 const pj_str_t *label,
2003 unsigned options,
2004 pjsua_player_id *p_id)
2005{
2006 unsigned slot, file_id, ptime;
Benny Prijonod5696da2007-07-17 16:25:45 +00002007 pj_pool_t *pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002008 pjmedia_port *port;
2009 pj_status_t status;
2010
2011 if (pjsua_var.player_cnt >= PJ_ARRAY_SIZE(pjsua_var.player))
2012 return PJ_ETOOMANY;
2013
2014 PJSUA_LOCK();
2015
2016 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.player); ++file_id) {
2017 if (pjsua_var.player[file_id].port == NULL)
2018 break;
2019 }
2020
2021 if (file_id == PJ_ARRAY_SIZE(pjsua_var.player)) {
2022 /* This is unexpected */
2023 PJSUA_UNLOCK();
2024 pj_assert(0);
2025 return PJ_EBUG;
2026 }
2027
2028
2029 ptime = pjsua_var.mconf_cfg.samples_per_frame * 1000 /
2030 pjsua_var.media_cfg.clock_rate;
2031
Benny Prijonod5696da2007-07-17 16:25:45 +00002032 pool = pjsua_pool_create("playlist", 1000, 1000);
2033 if (!pool) {
2034 PJSUA_UNLOCK();
2035 return PJ_ENOMEM;
2036 }
2037
2038 status = pjmedia_wav_playlist_create(pool, label,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002039 file_names, file_count,
2040 ptime, options, 0, &port);
2041 if (status != PJ_SUCCESS) {
2042 PJSUA_UNLOCK();
2043 pjsua_perror(THIS_FILE, "Unable to create playlist", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002044 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002045 return status;
2046 }
2047
Benny Prijonod5696da2007-07-17 16:25:45 +00002048 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoa66c3312007-01-21 23:12:40 +00002049 port, &port->info.name, &slot);
2050 if (status != PJ_SUCCESS) {
2051 pjmedia_port_destroy(port);
2052 PJSUA_UNLOCK();
2053 pjsua_perror(THIS_FILE, "Unable to add port", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002054 pj_pool_release(pool);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002055 return status;
2056 }
2057
2058 pjsua_var.player[file_id].type = 1;
Benny Prijonod5696da2007-07-17 16:25:45 +00002059 pjsua_var.player[file_id].pool = pool;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002060 pjsua_var.player[file_id].port = port;
2061 pjsua_var.player[file_id].slot = slot;
2062
2063 if (p_id) *p_id = file_id;
2064
2065 ++pjsua_var.player_cnt;
2066
2067 PJSUA_UNLOCK();
2068 return PJ_SUCCESS;
2069
2070}
2071
2072
2073/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002074 * Get conference port ID associated with player.
2075 */
2076PJ_DEF(pjsua_conf_port_id) pjsua_player_get_conf_port(pjsua_player_id id)
2077{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002078 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002079 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2080
2081 return pjsua_var.player[id].slot;
2082}
2083
Benny Prijono469b1522006-12-26 03:05:17 +00002084/*
2085 * Get the media port for the player.
2086 */
Benny Prijonobe41d862008-01-18 13:24:28 +00002087PJ_DEF(pj_status_t) pjsua_player_get_port( pjsua_player_id id,
Benny Prijono469b1522006-12-26 03:05:17 +00002088 pjmedia_port **p_port)
2089{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002090 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002091 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2092 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2093
2094 *p_port = pjsua_var.player[id].port;
2095
2096 return PJ_SUCCESS;
2097}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002098
2099/*
2100 * Set playback position.
2101 */
2102PJ_DEF(pj_status_t) pjsua_player_set_pos( pjsua_player_id id,
2103 pj_uint32_t samples)
2104{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002105 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002106 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
Benny Prijonoa66c3312007-01-21 23:12:40 +00002107 PJ_ASSERT_RETURN(pjsua_var.player[id].type == 0, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002108
2109 return pjmedia_wav_player_port_set_pos(pjsua_var.player[id].port, samples);
2110}
2111
2112
2113/*
2114 * Close the file, remove the player from the bridge, and free
2115 * resources associated with the file player.
2116 */
2117PJ_DEF(pj_status_t) pjsua_player_destroy(pjsua_player_id id)
2118{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002119 PJ_ASSERT_RETURN(id>=0&&id<(int)PJ_ARRAY_SIZE(pjsua_var.player), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002120 PJ_ASSERT_RETURN(pjsua_var.player[id].port != NULL, PJ_EINVAL);
2121
2122 PJSUA_LOCK();
2123
2124 if (pjsua_var.player[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002125 pjsua_conf_remove_port(pjsua_var.player[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002126 pjmedia_port_destroy(pjsua_var.player[id].port);
2127 pjsua_var.player[id].port = NULL;
2128 pjsua_var.player[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002129 pj_pool_release(pjsua_var.player[id].pool);
2130 pjsua_var.player[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002131 pjsua_var.player_cnt--;
2132 }
2133
2134 PJSUA_UNLOCK();
2135
2136 return PJ_SUCCESS;
2137}
2138
2139
2140/*****************************************************************************
2141 * File recorder.
2142 */
2143
2144/*
2145 * Create a file recorder, and automatically connect this recorder to
2146 * the conference bridge.
2147 */
2148PJ_DEF(pj_status_t) pjsua_recorder_create( const pj_str_t *filename,
Benny Prijono8f310522006-10-20 11:08:49 +00002149 unsigned enc_type,
2150 void *enc_param,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002151 pj_ssize_t max_size,
2152 unsigned options,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002153 pjsua_recorder_id *p_id)
2154{
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002155 enum Format
2156 {
2157 FMT_UNKNOWN,
2158 FMT_WAV,
2159 FMT_MP3,
2160 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002161 unsigned slot, file_id;
Benny Prijonoa66c3312007-01-21 23:12:40 +00002162 char path[PJ_MAXPATH];
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002163 pj_str_t ext;
Benny Prijono8f310522006-10-20 11:08:49 +00002164 int file_format;
Benny Prijonod5696da2007-07-17 16:25:45 +00002165 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002166 pjmedia_port *port;
2167 pj_status_t status;
2168
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002169 /* Filename must present */
2170 PJ_ASSERT_RETURN(filename != NULL, PJ_EINVAL);
2171
Benny Prijono00cae612006-07-31 15:19:36 +00002172 /* Don't support max_size at present */
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002173 PJ_ASSERT_RETURN(max_size == 0 || max_size == -1, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002174
Benny Prijono8f310522006-10-20 11:08:49 +00002175 /* Don't support encoding type at present */
2176 PJ_ASSERT_RETURN(enc_type == 0, PJ_EINVAL);
Benny Prijono00cae612006-07-31 15:19:36 +00002177
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002178 if (pjsua_var.rec_cnt >= PJ_ARRAY_SIZE(pjsua_var.recorder))
2179 return PJ_ETOOMANY;
2180
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002181 /* Determine the file format */
2182 ext.ptr = filename->ptr + filename->slen - 4;
2183 ext.slen = 4;
2184
2185 if (pj_stricmp2(&ext, ".wav") == 0)
2186 file_format = FMT_WAV;
2187 else if (pj_stricmp2(&ext, ".mp3") == 0)
2188 file_format = FMT_MP3;
2189 else {
2190 PJ_LOG(1,(THIS_FILE, "pjsua_recorder_create() error: unable to "
2191 "determine file format for %.*s",
2192 (int)filename->slen, filename->ptr));
2193 return PJ_ENOTSUP;
2194 }
2195
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002196 PJSUA_LOCK();
2197
2198 for (file_id=0; file_id<PJ_ARRAY_SIZE(pjsua_var.recorder); ++file_id) {
2199 if (pjsua_var.recorder[file_id].port == NULL)
2200 break;
2201 }
2202
2203 if (file_id == PJ_ARRAY_SIZE(pjsua_var.recorder)) {
2204 /* This is unexpected */
2205 PJSUA_UNLOCK();
2206 pj_assert(0);
2207 return PJ_EBUG;
2208 }
2209
2210 pj_memcpy(path, filename->ptr, filename->slen);
2211 path[filename->slen] = '\0';
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002212
Benny Prijonod5696da2007-07-17 16:25:45 +00002213 pool = pjsua_pool_create(get_basename(path, filename->slen), 1000, 1000);
2214 if (!pool) {
2215 PJSUA_UNLOCK();
2216 return PJ_ENOMEM;
2217 }
2218
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002219 if (file_format == FMT_WAV) {
Benny Prijonod5696da2007-07-17 16:25:45 +00002220 status = pjmedia_wav_writer_port_create(pool, path,
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002221 pjsua_var.media_cfg.clock_rate,
2222 pjsua_var.mconf_cfg.channel_count,
2223 pjsua_var.mconf_cfg.samples_per_frame,
2224 pjsua_var.mconf_cfg.bits_per_sample,
2225 options, 0, &port);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002226 } else {
Benny Prijonoc95a0f02007-04-09 07:06:08 +00002227 PJ_UNUSED_ARG(enc_param);
Benny Prijonob3cdb2b2006-10-19 15:49:47 +00002228 port = NULL;
2229 status = PJ_ENOTSUP;
2230 }
2231
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002232 if (status != PJ_SUCCESS) {
2233 PJSUA_UNLOCK();
2234 pjsua_perror(THIS_FILE, "Unable to open file for recording", status);
Benny Prijonod5696da2007-07-17 16:25:45 +00002235 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002236 return status;
2237 }
2238
Benny Prijonod5696da2007-07-17 16:25:45 +00002239 status = pjmedia_conf_add_port(pjsua_var.mconf, pool,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002240 port, filename, &slot);
2241 if (status != PJ_SUCCESS) {
2242 pjmedia_port_destroy(port);
2243 PJSUA_UNLOCK();
Benny Prijonod5696da2007-07-17 16:25:45 +00002244 pj_pool_release(pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002245 return status;
2246 }
2247
2248 pjsua_var.recorder[file_id].port = port;
2249 pjsua_var.recorder[file_id].slot = slot;
Benny Prijonod5696da2007-07-17 16:25:45 +00002250 pjsua_var.recorder[file_id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002251
2252 if (p_id) *p_id = file_id;
2253
2254 ++pjsua_var.rec_cnt;
2255
2256 PJSUA_UNLOCK();
2257 return PJ_SUCCESS;
2258}
2259
2260
2261/*
2262 * Get conference port associated with recorder.
2263 */
2264PJ_DEF(pjsua_conf_port_id) pjsua_recorder_get_conf_port(pjsua_recorder_id id)
2265{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002266 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2267 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002268 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2269
2270 return pjsua_var.recorder[id].slot;
2271}
2272
Benny Prijono469b1522006-12-26 03:05:17 +00002273/*
2274 * Get the media port for the recorder.
2275 */
2276PJ_DEF(pj_status_t) pjsua_recorder_get_port( pjsua_recorder_id id,
2277 pjmedia_port **p_port)
2278{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002279 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2280 PJ_EINVAL);
Benny Prijono469b1522006-12-26 03:05:17 +00002281 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2282 PJ_ASSERT_RETURN(p_port != NULL, PJ_EINVAL);
2283
2284 *p_port = pjsua_var.recorder[id].port;
2285 return PJ_SUCCESS;
2286}
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002287
2288/*
2289 * Destroy recorder (this will complete recording).
2290 */
2291PJ_DEF(pj_status_t) pjsua_recorder_destroy(pjsua_recorder_id id)
2292{
Benny Prijonoa1e69682007-05-11 15:14:34 +00002293 PJ_ASSERT_RETURN(id>=0 && id<(int)PJ_ARRAY_SIZE(pjsua_var.recorder),
2294 PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002295 PJ_ASSERT_RETURN(pjsua_var.recorder[id].port != NULL, PJ_EINVAL);
2296
2297 PJSUA_LOCK();
2298
2299 if (pjsua_var.recorder[id].port) {
Nanang Izzuddin148fd392008-06-16 09:52:50 +00002300 pjsua_conf_remove_port(pjsua_var.recorder[id].slot);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002301 pjmedia_port_destroy(pjsua_var.recorder[id].port);
2302 pjsua_var.recorder[id].port = NULL;
2303 pjsua_var.recorder[id].slot = 0xFFFF;
Benny Prijonod5696da2007-07-17 16:25:45 +00002304 pj_pool_release(pjsua_var.recorder[id].pool);
2305 pjsua_var.recorder[id].pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002306 pjsua_var.rec_cnt--;
2307 }
2308
2309 PJSUA_UNLOCK();
2310
2311 return PJ_SUCCESS;
2312}
2313
2314
2315/*****************************************************************************
2316 * Sound devices.
2317 */
2318
2319/*
2320 * Enum sound devices.
2321 */
Benny Prijonof798e502009-03-09 13:08:16 +00002322
2323PJ_DEF(pj_status_t) pjsua_enum_aud_devs( pjmedia_aud_dev_info info[],
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002324 unsigned *count)
2325{
2326 unsigned i, dev_count;
2327
Benny Prijono10454dc2009-02-21 14:21:59 +00002328 dev_count = pjmedia_aud_dev_count();
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002329
2330 if (dev_count > *count) dev_count = *count;
2331
2332 for (i=0; i<dev_count; ++i) {
Benny Prijono10454dc2009-02-21 14:21:59 +00002333 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002334
Benny Prijono10454dc2009-02-21 14:21:59 +00002335 status = pjmedia_aud_dev_get_info(i, &info[i]);
2336 if (status != PJ_SUCCESS)
2337 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002338 }
2339
2340 *count = dev_count;
2341
2342 return PJ_SUCCESS;
2343}
Benny Prijonof798e502009-03-09 13:08:16 +00002344
2345
Benny Prijono10454dc2009-02-21 14:21:59 +00002346PJ_DEF(pj_status_t) pjsua_enum_snd_devs( pjmedia_snd_dev_info info[],
2347 unsigned *count)
2348{
2349 unsigned i, dev_count;
2350
2351 dev_count = pjmedia_aud_dev_count();
2352
2353 if (dev_count > *count) dev_count = *count;
2354 pj_bzero(info, dev_count * sizeof(pjmedia_snd_dev_info));
2355
2356 for (i=0; i<dev_count; ++i) {
2357 pjmedia_aud_dev_info ai;
2358 pj_status_t status;
2359
2360 status = pjmedia_aud_dev_get_info(i, &ai);
2361 if (status != PJ_SUCCESS)
2362 return status;
2363
2364 strncpy(info[i].name, ai.name, sizeof(info[i].name));
2365 info[i].name[sizeof(info[i].name)-1] = '\0';
2366 info[i].input_count = ai.input_count;
2367 info[i].output_count = ai.output_count;
2368 info[i].default_samples_per_sec = ai.default_samples_per_sec;
2369 }
2370
2371 *count = dev_count;
2372
2373 return PJ_SUCCESS;
2374}
Benny Prijono10454dc2009-02-21 14:21:59 +00002375
Benny Prijonof798e502009-03-09 13:08:16 +00002376/* Create audio device parameter to open the device */
2377static pj_status_t create_aud_param(pjmedia_aud_param *param,
2378 pjmedia_aud_dev_index capture_dev,
2379 pjmedia_aud_dev_index playback_dev,
2380 unsigned clock_rate,
2381 unsigned channel_count,
2382 unsigned samples_per_frame,
2383 unsigned bits_per_sample)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002384{
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002385 pj_status_t status;
2386
Benny Prijono96e74f32009-02-22 12:00:12 +00002387 /* Normalize device ID with new convention about default device ID */
2388 if (playback_dev == PJMEDIA_AUD_DEFAULT_CAPTURE_DEV)
2389 playback_dev = PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV;
2390
Benny Prijono10454dc2009-02-21 14:21:59 +00002391 /* Create default parameters for the device */
Benny Prijonof798e502009-03-09 13:08:16 +00002392 status = pjmedia_aud_dev_default_param(capture_dev, param);
Benny Prijono10454dc2009-02-21 14:21:59 +00002393 if (status != PJ_SUCCESS) {
Benny Prijono96e74f32009-02-22 12:00:12 +00002394 pjsua_perror(THIS_FILE, "Error retrieving default audio "
2395 "device parameters", status);
Benny Prijono10454dc2009-02-21 14:21:59 +00002396 return status;
2397 }
Benny Prijonof798e502009-03-09 13:08:16 +00002398 param->dir = PJMEDIA_DIR_CAPTURE_PLAYBACK;
2399 param->rec_id = capture_dev;
2400 param->play_id = playback_dev;
2401 param->clock_rate = clock_rate;
2402 param->channel_count = channel_count;
2403 param->samples_per_frame = samples_per_frame;
2404 param->bits_per_sample = bits_per_sample;
2405
2406 /* Update the setting with user preference */
2407#define update_param(cap, field) \
2408 if (pjsua_var.aud_param.flags & cap) { \
2409 param->flags |= cap; \
2410 param->field = pjsua_var.aud_param.field; \
2411 }
2412 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2413 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2414 update_param( PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2415 update_param( PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2416#undef update_param
2417
Benny Prijono10454dc2009-02-21 14:21:59 +00002418 /* Latency settings */
Benny Prijonof798e502009-03-09 13:08:16 +00002419 param->flags |= (PJMEDIA_AUD_DEV_CAP_INPUT_LATENCY |
2420 PJMEDIA_AUD_DEV_CAP_OUTPUT_LATENCY);
2421 param->input_latency_ms = pjsua_var.media_cfg.snd_rec_latency;
2422 param->output_latency_ms = pjsua_var.media_cfg.snd_play_latency;
2423
Benny Prijono10454dc2009-02-21 14:21:59 +00002424 /* EC settings */
2425 if (pjsua_var.media_cfg.ec_tail_len) {
Benny Prijonof798e502009-03-09 13:08:16 +00002426 param->flags |= (PJMEDIA_AUD_DEV_CAP_EC | PJMEDIA_AUD_DEV_CAP_EC_TAIL);
2427 param->ec_enabled = PJ_TRUE;
2428 param->ec_tail_ms = pjsua_var.media_cfg.ec_tail_len;
Benny Prijono10454dc2009-02-21 14:21:59 +00002429 } else {
Benny Prijonof798e502009-03-09 13:08:16 +00002430 param->flags &= ~(PJMEDIA_AUD_DEV_CAP_EC|PJMEDIA_AUD_DEV_CAP_EC_TAIL);
Benny Prijono10454dc2009-02-21 14:21:59 +00002431 }
2432
Benny Prijonof798e502009-03-09 13:08:16 +00002433 return PJ_SUCCESS;
2434}
Benny Prijono26056d82006-10-11 16:03:41 +00002435
Benny Prijonof798e502009-03-09 13:08:16 +00002436/* Internal: the first time the audio device is opened (during app
2437 * startup), retrieve the audio settings such as volume level
2438 * so that aud_get_settings() will work.
2439 */
2440static pj_status_t update_initial_aud_param()
2441{
2442 pjmedia_aud_stream *strm;
2443 pjmedia_aud_param param;
2444 pj_status_t status;
Benny Prijono26056d82006-10-11 16:03:41 +00002445
Benny Prijonof798e502009-03-09 13:08:16 +00002446 PJ_ASSERT_RETURN(pjsua_var.snd_port != NULL, PJ_EBUG);
Nanang Izzuddin3c1ae632008-08-21 15:04:20 +00002447
Benny Prijonof798e502009-03-09 13:08:16 +00002448 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono26056d82006-10-11 16:03:41 +00002449
Benny Prijonof798e502009-03-09 13:08:16 +00002450 status = pjmedia_aud_stream_get_param(strm, &param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002451 if (status != PJ_SUCCESS) {
Benny Prijonof798e502009-03-09 13:08:16 +00002452 pjsua_perror(THIS_FILE, "Error audio stream "
2453 "device parameters", status);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002454 return status;
2455 }
2456
Benny Prijonof798e502009-03-09 13:08:16 +00002457#define update_saved_param(cap, field) \
2458 if (param.flags & cap) { \
2459 pjsua_var.aud_param.flags |= cap; \
2460 pjsua_var.aud_param.field = param.field; \
2461 }
2462
2463 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_VOLUME_SETTING, input_vol);
2464 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_VOLUME_SETTING, output_vol);
2465 update_saved_param(PJMEDIA_AUD_DEV_CAP_INPUT_ROUTE, input_route);
2466 update_saved_param(PJMEDIA_AUD_DEV_CAP_OUTPUT_ROUTE, output_route);
2467#undef update_saved_param
2468
2469 return PJ_SUCCESS;
2470}
2471
2472/* Get format name */
2473static const char *get_fmt_name(pj_uint32_t id)
2474{
2475 static char name[8];
2476
2477 if (id == PJMEDIA_FORMAT_L16)
2478 return "PCM";
2479 pj_memcpy(name, &id, 4);
2480 name[4] = '\0';
2481 return name;
2482}
2483
2484/* Open sound device with the setting. */
2485static pj_status_t open_snd_dev(pjmedia_aud_param *param)
2486{
2487 pjmedia_port *conf_port;
2488 pj_status_t status;
2489
2490 PJ_ASSERT_RETURN(param, PJ_EINVAL);
2491
2492 /* Check if NULL sound device is used */
2493 if (NULL_SND_DEV_ID==param->rec_id || NULL_SND_DEV_ID==param->play_id) {
2494 return pjsua_set_null_snd_dev();
2495 }
2496
2497 /* Close existing sound port */
2498 close_snd_dev();
2499
2500 /* Create memory pool for sound device. */
2501 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2502 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2503
2504
2505 PJ_LOG(4,(THIS_FILE, "Opening sound device %s@%d/%d/%dms",
2506 get_fmt_name(param->ext_fmt.id),
2507 param->clock_rate, param->channel_count,
2508 param->samples_per_frame / param->channel_count * 1000 /
2509 param->clock_rate));
2510
2511 status = pjmedia_snd_port_create2( pjsua_var.snd_pool,
2512 param, &pjsua_var.snd_port);
2513 if (status != PJ_SUCCESS)
2514 return status;
2515
2516 /* Get the port0 of the conference bridge. */
2517 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2518 pj_assert(conf_port != NULL);
2519
2520 /* For conference bridge, resample if necessary if the bridge's
2521 * clock rate is different than the sound device's clock rate.
2522 */
2523 if (!pjsua_var.is_mswitch &&
2524 param->ext_fmt.id == PJMEDIA_FORMAT_PCM &&
2525 conf_port->info.clock_rate != param->clock_rate)
2526 {
2527 pjmedia_port *resample_port;
2528 unsigned resample_opt = 0;
2529
2530 if (pjsua_var.media_cfg.quality >= 3 &&
2531 pjsua_var.media_cfg.quality <= 4)
2532 {
2533 resample_opt |= PJMEDIA_RESAMPLE_USE_SMALL_FILTER;
2534 }
2535 else if (pjsua_var.media_cfg.quality < 3) {
2536 resample_opt |= PJMEDIA_RESAMPLE_USE_LINEAR;
2537 }
2538
2539 status = pjmedia_resample_port_create(pjsua_var.snd_pool,
2540 conf_port,
2541 param->clock_rate,
2542 resample_opt,
2543 &resample_port);
2544 if (status != PJ_SUCCESS) {
2545 char errmsg[PJ_ERR_MSG_SIZE];
2546 pj_strerror(status, errmsg, sizeof(errmsg));
2547 PJ_LOG(4, (THIS_FILE,
2548 "Error creating resample port: %s",
2549 errmsg));
2550 close_snd_dev();
2551 return status;
2552 }
2553
2554 conf_port = resample_port;
2555 }
2556
2557 /* Otherwise for audio switchboard, the switch's port0 setting is
2558 * derived from the sound device setting, so update the setting.
2559 */
2560 if (pjsua_var.is_mswitch) {
2561 pj_memcpy(&conf_port->info.format, &param->ext_fmt,
2562 sizeof(conf_port->info.format));
2563 conf_port->info.clock_rate = param->clock_rate;
2564 conf_port->info.samples_per_frame = param->samples_per_frame;
2565 conf_port->info.channel_count = param->channel_count;
2566 conf_port->info.bits_per_sample = 16;
2567 }
2568
2569 /* Connect sound port to the bridge */
Benny Prijono52a93912006-08-04 20:54:37 +00002570 status = pjmedia_snd_port_connect(pjsua_var.snd_port,
2571 conf_port );
2572 if (status != PJ_SUCCESS) {
2573 pjsua_perror(THIS_FILE, "Unable to connect conference port to "
2574 "sound device", status);
2575 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2576 pjsua_var.snd_port = NULL;
2577 return status;
2578 }
2579
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002580 /* Save the device IDs */
Benny Prijonof798e502009-03-09 13:08:16 +00002581 pjsua_var.cap_dev = param->rec_id;
2582 pjsua_var.play_dev = param->play_id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002583
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002584 /* Update sound device name. */
Benny Prijonof798e502009-03-09 13:08:16 +00002585 {
2586 pjmedia_aud_dev_info rec_info;
2587 pjmedia_aud_stream *strm;
2588 pjmedia_aud_param si;
2589 pj_str_t tmp;
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002590
Benny Prijonof798e502009-03-09 13:08:16 +00002591 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2592 status = pjmedia_aud_stream_get_param(strm, &si);
2593 if (status == PJ_SUCCESS)
2594 status = pjmedia_aud_dev_get_info(si.rec_id, &rec_info);
Benny Prijonof3758ee2008-02-26 15:32:16 +00002595
Benny Prijonof798e502009-03-09 13:08:16 +00002596 if (status==PJ_SUCCESS) {
2597 if (param->clock_rate != pjsua_var.media_cfg.clock_rate) {
2598 char tmp_buf[128];
2599 int tmp_buf_len = sizeof(tmp_buf);
2600
2601 tmp_buf_len = pj_ansi_snprintf(tmp_buf, sizeof(tmp_buf)-1,
2602 "%s (%dKHz)",
2603 rec_info.name,
2604 param->clock_rate/1000);
2605 pj_strset(&tmp, tmp_buf, tmp_buf_len);
2606 pjmedia_conf_set_port0_name(pjsua_var.mconf, &tmp);
2607 } else {
2608 pjmedia_conf_set_port0_name(pjsua_var.mconf,
2609 pj_cstr(&tmp, rec_info.name));
2610 }
2611 }
2612
2613 /* Any error is not major, let it through */
2614 status = PJ_SUCCESS;
2615 };
2616
2617 /* If this is the first time the audio device is open, retrieve some
2618 * settings from the device (such as volume settings) so that the
2619 * pjsua_snd_get_setting() work.
2620 */
2621 if (pjsua_var.aud_open_cnt == 0) {
2622 update_initial_aud_param();
2623 ++pjsua_var.aud_open_cnt;
Benny Prijonof3758ee2008-02-26 15:32:16 +00002624 }
Benny Prijonoc53c6d72006-11-27 09:54:03 +00002625
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002626 return PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002627}
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002628
Nanang Izzuddin8465c682009-03-04 17:23:25 +00002629
Benny Prijonof798e502009-03-09 13:08:16 +00002630/* Close existing sound device */
2631static void close_snd_dev(void)
2632{
2633 /* Close sound device */
2634 if (pjsua_var.snd_port) {
2635 pjmedia_aud_dev_info cap_info, play_info;
2636 pjmedia_aud_stream *strm;
2637 pjmedia_aud_param param;
2638
2639 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2640 pjmedia_aud_stream_get_param(strm, &param);
2641
2642 if (pjmedia_aud_dev_get_info(param.rec_id, &cap_info) != PJ_SUCCESS)
2643 cap_info.name[0] = '\0';
2644 if (pjmedia_aud_dev_get_info(param.play_id, &play_info) != PJ_SUCCESS)
2645 play_info.name[0] = '\0';
2646
2647 PJ_LOG(4,(THIS_FILE, "Closing %s sound playback device and "
2648 "%s sound capture device",
2649 play_info.name, cap_info.name));
2650
2651 pjmedia_snd_port_disconnect(pjsua_var.snd_port);
2652 pjmedia_snd_port_destroy(pjsua_var.snd_port);
2653 pjsua_var.snd_port = NULL;
2654 }
2655
2656 /* Close null sound device */
2657 if (pjsua_var.null_snd) {
2658 PJ_LOG(4,(THIS_FILE, "Closing null sound device.."));
2659 pjmedia_master_port_destroy(pjsua_var.null_snd, PJ_FALSE);
2660 pjsua_var.null_snd = NULL;
2661 }
2662
2663 if (pjsua_var.snd_pool)
2664 pj_pool_release(pjsua_var.snd_pool);
2665 pjsua_var.snd_pool = NULL;
2666}
2667
2668
2669/*
2670 * Select or change sound device. Application may call this function at
2671 * any time to replace current sound device.
2672 */
2673PJ_DEF(pj_status_t) pjsua_set_snd_dev( int capture_dev,
2674 int playback_dev)
2675{
2676 unsigned alt_cr_cnt = 1;
2677 unsigned alt_cr[] = {0, 44100, 48000, 32000, 16000, 8000};
2678 unsigned i;
2679 pj_status_t status = -1;
2680
Benny Prijono23ea21a2009-06-03 12:43:06 +00002681 /* Null-sound */
2682 if (capture_dev==NULL_SND_DEV_ID && playback_dev==NULL_SND_DEV_ID) {
2683 return pjsua_set_null_snd_dev();
2684 }
2685
Benny Prijonof798e502009-03-09 13:08:16 +00002686 /* Set default clock rate */
2687 alt_cr[0] = pjsua_var.media_cfg.snd_clock_rate;
2688 if (alt_cr[0] == 0)
2689 alt_cr[0] = pjsua_var.media_cfg.clock_rate;
2690
2691 /* Allow retrying of different clock rate if we're using conference
2692 * bridge (meaning audio format is always PCM), otherwise lock on
2693 * to one clock rate.
2694 */
2695 if (pjsua_var.is_mswitch) {
2696 alt_cr_cnt = 1;
2697 } else {
2698 alt_cr_cnt = PJ_ARRAY_SIZE(alt_cr);
2699 }
2700
2701 /* Attempts to open the sound device with different clock rates */
2702 for (i=0; i<alt_cr_cnt; ++i) {
2703 pjmedia_aud_param param;
2704 unsigned samples_per_frame;
2705
2706 /* Create the default audio param */
2707 samples_per_frame = alt_cr[i] *
2708 pjsua_var.media_cfg.audio_frame_ptime *
2709 pjsua_var.media_cfg.channel_count / 1000;
2710 status = create_aud_param(&param, capture_dev, playback_dev,
2711 alt_cr[i], pjsua_var.media_cfg.channel_count,
2712 samples_per_frame, 16);
2713 if (status != PJ_SUCCESS)
2714 return status;
2715
2716 /* Open! */
2717 status = open_snd_dev(&param);
2718 if (status == PJ_SUCCESS)
2719 break;
2720 }
2721
2722 if (status != PJ_SUCCESS) {
2723 pjsua_perror(THIS_FILE, "Unable to open sound device", status);
2724 return status;
2725 }
2726
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002727 pjsua_var.no_snd = PJ_FALSE;
2728
Benny Prijonof798e502009-03-09 13:08:16 +00002729 return PJ_SUCCESS;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002730}
2731
2732
2733/*
Benny Prijonoebdf8772007-02-01 19:25:50 +00002734 * Get currently active sound devices. If sound devices has not been created
2735 * (for example when pjsua_start() is not called), it is possible that
2736 * the function returns PJ_SUCCESS with -1 as device IDs.
2737 */
2738PJ_DEF(pj_status_t) pjsua_get_snd_dev(int *capture_dev,
2739 int *playback_dev)
2740{
2741 if (capture_dev) {
2742 *capture_dev = pjsua_var.cap_dev;
2743 }
2744 if (playback_dev) {
2745 *playback_dev = pjsua_var.play_dev;
2746 }
2747
2748 return PJ_SUCCESS;
2749}
2750
2751
2752/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002753 * Use null sound device.
2754 */
2755PJ_DEF(pj_status_t) pjsua_set_null_snd_dev(void)
2756{
2757 pjmedia_port *conf_port;
2758 pj_status_t status;
2759
2760 /* Close existing sound device */
2761 close_snd_dev();
2762
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002763 /* Create memory pool for sound device. */
2764 pjsua_var.snd_pool = pjsua_pool_create("pjsua_snd", 4000, 4000);
2765 PJ_ASSERT_RETURN(pjsua_var.snd_pool, PJ_ENOMEM);
2766
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002767 PJ_LOG(4,(THIS_FILE, "Opening null sound device.."));
2768
2769 /* Get the port0 of the conference bridge. */
2770 conf_port = pjmedia_conf_get_master_port(pjsua_var.mconf);
2771 pj_assert(conf_port != NULL);
2772
2773 /* Create master port, connecting port0 of the conference bridge to
2774 * a null port.
2775 */
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002776 status = pjmedia_master_port_create(pjsua_var.snd_pool, pjsua_var.null_port,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002777 conf_port, 0, &pjsua_var.null_snd);
2778 if (status != PJ_SUCCESS) {
2779 pjsua_perror(THIS_FILE, "Unable to create null sound device",
2780 status);
2781 return status;
2782 }
2783
2784 /* Start the master port */
2785 status = pjmedia_master_port_start(pjsua_var.null_snd);
2786 PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);
2787
Nanang Izzuddin68559c32008-06-13 17:01:46 +00002788 pjsua_var.cap_dev = NULL_SND_DEV_ID;
2789 pjsua_var.play_dev = NULL_SND_DEV_ID;
2790
Benny Prijonoe25fe6f2009-07-16 17:52:08 +00002791 pjsua_var.no_snd = PJ_FALSE;
2792
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002793 return PJ_SUCCESS;
2794}
2795
2796
Benny Prijonoe909eac2006-07-27 22:04:56 +00002797
2798/*
2799 * Use no device!
2800 */
2801PJ_DEF(pjmedia_port*) pjsua_set_no_snd_dev(void)
2802{
2803 /* Close existing sound device */
2804 close_snd_dev();
2805
2806 pjsua_var.no_snd = PJ_TRUE;
2807 return pjmedia_conf_get_master_port(pjsua_var.mconf);
2808}
2809
2810
Benny Prijonof20687a2006-08-04 18:27:19 +00002811/*
2812 * Configure the AEC settings of the sound port.
2813 */
Benny Prijono5da50432006-08-07 10:24:52 +00002814PJ_DEF(pj_status_t) pjsua_set_ec(unsigned tail_ms, unsigned options)
Benny Prijonof20687a2006-08-04 18:27:19 +00002815{
2816 pjsua_var.media_cfg.ec_tail_len = tail_ms;
2817
2818 if (pjsua_var.snd_port)
Benny Prijono5da50432006-08-07 10:24:52 +00002819 return pjmedia_snd_port_set_ec( pjsua_var.snd_port, pjsua_var.pool,
2820 tail_ms, options);
Benny Prijonof20687a2006-08-04 18:27:19 +00002821
2822 return PJ_SUCCESS;
2823}
2824
2825
2826/*
2827 * Get current AEC tail length.
2828 */
Benny Prijono22dfe592006-08-06 12:07:13 +00002829PJ_DEF(pj_status_t) pjsua_get_ec_tail(unsigned *p_tail_ms)
Benny Prijonof20687a2006-08-04 18:27:19 +00002830{
2831 *p_tail_ms = pjsua_var.media_cfg.ec_tail_len;
2832 return PJ_SUCCESS;
2833}
2834
Nanang Izzuddinfe02a062009-02-18 14:28:49 +00002835
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002836/*
Benny Prijonof798e502009-03-09 13:08:16 +00002837 * Check whether the sound device is currently active.
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002838 */
Benny Prijonof798e502009-03-09 13:08:16 +00002839PJ_DEF(pj_bool_t) pjsua_snd_is_active(void)
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002840{
Benny Prijonof798e502009-03-09 13:08:16 +00002841 return pjsua_var.snd_port != NULL;
2842}
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002843
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002844
Benny Prijonof798e502009-03-09 13:08:16 +00002845/*
2846 * Configure sound device setting to the sound device being used.
2847 */
2848PJ_DEF(pj_status_t) pjsua_snd_set_setting( pjmedia_aud_dev_cap cap,
2849 const void *pval,
2850 pj_bool_t keep)
2851{
Benny Prijono09b0ff62009-03-10 12:07:51 +00002852 pj_status_t status;
2853
Benny Prijonof798e502009-03-09 13:08:16 +00002854 /* Check if we are allowed to set the cap */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002855 if ((cap & pjsua_var.aud_svmask) == 0) {
Benny Prijonof798e502009-03-09 13:08:16 +00002856 return PJMEDIA_EAUD_INVCAP;
2857 }
2858
Benny Prijono09b0ff62009-03-10 12:07:51 +00002859 /* If sound is active, set it immediately */
Benny Prijonof798e502009-03-09 13:08:16 +00002860 if (pjsua_snd_is_active()) {
Benny Prijonof798e502009-03-09 13:08:16 +00002861 pjmedia_aud_stream *strm;
2862
2863 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002864 status = pjmedia_aud_stream_set_cap(strm, cap, pval);
Benny Prijonof798e502009-03-09 13:08:16 +00002865 } else {
Benny Prijono09b0ff62009-03-10 12:07:51 +00002866 status = PJ_SUCCESS;
Benny Prijonof798e502009-03-09 13:08:16 +00002867 }
Benny Prijono09b0ff62009-03-10 12:07:51 +00002868
2869 if (status != PJ_SUCCESS)
2870 return status;
2871
2872 /* Save in internal param for later device open */
2873 if (keep) {
2874 status = pjmedia_aud_param_set_cap(&pjsua_var.aud_param,
2875 cap, pval);
2876 }
2877
2878 return status;
Benny Prijonof798e502009-03-09 13:08:16 +00002879}
2880
2881/*
2882 * Retrieve a sound device setting.
2883 */
2884PJ_DEF(pj_status_t) pjsua_snd_get_setting( pjmedia_aud_dev_cap cap,
2885 void *pval)
2886{
2887 /* If sound device has never been opened before, open it to
2888 * retrieve the initial setting from the device (e.g. audio
2889 * volume)
2890 */
Benny Prijono09b0ff62009-03-10 12:07:51 +00002891 if (pjsua_var.aud_open_cnt==0) {
2892 PJ_LOG(4,(THIS_FILE, "Opening sound device to get initial settings"));
Benny Prijonof798e502009-03-09 13:08:16 +00002893 pjsua_set_snd_dev(pjsua_var.cap_dev, pjsua_var.play_dev);
Benny Prijono09b0ff62009-03-10 12:07:51 +00002894 close_snd_dev();
2895 }
Benny Prijonof798e502009-03-09 13:08:16 +00002896
2897 if (pjsua_snd_is_active()) {
2898 /* Sound is active, retrieve from device directly */
2899 pjmedia_aud_stream *strm;
2900
2901 strm = pjmedia_snd_port_get_snd_stream(pjsua_var.snd_port);
2902 return pjmedia_aud_stream_get_cap(strm, cap, pval);
2903 } else {
2904 /* Otherwise retrieve from internal param */
2905 return pjmedia_aud_param_get_cap(&pjsua_var.aud_param,
2906 cap, pval);
2907 }
Nanang Izzuddin0cb3b022009-02-27 17:37:35 +00002908}
2909
2910
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002911/*****************************************************************************
2912 * Codecs.
2913 */
2914
2915/*
2916 * Enum all supported codecs in the system.
2917 */
2918PJ_DEF(pj_status_t) pjsua_enum_codecs( pjsua_codec_info id[],
2919 unsigned *p_count )
2920{
2921 pjmedia_codec_mgr *codec_mgr;
2922 pjmedia_codec_info info[32];
2923 unsigned i, count, prio[32];
2924 pj_status_t status;
2925
2926 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
2927 count = PJ_ARRAY_SIZE(info);
2928 status = pjmedia_codec_mgr_enum_codecs( codec_mgr, &count, info, prio);
2929 if (status != PJ_SUCCESS) {
2930 *p_count = 0;
2931 return status;
2932 }
2933
2934 if (count > *p_count) count = *p_count;
2935
2936 for (i=0; i<count; ++i) {
2937 pjmedia_codec_info_to_id(&info[i], id[i].buf_, sizeof(id[i].buf_));
2938 id[i].codec_id = pj_str(id[i].buf_);
2939 id[i].priority = (pj_uint8_t) prio[i];
2940 }
2941
2942 *p_count = count;
2943
2944 return PJ_SUCCESS;
2945}
2946
2947
2948/*
2949 * Change codec priority.
2950 */
2951PJ_DEF(pj_status_t) pjsua_codec_set_priority( const pj_str_t *codec_id,
2952 pj_uint8_t priority )
2953{
Benny Prijono88accae2008-06-26 15:48:14 +00002954 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002955 pjmedia_codec_mgr *codec_mgr;
2956
2957 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
2958
Benny Prijono88accae2008-06-26 15:48:14 +00002959 if (codec_id->slen==1 && *codec_id->ptr=='*')
2960 codec_id = &all;
2961
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002962 return pjmedia_codec_mgr_set_codec_priority(codec_mgr, codec_id,
2963 priority);
2964}
2965
2966
2967/*
2968 * Get codec parameters.
2969 */
2970PJ_DEF(pj_status_t) pjsua_codec_get_param( const pj_str_t *codec_id,
2971 pjmedia_codec_param *param )
2972{
Benny Prijono88accae2008-06-26 15:48:14 +00002973 const pj_str_t all = { NULL, 0 };
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002974 const pjmedia_codec_info *info;
2975 pjmedia_codec_mgr *codec_mgr;
2976 unsigned count = 1;
2977 pj_status_t status;
2978
2979 codec_mgr = pjmedia_endpt_get_codec_mgr(pjsua_var.med_endpt);
2980
Benny Prijono88accae2008-06-26 15:48:14 +00002981 if (codec_id->slen==1 && *codec_id->ptr=='*')
2982 codec_id = &all;
2983
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002984 status = pjmedia_codec_mgr_find_codecs_by_id(codec_mgr, codec_id,
2985 &count, &info, NULL);
2986 if (status != PJ_SUCCESS)
2987 return status;
2988
2989 if (count != 1)
2990 return PJ_ENOTFOUND;
2991
2992 status = pjmedia_codec_mgr_get_default_param( codec_mgr, info, param);
2993 return status;
2994}
2995
2996
2997/*
2998 * Set codec parameters.
2999 */
3000PJ_DEF(pj_status_t) pjsua_codec_set_param( const pj_str_t *id,
3001 const pjmedia_codec_param *param)
3002{
Benny Prijono00cae612006-07-31 15:19:36 +00003003 PJ_UNUSED_ARG(id);
3004 PJ_UNUSED_ARG(param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00003005 PJ_TODO(set_codec_param);
3006 return PJ_SUCCESS;
3007}