]> sjero.net Git - linphone/blob - coreapi/linphonecall.c
Merge branch 'master' of git.savannah.nongnu.org:/srv/git/linphone
[linphone] / coreapi / linphonecall.c
1
2 /*
3 linphone
4 Copyright (C) 2010  Belledonne Communications SARL 
5  (simon.morlat@linphone.org)
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 */
21 #ifdef WIN32
22 #include <time.h>
23 #endif
24 #include "linphonecore.h"
25 #include "sipsetup.h"
26 #include "lpconfig.h"
27 #include "private.h"
28
29
30 #include "mediastreamer2/mediastream.h"
31 #include "mediastreamer2/msvolume.h"
32 #include "mediastreamer2/msequalizer.h"
33 #include "mediastreamer2/msfileplayer.h"
34 #include "mediastreamer2/msjpegwriter.h"
35 #include "mediastreamer2/mseventqueue.h"
36
37 #ifdef VIDEO_ENABLED
38 static MSWebCam *get_nowebcam_device(){
39         return ms_web_cam_manager_get_cam(ms_web_cam_manager_get(),"StaticImage: Static picture");
40 }
41 #endif
42
43
44 static MSList *make_codec_list(LinphoneCore *lc, const MSList *codecs, int bandwidth_limit){
45         MSList *l=NULL;
46         const MSList *it;
47         for(it=codecs;it!=NULL;it=it->next){
48                 PayloadType *pt=(PayloadType*)it->data;
49                 if (pt->flags & PAYLOAD_TYPE_ENABLED){
50                         if (bandwidth_limit>0 && !linphone_core_is_payload_type_usable_for_bandwidth(lc,pt,bandwidth_limit)){
51                                 ms_message("Codec %s/%i eliminated because of audio bandwidth constraint.",pt->mime_type,pt->clock_rate);
52                                 continue;
53                         }
54                         if (linphone_core_check_payload_type_usability(lc,pt)){
55                                 l=ms_list_append(l,payload_type_clone(pt));
56                         }
57                 }
58         }
59         return l;
60 }
61
62 static SalMediaDescription *_create_local_media_description(LinphoneCore *lc, LinphoneCall *call, unsigned int session_id, unsigned int session_ver){
63         MSList *l;
64         PayloadType *pt;
65         const char *me=linphone_core_get_identity(lc);
66         LinphoneAddress *addr=linphone_address_new(me);
67         const char *username=linphone_address_get_username (addr);
68         SalMediaDescription *md=sal_media_description_new();
69         
70         md->session_id=session_id;
71         md->session_ver=session_ver;
72         md->nstreams=1;
73         strncpy(md->addr,call->localip,sizeof(md->addr));
74         strncpy(md->username,username,sizeof(md->username));
75         md->bandwidth=linphone_core_get_download_bandwidth(lc);
76         
77         /*set audio capabilities */
78         strncpy(md->streams[0].addr,call->localip,sizeof(md->streams[0].addr));
79         md->streams[0].port=call->audio_port;
80         md->streams[0].proto=SalProtoRtpAvp;
81         md->streams[0].type=SalAudio;
82         md->streams[0].ptime=lc->net_conf.down_ptime;
83         l=make_codec_list(lc,lc->codecs_conf.audio_codecs,call->params.audio_bw);
84         pt=payload_type_clone(rtp_profile_get_payload_from_mime(&av_profile,"telephone-event"));
85         l=ms_list_append(l,pt);
86         md->streams[0].payloads=l;
87         
88
89         if (call->params.has_video){
90                 md->nstreams++;
91                 md->streams[1].port=call->video_port;
92                 md->streams[1].proto=SalProtoRtpAvp;
93                 md->streams[1].type=SalVideo;
94                 l=make_codec_list(lc,lc->codecs_conf.video_codecs,0);
95                 md->streams[1].payloads=l;
96         }
97         linphone_address_destroy(addr);
98         return md;
99 }
100
101 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription **md){
102         if (*md == NULL) {
103                 *md = _create_local_media_description(lc,call,0,0);
104         } else {
105                 unsigned int id = (*md)->session_id;
106                 unsigned int ver = (*md)->session_ver+1;
107                 sal_media_description_unref(*md);
108                 *md = _create_local_media_description(lc,call,id,ver);
109         }
110 }
111
112 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call){
113         unsigned int id=rand() & 0xfff;
114         return _create_local_media_description(lc,call,id,id);
115 }
116
117 static int find_port_offset(LinphoneCore *lc){
118         int offset;
119         MSList *elem;
120         int audio_port;
121         bool_t already_used=FALSE;
122         for(offset=0;offset<100;offset+=2){
123                 audio_port=linphone_core_get_audio_port (lc)+offset;
124                 already_used=FALSE;
125                 for(elem=lc->calls;elem!=NULL;elem=elem->next){
126                         LinphoneCall *call=(LinphoneCall*)elem->data;
127                         if (call->audio_port==audio_port) {
128                                 already_used=TRUE;
129                                 break;
130                         }
131                 }
132                 if (!already_used) break;
133         }
134         if (offset==100){
135                 ms_error("Could not find any free port !");
136                 return -1;
137         }
138         return offset;
139 }
140
141 static void linphone_call_init_common(LinphoneCall *call, LinphoneAddress *from, LinphoneAddress *to){
142         int port_offset;
143         call->refcnt=1;
144         call->state=LinphoneCallIdle;
145         call->start_time=time(NULL);
146         call->media_start_time=0;
147         call->log=linphone_call_log_new(call, from, to);
148         call->owns_call_log=TRUE;
149         linphone_core_notify_all_friends(call->core,LinphoneStatusOnThePhone);
150         port_offset=find_port_offset (call->core);
151         if (port_offset==-1) return;
152         call->audio_port=linphone_core_get_audio_port(call->core)+port_offset;
153         call->video_port=linphone_core_get_video_port(call->core)+port_offset;
154         
155 }
156
157 static void discover_mtu(LinphoneCore *lc, const char *remote){
158         int mtu;
159         if (lc->net_conf.mtu==0 ){
160                 /*attempt to discover mtu*/
161                 mtu=ms_discover_mtu(remote);
162                 if (mtu>0){
163                         ms_set_mtu(mtu);
164                         ms_message("Discovered mtu is %i, RTP payload max size is %i",
165                                 mtu, ms_get_payload_max_size());
166                 }
167         }
168 }
169
170 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params)
171 {
172         LinphoneCall *call=ms_new0(LinphoneCall,1);
173         call->dir=LinphoneCallOutgoing;
174         call->op=sal_op_new(lc->sal);
175         sal_op_set_user_pointer(call->op,call);
176         call->core=lc;
177         linphone_core_get_local_ip(lc,linphone_address_get_domain(to),call->localip);
178         linphone_call_init_common(call,from,to);
179         call->params=*params;
180         call->localdesc=create_local_media_description (lc,call);
181         call->camera_active=params->has_video;
182         if (linphone_core_get_firewall_policy(call->core)==LinphonePolicyUseStun)
183                 linphone_core_run_stun_tests(call->core,call);
184         discover_mtu(lc,linphone_address_get_domain (to));
185         if (params->referer){
186                 sal_call_set_referer (call->op,params->referer->op);
187         }
188         return call;
189 }
190
191 LinphoneCall * linphone_call_new_incoming(LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op){
192         LinphoneCall *call=ms_new0(LinphoneCall,1);
193         char *to_str;
194         char *from_str;
195
196         call->dir=LinphoneCallIncoming;
197         sal_op_set_user_pointer(op,call);
198         call->op=op;
199         call->core=lc;
200
201         if (lc->sip_conf.ping_with_options){
202                 /*the following sends an option request back to the caller so that
203                  we get a chance to discover our nat'd address before answering.*/
204                 call->ping_op=sal_op_new(lc->sal);
205                 to_str=linphone_address_as_string(to);
206                 from_str=linphone_address_as_string(from);
207                 sal_op_set_route(call->ping_op,sal_op_get_network_origin(call->op));
208                 sal_op_set_user_pointer(call->ping_op,call);
209                 sal_ping(call->ping_op,to_str,from_str);
210                 ms_free(to_str);
211                 ms_free(from_str);
212         }
213         
214         linphone_address_clean(from);
215         linphone_core_get_local_ip(lc,linphone_address_get_domain(from),call->localip);
216         linphone_call_init_common(call, from, to);
217         call->params.has_video=linphone_core_video_enabled(lc);
218         call->localdesc=create_local_media_description (lc,call);
219         call->camera_active=call->params.has_video;
220         if (linphone_core_get_firewall_policy(call->core)==LinphonePolicyUseStun)
221                 linphone_core_run_stun_tests(call->core,call);
222         discover_mtu(lc,linphone_address_get_domain(from));
223         return call;
224 }
225
226 /* this function is called internally to get rid of a call.
227  It performs the following tasks:
228  - remove the call from the internal list of calls
229  - unref the LinphoneCall object
230  - update the call logs accordingly
231 */
232
233 static void linphone_call_set_terminated(LinphoneCall *call){
234         LinphoneCallStatus status=LinphoneCallAborted;
235         LinphoneCore *lc=call->core;
236         
237         linphone_core_update_allocated_audio_bandwidth(lc);
238         if (call->state==LinphoneCallEnd){
239                 if (call->reason==LinphoneReasonDeclined){
240                         status=LinphoneCallDeclined;
241                 }
242                 else status=LinphoneCallSuccess;
243                 
244         }
245         call->owns_call_log=FALSE;
246         linphone_call_log_completed(call->log,call, status);
247         
248         
249         if (call == lc->current_call){
250                 ms_message("Resetting the current call");
251                 lc->current_call=NULL;
252         }
253
254         if (linphone_core_del_call(lc,call) != 0){
255                 ms_error("Could not remove the call from the list !!!");
256         }
257         
258         if (ms_list_size(lc->calls)==0)
259                 linphone_core_notify_all_friends(lc,lc->presence_mode);
260         
261 }
262
263 const char *linphone_call_state_to_string(LinphoneCallState cs){
264         switch (cs){
265                 case LinphoneCallIdle:
266                         return "LinphoneCallIdle";
267                 case LinphoneCallIncomingReceived:
268                         return "LinphoneCallIncomingReceived";
269                 case LinphoneCallOutgoingInit:
270                         return "LinphoneCallOutgoingInit";
271                 case LinphoneCallOutgoingProgress:
272                         return "LinphoneCallOutgoingProgress";
273                 case LinphoneCallOutgoingRinging:
274                         return "LinphoneCallOutgoingRinging";
275                 case LinphoneCallOutgoingEarlyMedia:
276                         return "LinphoneCallOutgoingEarlyMedia";
277                 case LinphoneCallConnected:
278                         return "LinphoneCallConnected";
279                 case LinphoneCallStreamsRunning:
280                         return "LinphoneCallStreamsRunning";
281                 case LinphoneCallPausing:
282                         return "LinphoneCallPausing";
283                 case LinphoneCallPaused:
284                         return "LinphoneCallPaused";
285                 case LinphoneCallResuming:
286                         return "LinphoneCallResuming";
287                 case LinphoneCallRefered:
288                         return "LinphoneCallRefered";
289                 case LinphoneCallError:
290                         return "LinphoneCallError";
291                 case LinphoneCallEnd:
292                         return "LinphoneCallEnd";
293                 case LinphoneCallPausedByRemote:
294                         return "LinphoneCallPausedByRemote";
295                 case LinphoneCallUpdatedByRemote:
296                         return "LinphoneCallUpdatedByRemote";
297                 case LinphoneCallIncomingEarlyMedia:
298                         return "LinphoneCallIncomingEarlyMedia";
299                 case LinphoneCallUpdated:
300                         return "LinphoneCallUpdated";
301                 case LinphoneCallReleased:
302                         return "LinphoneCallReleased";
303         }
304         return "undefined state";
305 }
306
307 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message){
308         LinphoneCore *lc=call->core;
309
310         if (call->state!=cstate){
311                 if (call->state==LinphoneCallEnd || call->state==LinphoneCallError){
312                         if (cstate!=LinphoneCallReleased){
313                                 ms_warning("Spurious call state change from %s to %s, ignored.",linphone_call_state_to_string(call->state),
314                            linphone_call_state_to_string(cstate));
315                                 return;
316                         }
317                 }
318                 ms_message("Call %p: moving from state %s to %s",call,linphone_call_state_to_string(call->state),
319                            linphone_call_state_to_string(cstate));
320                 if (cstate!=LinphoneCallRefered){
321                         /*LinphoneCallRefered is rather an event, not a state.
322                          Indeed it does not change the state of the call (still paused or running)*/
323                         call->state=cstate;
324                 }
325                 if (cstate==LinphoneCallEnd || cstate==LinphoneCallError){
326                         linphone_call_set_terminated (call);
327                 }
328                 
329                 if (lc->vtable.call_state_changed)
330                         lc->vtable.call_state_changed(lc,call,cstate,message);
331                 if (cstate==LinphoneCallReleased){
332                         if (call->op!=NULL) {
333                                 /* so that we cannot have anymore upcalls for SAL
334                                  concerning this call*/
335                                 sal_op_release(call->op);
336                                 call->op=NULL;
337                         }
338                         linphone_call_unref(call);
339                 }
340         }
341 }
342
343 static void linphone_call_destroy(LinphoneCall *obj)
344 {
345         if (obj->op!=NULL) {
346                 sal_op_release(obj->op);
347                 obj->op=NULL;
348         }
349         if (obj->resultdesc!=NULL) {
350                 sal_media_description_unref(obj->resultdesc);
351                 obj->resultdesc=NULL;
352         }
353         if (obj->localdesc!=NULL) {
354                 sal_media_description_unref(obj->localdesc);
355                 obj->localdesc=NULL;
356         }
357         if (obj->ping_op) {
358                 sal_op_release(obj->ping_op);
359         }
360         if (obj->refer_to){
361                 ms_free(obj->refer_to);
362         }
363         if (obj->owns_call_log)
364                 linphone_call_log_destroy(obj->log);
365         ms_free(obj);
366 }
367
368 /**
369  * @addtogroup call_control
370  * @{
371 **/
372
373 /**
374  * Increments the call 's reference count.
375  * An application that wishes to retain a pointer to call object
376  * must use this function to unsure the pointer remains
377  * valid. Once the application no more needs this pointer,
378  * it must call linphone_call_unref().
379 **/
380 void linphone_call_ref(LinphoneCall *obj){
381         obj->refcnt++;
382 }
383
384 /**
385  * Decrements the call object reference count.
386  * See linphone_call_ref().
387 **/
388 void linphone_call_unref(LinphoneCall *obj){
389         obj->refcnt--;
390         if (obj->refcnt==0){
391                 linphone_call_destroy(obj);
392         }
393 }
394
395 /**
396  * Returns current parameters associated to the call.
397 **/
398 const LinphoneCallParams * linphone_call_get_current_params(const LinphoneCall *call){
399         return &call->current_params;
400 }
401
402 /**
403  * Returns the remote address associated to this call
404  *
405 **/
406 const LinphoneAddress * linphone_call_get_remote_address(const LinphoneCall *call){
407         return call->dir==LinphoneCallIncoming ? call->log->from : call->log->to;
408 }
409
410 /**
411  * Returns the remote address associated to this call as a string.
412  *
413  * The result string must be freed by user using ms_free().
414 **/
415 char *linphone_call_get_remote_address_as_string(const LinphoneCall *call){
416         return linphone_address_as_string(linphone_call_get_remote_address(call));
417 }
418
419 /**
420  * Retrieves the call's current state.
421 **/
422 LinphoneCallState linphone_call_get_state(const LinphoneCall *call){
423         return call->state;
424 }
425
426 /**
427  * Returns the reason for a call termination (either error or normal termination)
428 **/
429 LinphoneReason linphone_call_get_reason(const LinphoneCall *call){
430         return call->reason;
431 }
432
433 /**
434  * Get the user_pointer in the LinphoneCall
435  *
436  * @ingroup call_control
437  *
438  * return user_pointer an opaque user pointer that can be retrieved at any time
439 **/
440 void *linphone_call_get_user_pointer(LinphoneCall *call)
441 {
442         return call->user_pointer;
443 }
444
445 /**
446  * Set the user_pointer in the LinphoneCall
447  *
448  * @ingroup call_control
449  *
450  * the user_pointer is an opaque user pointer that can be retrieved at any time in the LinphoneCall
451 **/
452 void linphone_call_set_user_pointer(LinphoneCall *call, void *user_pointer)
453 {
454         call->user_pointer = user_pointer;
455 }
456
457 /**
458  * Returns the call log associated to this call.
459 **/
460 LinphoneCallLog *linphone_call_get_call_log(const LinphoneCall *call){
461         return call->log;
462 }
463
464 /**
465  * Returns the refer-to uri (if the call was transfered).
466 **/
467 const char *linphone_call_get_refer_to(const LinphoneCall *call){
468         return call->refer_to;
469 }
470
471 /**
472  * Returns direction of the call (incoming or outgoing).
473 **/
474 LinphoneCallDir linphone_call_get_dir(const LinphoneCall *call){
475         return call->log->dir;
476 }
477
478 /**
479  * Returns the far end's user agent description string, if available.
480 **/
481 const char *linphone_call_get_remote_user_agent(LinphoneCall *call){
482         if (call->op){
483                 return sal_op_get_remote_ua (call->op);
484         }
485         return NULL;
486 }
487
488 /**
489  * Returns true if this calls has received a transfer that has not been
490  * executed yet.
491  * Pending transfers are executed when this call is being paused or closed,
492  * locally or by remote endpoint.
493  * If the call is already paused while receiving the transfer request, the 
494  * transfer immediately occurs.
495 **/
496 bool_t linphone_call_has_transfer_pending(const LinphoneCall *call){
497         return call->refer_pending;
498 }
499
500 /**
501  * Returns call's duration in seconds.
502 **/
503 int linphone_call_get_duration(const LinphoneCall *call){
504         if (call->media_start_time==0) return 0;
505         return time(NULL)-call->media_start_time;
506 }
507
508 /**
509  * Returns the call object this call is replacing, if any.
510  * Call replacement can occur during call transfers.
511  * By default, the core automatically terminates the replaced call and accept the new one.
512  * This function allows the application to know whether a new incoming call is a one that replaces another one.
513 **/
514 LinphoneCall *linphone_call_get_replaced_call(LinphoneCall *call){
515         SalOp *op=sal_call_get_replaces(call->op);
516         if (op){
517                 return (LinphoneCall*)sal_op_get_user_pointer(op);
518         }
519         return NULL;
520 }
521
522 /**
523  * Indicate whether camera input should be sent to remote end.
524 **/
525 void linphone_call_enable_camera (LinphoneCall *call, bool_t enable){
526 #ifdef VIDEO_ENABLED
527         if (call->videostream!=NULL && call->videostream->ticker!=NULL){
528                 LinphoneCore *lc=call->core;
529                 MSWebCam *nowebcam=get_nowebcam_device();
530                 if (call->camera_active!=enable && lc->video_conf.device!=nowebcam){
531                         video_stream_change_camera(call->videostream,
532                                      enable ? lc->video_conf.device : nowebcam);
533                 }
534         }
535         call->camera_active=enable;
536 #endif
537 }
538
539 /**
540  * Take a photo of currently received video and write it into a jpeg file.
541 **/
542 int linphone_call_take_video_snapshot(LinphoneCall *call, const char *file){
543 #ifdef VIDEO_ENABLED
544         if (call->videostream!=NULL && call->videostream->jpegwriter!=NULL){
545                 return ms_filter_call_method(call->videostream->jpegwriter,MS_JPEG_WRITER_TAKE_SNAPSHOT,(void*)file);
546         }
547         ms_warning("Cannot take snapshot: no currently running video stream on this call.");
548         return -1;
549 #endif
550         return -1;
551 }
552
553 /**
554  * Returns TRUE if camera pictures are sent to the remote party.
555 **/
556 bool_t linphone_call_camera_enabled (const LinphoneCall *call){
557         return call->camera_active;
558 }
559
560 /**
561  * Enable video stream.
562 **/
563 void linphone_call_params_enable_video(LinphoneCallParams *cp, bool_t enabled){
564         cp->has_video=enabled;
565 }
566
567 /**
568  * Returns whether video is enabled.
569 **/
570 bool_t linphone_call_params_video_enabled(const LinphoneCallParams *cp){
571         return cp->has_video;
572 }
573
574 /**
575  * Enable sending of real early media (during outgoing calls).
576 **/
577 void linphone_call_params_enable_early_media_sending(LinphoneCallParams *cp, bool_t enabled){
578         cp->real_early_media=enabled;
579 }
580
581 bool_t linphone_call_params_early_media_sending_enabled(const LinphoneCallParams *cp){
582         return cp->real_early_media;
583 }
584
585 /**
586  * Refine bandwidth settings for this call by setting a bandwidth limit for audio streams.
587  * As a consequence, codecs whose bitrates are not compatible with this limit won't be used.
588 **/
589 void linphone_call_params_set_audio_bandwidth_limit(LinphoneCallParams *cp, int bandwidth){
590         cp->audio_bw=bandwidth;
591 }
592
593 /**
594  *
595 **/
596 LinphoneCallParams * linphone_call_params_copy(const LinphoneCallParams *cp){
597         LinphoneCallParams *ncp=ms_new0(LinphoneCallParams,1);
598         memcpy(ncp,cp,sizeof(LinphoneCallParams));
599         return ncp;
600 }
601
602 /**
603  *
604 **/
605 void linphone_call_params_destroy(LinphoneCallParams *p){
606         ms_free(p);
607 }
608
609 /**
610  * @}
611 **/
612
613
614 #ifdef TEST_EXT_RENDERER
615 static void rendercb(void *data, const MSPicture *local, const MSPicture *remote){
616         ms_message("rendercb, local buffer=%p, remote buffer=%p",
617                    local ? local->planes[0] : NULL, remote? remote->planes[0] : NULL);
618 }
619 #endif
620
621 #ifdef VIDEO_ENABLED
622 static void video_stream_event_cb(void *user_pointer, const MSFilter *f, const unsigned int event_id, const void *args){
623         ms_warning("In linphonecall.c: video_stream_event_cb");
624         switch (event_id) {
625                 case MS_VIDEO_DECODER_DECODING_ERRORS:
626                         ms_warning("Case is MS_VIDEO_DECODER_DECODING_ERRORS");
627                         linphone_call_send_vfu_request((LinphoneCall*) user_pointer);
628                         break;
629                 default:
630                         ms_warning("Unhandled event %i", event_id);
631                         break;
632         }
633 }
634 #endif
635
636 void linphone_call_init_media_streams(LinphoneCall *call){
637         LinphoneCore *lc=call->core;
638         SalMediaDescription *md=call->localdesc;
639         AudioStream *audiostream;
640         
641         call->audiostream=audiostream=audio_stream_new(md->streams[0].port,linphone_core_ipv6_enabled(lc));
642         if (linphone_core_echo_limiter_enabled(lc)){
643                 const char *type=lp_config_get_string(lc->config,"sound","el_type","mic");
644                 if (strcasecmp(type,"mic")==0)
645                         audio_stream_enable_echo_limiter(audiostream,ELControlMic);
646                 else if (strcasecmp(type,"full")==0)
647                         audio_stream_enable_echo_limiter(audiostream,ELControlFull);
648         }
649         audio_stream_enable_gain_control(audiostream,TRUE);
650         if (linphone_core_echo_cancellation_enabled(lc)){
651                 int len,delay,framesize;
652                 len=lp_config_get_int(lc->config,"sound","ec_tail_len",0);
653                 delay=lp_config_get_int(lc->config,"sound","ec_delay",0);
654                 framesize=lp_config_get_int(lc->config,"sound","ec_framesize",0);
655                 audio_stream_set_echo_canceller_params(audiostream,len,delay,framesize);
656         }
657         audio_stream_enable_automatic_gain_control(audiostream,linphone_core_agc_enabled(lc));
658         {
659                 int enabled=lp_config_get_int(lc->config,"sound","noisegate",0);
660                 audio_stream_enable_noise_gate(audiostream,enabled);
661         }
662         if (lc->a_rtp)
663                 rtp_session_set_transports(audiostream->session,lc->a_rtp,lc->a_rtcp);
664
665 #ifdef VIDEO_ENABLED
666
667         if ((lc->video_conf.display || lc->video_conf.capture) && md->streams[1].port>0){
668                 call->videostream=video_stream_new(md->streams[1].port,linphone_core_ipv6_enabled(lc));
669         if( lc->video_conf.displaytype != NULL)
670                 video_stream_set_display_filter_name(call->videostream,lc->video_conf.displaytype);
671         video_stream_set_event_callback(call->videostream,video_stream_event_cb, call);
672         if (lc->v_rtp)
673                 rtp_session_set_transports(call->videostream->session,lc->v_rtp,lc->v_rtcp);
674 #ifdef TEST_EXT_RENDERER
675                 video_stream_set_render_callback(call->videostream,rendercb,NULL);
676 #endif
677         }
678 #else
679         call->videostream=NULL;
680 #endif
681 }
682
683
684 static int dtmf_tab[16]={'0','1','2','3','4','5','6','7','8','9','*','#','A','B','C','D'};
685
686 static void linphone_core_dtmf_received(RtpSession* s, int dtmf, void* user_data){
687         LinphoneCore* lc = (LinphoneCore*)user_data;
688         if (dtmf<0 || dtmf>15){
689                 ms_warning("Bad dtmf value %i",dtmf);
690                 return;
691         }
692         if (lc->vtable.dtmf_received != NULL)
693                 lc->vtable.dtmf_received(lc, linphone_core_get_current_call(lc), dtmf_tab[dtmf]);
694 }
695
696 static void parametrize_equalizer(LinphoneCore *lc, AudioStream *st){
697         if (st->equalizer){
698                 MSFilter *f=st->equalizer;
699                 int enabled=lp_config_get_int(lc->config,"sound","eq_active",0);
700                 const char *gains=lp_config_get_string(lc->config,"sound","eq_gains",NULL);
701                 ms_filter_call_method(f,MS_EQUALIZER_SET_ACTIVE,&enabled);
702                 if (enabled){
703                         if (gains){
704                                 do{
705                                         int bytes;
706                                         MSEqualizerGain g;
707                                         if (sscanf(gains,"%f:%f:%f %n",&g.frequency,&g.gain,&g.width,&bytes)==3){
708                                                 ms_message("Read equalizer gains: %f(~%f) --> %f",g.frequency,g.width,g.gain);
709                                                 ms_filter_call_method(f,MS_EQUALIZER_SET_GAIN,&g);
710                                                 gains+=bytes;
711                                         }else break;
712                                 }while(1);
713                         }
714                 }
715         }
716 }
717
718
719 static void post_configure_audio_streams(LinphoneCall*call){
720         AudioStream *st=call->audiostream;
721         LinphoneCore *lc=call->core;
722         float mic_gain=lp_config_get_float(lc->config,"sound","mic_gain",1);
723         float thres = 0;
724         float recv_gain;
725         float ng_thres=lp_config_get_float(lc->config,"sound","ng_thres",0.05);
726         float ng_floorgain=lp_config_get_float(lc->config,"sound","ng_floorgain",0);
727         int dc_removal=lp_config_get_int(lc->config,"sound","dc_removal",0);
728         
729         if (!call->audio_muted)
730                 audio_stream_set_mic_gain(st,mic_gain);
731         else 
732                 audio_stream_set_mic_gain(st,0);
733
734         recv_gain = lc->sound_conf.soft_play_lev;
735         if (recv_gain != 0) {
736                 linphone_core_set_playback_gain_db (lc,recv_gain);
737         }
738         if (st->volsend){
739                 ms_filter_call_method(st->volsend,MS_VOLUME_REMOVE_DC,&dc_removal);
740                 float speed=lp_config_get_float(lc->config,"sound","el_speed",-1);
741                 thres=lp_config_get_float(lc->config,"sound","el_thres",-1);
742                 float force=lp_config_get_float(lc->config,"sound","el_force",-1);
743                 int sustain=lp_config_get_int(lc->config,"sound","el_sustain",-1);
744                 float transmit_thres=lp_config_get_float(lc->config,"sound","el_transmit_thres",-1);
745                 MSFilter *f=NULL;
746                 f=st->volsend;
747                 if (speed==-1) speed=0.03;
748                 if (force==-1) force=25;
749                 ms_filter_call_method(f,MS_VOLUME_SET_EA_SPEED,&speed);
750                 ms_filter_call_method(f,MS_VOLUME_SET_EA_FORCE,&force);
751                 if (thres!=-1)
752                         ms_filter_call_method(f,MS_VOLUME_SET_EA_THRESHOLD,&thres);
753                 if (sustain!=-1)
754                         ms_filter_call_method(f,MS_VOLUME_SET_EA_SUSTAIN,&sustain);
755                 if (transmit_thres!=-1)
756                                 ms_filter_call_method(f,MS_VOLUME_SET_EA_TRANSMIT_THRESHOLD,&transmit_thres);
757
758                 ms_filter_call_method(st->volsend,MS_VOLUME_SET_NOISE_GATE_THRESHOLD,&ng_thres);
759                 ms_filter_call_method(st->volsend,MS_VOLUME_SET_NOISE_GATE_FLOORGAIN,&ng_floorgain);
760         }
761         if (st->volrecv){
762                 /* parameters for a limited noise-gate effect, using echo limiter threshold */
763                 float floorgain = 1/mic_gain;
764                 ms_filter_call_method(st->volrecv,MS_VOLUME_SET_NOISE_GATE_THRESHOLD,&thres);
765                 ms_filter_call_method(st->volrecv,MS_VOLUME_SET_NOISE_GATE_FLOORGAIN,&floorgain);
766         }
767         parametrize_equalizer(lc,st);
768         if (lc->vtable.dtmf_received!=NULL){
769                 /* replace by our default action*/
770                 audio_stream_play_received_dtmfs(call->audiostream,FALSE);
771                 rtp_session_signal_connect(call->audiostream->session,"telephone-event",(RtpCallback)linphone_core_dtmf_received,(unsigned long)lc);
772         }
773 }
774
775
776
777
778 static RtpProfile *make_profile(LinphoneCall *call, const SalMediaDescription *md, const SalStreamDescription *desc, int *used_pt){
779         int bw;
780         const MSList *elem;
781         RtpProfile *prof=rtp_profile_new("Call profile");
782         bool_t first=TRUE;
783         int remote_bw=0;
784         LinphoneCore *lc=call->core;
785         *used_pt=-1;
786         
787         for(elem=desc->payloads;elem!=NULL;elem=elem->next){
788                 PayloadType *pt=(PayloadType*)elem->data;
789                 int number;
790                 
791                 if (first) {
792                         if (desc->type==SalAudio){
793                                 linphone_core_update_allocated_audio_bandwidth_in_call(call,pt);
794                         }
795                         *used_pt=payload_type_get_number(pt);
796                         first=FALSE;
797                 }
798                 if (desc->bandwidth>0) remote_bw=desc->bandwidth;
799                 else if (md->bandwidth>0) {
800                         /*case where b=AS is given globally, not per stream*/
801                         remote_bw=md->bandwidth;
802                         if (desc->type==SalVideo){
803                                 remote_bw=get_video_bandwidth(remote_bw,call->audio_bw);
804                         }
805                 }
806                 
807                 if (desc->type==SalAudio){                      
808                                 bw=get_min_bandwidth(call->audio_bw,remote_bw);
809                 }else bw=get_min_bandwidth(get_video_bandwidth(linphone_core_get_upload_bandwidth (lc),call->audio_bw),remote_bw);
810                 if (bw>0) pt->normal_bitrate=bw*1000;
811                 else if (desc->type==SalAudio){
812                         pt->normal_bitrate=-1;
813                 }
814                 if (desc->ptime>0){
815                         char tmp[40];
816                         snprintf(tmp,sizeof(tmp),"ptime=%i",desc->ptime);
817                         payload_type_append_send_fmtp(pt,tmp);
818                 }
819                 number=payload_type_get_number(pt);
820                 if (rtp_profile_get_payload(prof,number)!=NULL){
821                         ms_warning("A payload type with number %i already exists in profile !",number);
822                 }else
823                         rtp_profile_set_payload(prof,number,pt);
824         }
825         return prof;
826 }
827
828
829 static void setup_ring_player(LinphoneCore *lc, LinphoneCall *call){
830         int pause_time=3000;
831         audio_stream_play(call->audiostream,lc->sound_conf.ringback_tone);
832         ms_filter_call_method(call->audiostream->soundread,MS_FILE_PLAYER_LOOP,&pause_time);
833 }
834
835
836 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone){
837         LinphoneCore *lc=call->core;
838         LinphoneAddress *me=linphone_core_get_primary_contact_parsed(lc);
839         const char *tool="linphone-" LINPHONE_VERSION;
840         char *cname;
841         int used_pt=-1;
842 #ifdef VIDEO_ENABLED
843         const SalStreamDescription *vstream=sal_media_description_find_stream(call->resultdesc,
844                                                         SalProtoRtpAvp,SalVideo);
845 #endif
846         
847         if(call->audiostream == NULL)
848         {
849                 ms_fatal("start_media_stream() called without prior init !");
850                 return;
851         }
852         call->current_params = call->params;
853         /* adjust rtp jitter compensation. It must be at least the latency of the sound card */
854         int jitt_comp=MAX(lc->sound_conf.latency,lc->rtp_conf.audio_jitt_comp);
855
856         if (call->media_start_time==0) call->media_start_time=time(NULL);
857
858         cname=linphone_address_as_string_uri_only(me);
859         {
860                 const SalStreamDescription *stream=sal_media_description_find_stream(call->resultdesc,
861                                                         SalProtoRtpAvp,SalAudio);
862                 if (stream && stream->dir!=SalStreamInactive){
863                         MSSndCard *playcard=lc->sound_conf.lsd_card ? 
864                                 lc->sound_conf.lsd_card : lc->sound_conf.play_sndcard;
865                         MSSndCard *captcard=lc->sound_conf.capt_sndcard;
866                         const char *playfile=lc->play_file;
867                         const char *recfile=lc->rec_file;
868                         call->audio_profile=make_profile(call,call->resultdesc,stream,&used_pt);
869                         bool_t use_ec;
870
871                         if (used_pt!=-1){
872                                 if (playcard==NULL) {
873                                         ms_warning("No card defined for playback !");
874                                 }
875                                 if (captcard==NULL) {
876                                         ms_warning("No card defined for capture !");
877                                 }
878                                 /*Replace soundcard filters by inactive file players or recorders
879                                  when placed in recvonly or sendonly mode*/
880                                 if (stream->port==0 || stream->dir==SalStreamRecvOnly){
881                                         captcard=NULL;
882                                         playfile=NULL;
883                                 }else if (stream->dir==SalStreamSendOnly){
884                                         playcard=NULL;
885                                         captcard=NULL;
886                                         recfile=NULL;
887                                         /*And we will eventually play "playfile" if set by the user*/
888                                         /*playfile=NULL;*/
889                                 }
890                                 if (send_ringbacktone){
891                                         captcard=NULL;
892                                         playfile=NULL;/* it is setup later*/
893                                 }
894                                 /*if playfile are supplied don't use soundcards*/
895                                 if (lc->use_files) {
896                                         captcard=NULL;
897                                         playcard=NULL;
898                                 }
899                                 use_ec=captcard==NULL ? FALSE : linphone_core_echo_cancellation_enabled(lc);
900 #if defined(VIDEO_ENABLED) && defined(ANDROID)
901                                 /*On android we have to disable the echo canceller to preserve CPU for video codecs */
902                                 if (vstream && vstream->dir!=SalStreamInactive && vstream->payloads!=NULL)
903                                         use_ec=FALSE;
904 #endif
905                                 audio_stream_start_full(
906                                         call->audiostream,
907                                         call->audio_profile,
908                                         stream->addr[0]!='\0' ? stream->addr : call->resultdesc->addr,
909                                         stream->port,
910                                         stream->port+1,
911                                         used_pt,
912                                         jitt_comp,
913                                         playfile,
914                                         recfile,
915                                         playcard,
916                                         captcard,
917                                         use_ec
918                                         );
919                                 post_configure_audio_streams(call);
920                                 if (all_inputs_muted && !send_ringbacktone){
921                                         audio_stream_set_mic_gain(call->audiostream,0);
922                                 }
923                                 if (stream->dir==SalStreamSendOnly && playfile!=NULL){
924                                         int pause_time=500;
925                                         ms_filter_call_method(call->audiostream->soundread,MS_FILE_PLAYER_LOOP,&pause_time);
926                                 }
927                                 if (send_ringbacktone){
928                                         setup_ring_player(lc,call);
929                                 }
930                                 audio_stream_set_rtcp_information(call->audiostream, cname, tool);
931                         }else ms_warning("No audio stream accepted ?");
932                 }
933         }
934 #ifdef VIDEO_ENABLED
935         {
936                 
937                 used_pt=-1;
938                 /* shutdown preview */
939                 if (lc->previewstream!=NULL) {
940                         video_preview_stop(lc->previewstream);
941                         lc->previewstream=NULL;
942                 }
943                 call->current_params.has_video=FALSE;
944                 if (vstream && vstream->dir!=SalStreamInactive) {
945                         const char *addr=vstream->addr[0]!='\0' ? vstream->addr : call->resultdesc->addr;
946                         call->video_profile=make_profile(call,call->resultdesc,vstream,&used_pt);
947                         if (used_pt!=-1){
948                                 VideoStreamDir dir=VideoStreamSendRecv;
949                                 MSWebCam *cam=lc->video_conf.device;
950                                 bool_t is_inactive=FALSE;
951
952                                 call->current_params.has_video=TRUE;
953                                 
954                                 video_stream_set_sent_video_size(call->videostream,linphone_core_get_preferred_video_size(lc));
955                                 video_stream_enable_self_view(call->videostream,lc->video_conf.selfview);
956                                 if (lc->video_window_id!=0)
957                                         video_stream_set_native_window_id(call->videostream,lc->video_window_id);
958                                 if (lc->preview_window_id!=0)
959                                         video_stream_set_native_preview_window_id (call->videostream,lc->preview_window_id);
960                                 video_stream_use_preview_video_window (call->videostream,lc->use_preview_window);
961                                 
962                                 if (vstream->dir==SalStreamSendOnly && lc->video_conf.capture ){
963                                         cam=get_nowebcam_device();
964                                         dir=VideoStreamSendOnly;
965                                 }else if (vstream->dir==SalStreamRecvOnly && lc->video_conf.display ){
966                                         dir=VideoStreamRecvOnly;
967                                 }else if (vstream->dir==SalStreamSendRecv){
968                                         if (lc->video_conf.display && lc->video_conf.capture)
969                                                 dir=VideoStreamSendRecv;
970                                         else if (lc->video_conf.display)
971                                                 dir=VideoStreamRecvOnly;
972                                         else
973                                                 dir=VideoStreamSendOnly;
974                                 }else{
975                                         ms_warning("video stream is inactive.");
976                                         /*either inactive or incompatible with local capabilities*/
977                                         is_inactive=TRUE;
978                                 }
979                                 if (call->camera_active==FALSE || all_inputs_muted){
980                                         cam=get_nowebcam_device();
981                                 }
982                                 if (!is_inactive){
983                                         video_stream_set_direction (call->videostream, dir);
984                                         video_stream_start(call->videostream,
985                                                 call->video_profile, addr, vstream->port,
986                                                 vstream->port+1,
987                                                 used_pt, jitt_comp, cam);
988                                         video_stream_set_rtcp_information(call->videostream, cname,tool);
989                                 }
990                         }else ms_warning("No video stream accepted.");
991                 }else{
992                         ms_warning("No valid video stream defined.");
993                 }
994         }
995 #endif
996         call->all_muted=all_inputs_muted;
997         call->playing_ringbacktone=send_ringbacktone;
998         call->up_bw=linphone_core_get_upload_bandwidth(lc);
999         
1000         goto end;
1001         end:
1002                 ms_free(cname);
1003                 linphone_address_destroy(me);
1004 }
1005
1006 static void linphone_call_log_fill_stats(LinphoneCallLog *log, AudioStream *st){
1007         audio_stream_get_local_rtp_stats (st,&log->local_stats);
1008 }
1009
1010 void linphone_call_stop_media_streams(LinphoneCall *call){
1011         if (call->audiostream!=NULL) {
1012                 linphone_call_log_fill_stats (call->log,call->audiostream);
1013                 audio_stream_stop(call->audiostream);
1014                 call->audiostream=NULL;
1015         }
1016 #ifdef VIDEO_ENABLED
1017         if (call->videostream!=NULL){
1018                 video_stream_stop(call->videostream);
1019                 call->videostream=NULL;
1020         }
1021         ms_event_queue_skip(call->core->msevq);
1022         
1023 #endif
1024         if (call->audio_profile){
1025                 rtp_profile_clear_all(call->audio_profile);
1026                 rtp_profile_destroy(call->audio_profile);
1027                 call->audio_profile=NULL;
1028         }
1029         if (call->video_profile){
1030                 rtp_profile_clear_all(call->video_profile);
1031                 rtp_profile_destroy(call->video_profile);
1032                 call->video_profile=NULL;
1033         }
1034 }
1035
1036 #ifdef VIDEO_ENABLED
1037 /**
1038  * Request remote side to send us VFU.
1039 **/
1040 void linphone_call_send_vfu_request(LinphoneCall *call)
1041 {
1042         if (LinphoneCallStreamsRunning == linphone_call_get_state(call))
1043                 sal_call_send_vfu_request(call->op);
1044 }
1045 #endif
1046
1047 void linphone_call_enable_echo_cancellation(LinphoneCall *call, bool_t enable) {
1048         if (call!=NULL && call->audiostream!=NULL && call->audiostream->ec){
1049                 bool_t bypass_mode = !enable;
1050                 ms_filter_call_method(call->audiostream->ec,MS_ECHO_CANCELLER_SET_BYPASS_MODE,&bypass_mode);
1051         }
1052 }
1053 bool_t linphone_call_echo_cancellation_enabled(LinphoneCall *call) {
1054         if (call!=NULL && call->audiostream!=NULL && call->audiostream->ec){
1055                 bool_t val;
1056                 ms_filter_call_method(call->audiostream->ec,MS_ECHO_CANCELLER_GET_BYPASS_MODE,&val);
1057                 return !val;
1058         } else {
1059                 return linphone_core_echo_cancellation_enabled(call->core);
1060         }
1061 }
1062
1063 void linphone_call_enable_echo_limiter(LinphoneCall *call, bool_t val){
1064         if (call!=NULL && call->audiostream!=NULL ) {
1065                 if (val) {
1066                 const char *type=lp_config_get_string(call->core->config,"sound","el_type","mic");
1067                 if (strcasecmp(type,"mic")==0)
1068                         audio_stream_enable_echo_limiter(call->audiostream,ELControlMic);
1069                 else if (strcasecmp(type,"full")==0)
1070                         audio_stream_enable_echo_limiter(call->audiostream,ELControlFull);
1071                 } else {
1072                         audio_stream_enable_echo_limiter(call->audiostream,ELInactive);
1073                 }
1074         }
1075 }
1076
1077 bool_t linphone_call_echo_limiter_enabled(const LinphoneCall *call){
1078         if (call!=NULL && call->audiostream!=NULL ){
1079                 return call->audiostream->el_type !=ELInactive ;
1080         } else {
1081                 return linphone_core_echo_limiter_enabled(call->core);
1082         }
1083 }
1084
1085 /**
1086  * Returns the measured sound volume played locally (received from remote)
1087  * It is expressed in dbm0. 
1088 **/
1089 float linphone_call_get_play_volume(LinphoneCall *call){
1090         AudioStream *st=call->audiostream;
1091         if (st && st->volsend){
1092                 float vol=0;
1093                 ms_filter_call_method(st->volsend,MS_VOLUME_GET,&vol);
1094                 return vol;
1095                 
1096         }
1097         return LINPHONE_VOLUME_DB_LOWEST;
1098 }
1099
1100 /**
1101  * Returns the measured sound volume recorded locally (sent to remote)
1102  * It is expressed in dbm0. 
1103 **/
1104 float linphone_call_get_record_volume(LinphoneCall *call){
1105         AudioStream *st=call->audiostream;
1106         if (st && st->volrecv){
1107                 float vol=0;
1108                 ms_filter_call_method(st->volrecv,MS_VOLUME_GET,&vol);
1109                 return vol;
1110                 
1111         }
1112         return LINPHONE_VOLUME_DB_LOWEST;
1113 }
1114