]> sjero.net Git - linphone/blob - coreapi/linphonecall.c
dtmf should be notified from main thread
[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 #include <ortp/event.h>
29 #include <ortp/b64.h>
30
31
32 #include "mediastreamer2/mediastream.h"
33 #include "mediastreamer2/msvolume.h"
34 #include "mediastreamer2/msequalizer.h"
35 #include "mediastreamer2/msfileplayer.h"
36 #include "mediastreamer2/msjpegwriter.h"
37 #include "mediastreamer2/mseventqueue.h"
38 #include "mediastreamer2/mssndcard.h"
39
40 #ifdef VIDEO_ENABLED
41 static MSWebCam *get_nowebcam_device(){
42         return ms_web_cam_manager_get_cam(ms_web_cam_manager_get(),"StaticImage: Static picture");
43 }
44 #endif
45
46 static bool_t generate_b64_crypto_key(int key_length, char* key_out) {
47         int b64_size;
48         uint8_t* tmp = (uint8_t*) malloc(key_length);                   
49         if (ortp_crypto_get_random(tmp, key_length)!=0) {
50                 ms_error("Failed to generate random key");
51                 free(tmp);
52                 return FALSE;
53         }
54         
55         b64_size = b64_encode((const char*)tmp, key_length, NULL, 0);
56         if (b64_size == 0) {
57                 ms_error("Failed to b64 encode key");
58                 free(tmp);
59                 return FALSE;
60         }
61         key_out[b64_size] = '\0';
62         b64_encode((const char*)tmp, key_length, key_out, 40);
63         free(tmp);
64         return TRUE;
65 }
66
67 LinphoneCore *linphone_call_get_core(const LinphoneCall *call){
68         return call->core;
69 }
70
71 const char* linphone_call_get_authentication_token(LinphoneCall *call){
72         return call->auth_token;
73 }
74
75 bool_t linphone_call_get_authentication_token_verified(LinphoneCall *call){
76         return call->auth_token_verified;
77 }
78
79 static bool_t linphone_call_are_all_streams_encrypted(LinphoneCall *call) {
80         // Check ZRTP encryption in audiostream
81         if (!call->audiostream_encrypted) {
82                 return FALSE;
83         }
84
85 #ifdef VIDEO_ENABLED
86         // If video enabled, check ZRTP encryption in videostream
87         const LinphoneCallParams *params=linphone_call_get_current_params(call);
88         if (params->has_video && !call->videostream_encrypted) {
89                 return FALSE;
90         }
91 #endif
92
93         return TRUE;
94 }
95
96 void propagate_encryption_changed(LinphoneCall *call){
97         LinphoneCore *lc=call->core;
98         if (!linphone_call_are_all_streams_encrypted(call)) {
99                 ms_message("Some streams are not encrypted");
100                 call->current_params.media_encryption=LinphoneMediaEncryptionNone;
101                 if (lc->vtable.call_encryption_changed)
102                         lc->vtable.call_encryption_changed(call->core, call, FALSE, call->auth_token);
103         } else {
104                 ms_message("All streams are encrypted");
105                 call->current_params.media_encryption=LinphoneMediaEncryptionZRTP;
106                 if (lc->vtable.call_encryption_changed)
107                         lc->vtable.call_encryption_changed(call->core, call, TRUE, call->auth_token);
108         }
109 }
110
111 #ifdef VIDEO_ENABLED
112 static void linphone_call_videostream_encryption_changed(void *data, bool_t encrypted){
113         ms_message("Video stream is %s", encrypted ? "encrypted" : "not encrypted");
114
115         LinphoneCall *call = (LinphoneCall *)data;
116         call->videostream_encrypted=encrypted;
117         propagate_encryption_changed(call);
118 }
119 #endif
120
121 static void linphone_call_audiostream_encryption_changed(void *data, bool_t encrypted) {
122         char status[255]={0};
123         ms_message("Audio stream is %s ", encrypted ? "encrypted" : "not encrypted");
124
125         LinphoneCall *call = (LinphoneCall *)data;
126         call->audiostream_encrypted=encrypted;
127         
128         if (encrypted && call->core->vtable.display_status != NULL) {
129                 snprintf(status,sizeof(status)-1,_("Authentication token is %s"),call->auth_token);
130                  call->core->vtable.display_status(call->core, status);
131         }
132
133         propagate_encryption_changed(call);
134
135
136 #ifdef VIDEO_ENABLED
137         // Enable video encryption
138         const LinphoneCallParams *params=linphone_call_get_current_params(call);
139         if (params->has_video) {
140                 ms_message("Trying to enable encryption on video stream");
141                 OrtpZrtpParams params;
142                 params.zid_file=NULL; //unused
143                 video_stream_enable_zrtp(call->videostream,call->audiostream,&params);
144         }
145 #endif
146 }
147
148
149 static void linphone_call_audiostream_auth_token_ready(void *data, const char* auth_token, bool_t verified) {
150         LinphoneCall *call=(LinphoneCall *)data;
151         if (call->auth_token != NULL)
152                 ms_free(call->auth_token);
153
154         call->auth_token=ms_strdup(auth_token);
155         call->auth_token_verified=verified;
156
157         ms_message("Authentication token is %s (%s)", auth_token, verified?"verified":"unverified");
158 }
159
160 void linphone_call_set_authentication_token_verified(LinphoneCall *call, bool_t verified){
161         if (call->audiostream==NULL){
162                 ms_error("linphone_call_set_authentication_token_verified(): No audio stream");
163         }
164         if (call->audiostream->ortpZrtpContext==NULL){
165                 ms_error("linphone_call_set_authentication_token_verified(): No zrtp context.");
166         }
167         if (!call->auth_token_verified && verified){
168                 ortp_zrtp_sas_verified(call->audiostream->ortpZrtpContext);
169         }else if (call->auth_token_verified && !verified){
170                 ortp_zrtp_sas_reset_verified(call->audiostream->ortpZrtpContext);
171         }
172         call->auth_token_verified=verified;
173         propagate_encryption_changed(call);
174 }
175
176 static MSList *make_codec_list(LinphoneCore *lc, const MSList *codecs, int bandwidth_limit,int* max_sample_rate){
177         MSList *l=NULL;
178         const MSList *it;
179         if (max_sample_rate) *max_sample_rate=0;
180         for(it=codecs;it!=NULL;it=it->next){
181                 PayloadType *pt=(PayloadType*)it->data;
182                 if (pt->flags & PAYLOAD_TYPE_ENABLED){
183                         if (bandwidth_limit>0 && !linphone_core_is_payload_type_usable_for_bandwidth(lc,pt,bandwidth_limit)){
184                                 ms_message("Codec %s/%i eliminated because of audio bandwidth constraint.",pt->mime_type,pt->clock_rate);
185                                 continue;
186                         }
187                         if (linphone_core_check_payload_type_usability(lc,pt)){
188                                 l=ms_list_append(l,payload_type_clone(pt));
189                                 if (max_sample_rate && payload_type_get_rate(pt)>*max_sample_rate) *max_sample_rate=payload_type_get_rate(pt);
190                         }
191                 }
192         }
193         return l;
194 }
195
196 static void update_media_description_from_stun(SalMediaDescription *md, const StunCandidate *ac, const StunCandidate *vc){
197         if (ac->port!=0){
198                 strcpy(md->streams[0].rtp_addr,ac->addr);
199                 md->streams[0].rtp_port=ac->port;
200                 if ((ac->addr[0]!='\0' && vc->addr[0]!='\0' && strcmp(ac->addr,vc->addr)==0) || md->nstreams==1){
201                         strcpy(md->addr,ac->addr);
202                 }
203         }
204         if (vc->port!=0){
205                 strcpy(md->streams[1].rtp_addr,vc->addr);
206                 md->streams[1].rtp_port=vc->port;
207         }
208         
209 }
210
211
212 static SalMediaDescription *_create_local_media_description(LinphoneCore *lc, LinphoneCall *call, unsigned int session_id, unsigned int session_ver){
213         MSList *l;
214         PayloadType *pt;
215         int i;
216         const char *me=linphone_core_get_identity(lc);
217         LinphoneAddress *addr=linphone_address_new(me);
218         const char *username=linphone_address_get_username (addr);
219         SalMediaDescription *md=sal_media_description_new();
220         
221         if (call->ping_time>0) {
222                 linphone_core_adapt_to_network(lc,call->ping_time,&call->params);
223         }
224
225         md->session_id=session_id;
226         md->session_ver=session_ver;
227         md->nstreams=1;
228         strncpy(md->addr,call->localip,sizeof(md->addr));
229         strncpy(md->username,username,sizeof(md->username));
230         
231         if (call->params.down_bw)
232                 md->bandwidth=call->params.down_bw;
233         else md->bandwidth=linphone_core_get_download_bandwidth(lc);
234
235         /*set audio capabilities */
236         strncpy(md->streams[0].rtp_addr,call->localip,sizeof(md->streams[0].rtp_addr));
237         strncpy(md->streams[0].rtcp_addr,call->localip,sizeof(md->streams[0].rtcp_addr));
238         md->streams[0].rtp_port=call->audio_port;
239         md->streams[0].rtcp_port=call->audio_port+1;
240         md->streams[0].proto=(call->params.media_encryption == LinphoneMediaEncryptionSRTP) ? 
241                 SalProtoRtpSavp : SalProtoRtpAvp;
242         md->streams[0].type=SalAudio;
243         if (call->params.down_ptime)
244                 md->streams[0].ptime=call->params.down_ptime;
245         else
246                 md->streams[0].ptime=linphone_core_get_download_ptime(lc);
247         l=make_codec_list(lc,lc->codecs_conf.audio_codecs,call->params.audio_bw,&md->streams[0].max_rate);
248         pt=payload_type_clone(rtp_profile_get_payload_from_mime(&av_profile,"telephone-event"));
249         l=ms_list_append(l,pt);
250         md->streams[0].payloads=l;
251         
252
253
254         if (call->params.has_video){
255                 md->nstreams++;
256                 md->streams[1].rtp_port=call->video_port;
257                 md->streams[1].rtcp_port=call->video_port+1;
258                 md->streams[1].proto=md->streams[0].proto;
259                 md->streams[1].type=SalVideo;
260                 l=make_codec_list(lc,lc->codecs_conf.video_codecs,0,NULL);
261                 md->streams[1].payloads=l;
262         }
263         
264         for(i=0; i<md->nstreams; i++) {
265                 if (md->streams[i].proto == SalProtoRtpSavp) {
266                         md->streams[i].crypto[0].tag = 1;
267                         md->streams[i].crypto[0].algo = AES_128_SHA1_80;
268                         if (!generate_b64_crypto_key(30, md->streams[i].crypto[0].master_key))
269                                 md->streams[i].crypto[0].algo = 0;
270                         md->streams[i].crypto[1].tag = 2;
271                         md->streams[i].crypto[1].algo = AES_128_SHA1_32;
272                         if (!generate_b64_crypto_key(30, md->streams[i].crypto[1].master_key))
273                                 md->streams[i].crypto[1].algo = 0;
274                         md->streams[i].crypto[2].algo = 0;
275                 }
276         }
277         update_media_description_from_stun(md,&call->ac,&call->vc);
278         if (call->ice_session != NULL) {
279                 linphone_core_update_local_media_description_from_ice(md, call->ice_session);
280         }
281         linphone_address_destroy(addr);
282         return md;
283 }
284
285 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call){
286         SalMediaDescription *md=call->localdesc;
287         if (md== NULL) {
288                 call->localdesc = create_local_media_description(lc,call);
289         } else {
290                 call->localdesc = _create_local_media_description(lc,call,md->session_id,md->session_ver+1);
291                 sal_media_description_unref(md);
292         }
293 }
294
295 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call){
296         unsigned int id=rand() & 0xfff;
297         return _create_local_media_description(lc,call,id,id);
298 }
299
300 static int find_port_offset(LinphoneCore *lc){
301         int offset;
302         MSList *elem;
303         int audio_port;
304         bool_t already_used=FALSE;
305         for(offset=0;offset<100;offset+=2){
306                 audio_port=linphone_core_get_audio_port (lc)+offset;
307                 already_used=FALSE;
308                 for(elem=lc->calls;elem!=NULL;elem=elem->next){
309                         LinphoneCall *call=(LinphoneCall*)elem->data;
310                         if (call->audio_port==audio_port) {
311                                 already_used=TRUE;
312                                 break;
313                         }
314                 }
315                 if (!already_used) break;
316         }
317         if (offset==100){
318                 ms_error("Could not find any free port !");
319                 return -1;
320         }
321         return offset;
322 }
323
324 static void linphone_call_init_common(LinphoneCall *call, LinphoneAddress *from, LinphoneAddress *to){
325         int port_offset;
326         call->magic=linphone_call_magic;
327         call->refcnt=1;
328         call->state=LinphoneCallIdle;
329         call->transfer_state = LinphoneCallIdle;
330         call->start_time=time(NULL);
331         call->media_start_time=0;
332         call->log=linphone_call_log_new(call, from, to);
333         call->owns_call_log=TRUE;
334         linphone_core_notify_all_friends(call->core,LinphoneStatusOnThePhone);
335         port_offset=find_port_offset (call->core);
336         if (port_offset==-1) return;
337         call->audio_port=linphone_core_get_audio_port(call->core)+port_offset;
338         call->video_port=linphone_core_get_video_port(call->core)+port_offset;
339         linphone_call_init_stats(&call->stats[LINPHONE_CALL_STATS_AUDIO], LINPHONE_CALL_STATS_AUDIO);
340         linphone_call_init_stats(&call->stats[LINPHONE_CALL_STATS_VIDEO], LINPHONE_CALL_STATS_VIDEO);
341 }
342
343 void linphone_call_init_stats(LinphoneCallStats *stats, int type) {
344         stats->type = type;
345         stats->received_rtcp = NULL;
346         stats->sent_rtcp = NULL;
347         stats->ice_state = LinphoneIceStateNotActivated;
348 }
349
350
351 static void discover_mtu(LinphoneCore *lc, const char *remote){
352         int mtu;
353         if (lc->net_conf.mtu==0 ){
354                 /*attempt to discover mtu*/
355                 mtu=ms_discover_mtu(remote);
356                 if (mtu>0){
357                         ms_set_mtu(mtu);
358                         ms_message("Discovered mtu is %i, RTP payload max size is %i",
359                                 mtu, ms_get_payload_max_size());
360                 }
361         }
362 }
363
364 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params)
365 {
366         LinphoneCall *call=ms_new0(LinphoneCall,1);
367         call->dir=LinphoneCallOutgoing;
368         call->op=sal_op_new(lc->sal);
369         sal_op_set_user_pointer(call->op,call);
370         call->core=lc;
371         linphone_core_get_local_ip(lc,linphone_address_get_domain(to),call->localip);
372         linphone_call_init_common(call,from,to);
373         call->params=*params;
374         if (linphone_core_get_firewall_policy(call->core) == LinphonePolicyUseIce) {
375                 call->ice_session = ice_session_new();
376                 ice_session_set_role(call->ice_session, IR_Controlling);
377         }
378         if (linphone_core_get_firewall_policy(call->core) == LinphonePolicyUseStun) {
379                 call->ping_time=linphone_core_run_stun_tests(call->core,call);
380         }
381         call->camera_active=params->has_video;
382         
383         discover_mtu(lc,linphone_address_get_domain (to));
384         if (params->referer){
385                 sal_call_set_referer(call->op,params->referer->op);
386                 call->referer=linphone_call_ref(params->referer);
387         }
388         return call;
389 }
390
391 LinphoneCall * linphone_call_new_incoming(LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op){
392         LinphoneCall *call=ms_new0(LinphoneCall,1);
393         char *from_str;
394
395         call->dir=LinphoneCallIncoming;
396         sal_op_set_user_pointer(op,call);
397         call->op=op;
398         call->core=lc;
399
400         if (lc->sip_conf.ping_with_options){
401                 /*the following sends an option request back to the caller so that
402                  we get a chance to discover our nat'd address before answering.*/
403                 call->ping_op=sal_op_new(lc->sal);
404                 from_str=linphone_address_as_string_uri_only(from);
405                 sal_op_set_route(call->ping_op,sal_op_get_network_origin(op));
406                 sal_op_set_user_pointer(call->ping_op,call);
407                 sal_ping(call->ping_op,linphone_core_find_best_identity(lc,from,NULL),from_str);
408                 ms_free(from_str);
409         }
410
411         linphone_address_clean(from);
412         linphone_core_get_local_ip(lc,linphone_address_get_domain(from),call->localip);
413         linphone_call_init_common(call, from, to);
414         call->log->call_id=ms_strdup(sal_op_get_call_id(op)); /*must be known at that time*/
415         linphone_core_init_default_params(lc, &call->params);
416         call->params.has_video &= !!lc->video_policy.automatically_accept;
417         call->params.has_video &= linphone_core_media_description_contains_video_stream(sal_call_get_remote_media_description(op));
418         switch (linphone_core_get_firewall_policy(call->core)) {
419                 case LinphonePolicyUseIce:
420                         call->ice_session = ice_session_new();
421                         ice_session_set_role(call->ice_session, IR_Controlled);
422                         linphone_core_update_ice_from_remote_media_description(call, sal_call_get_remote_media_description(op));
423                         if (call->ice_session != NULL) {
424                                 linphone_call_init_media_streams(call);
425                                 linphone_call_start_media_streams_for_ice_gathering(call);
426                                 if (linphone_core_gather_ice_candidates(call->core,call)<0) {
427                                         /* Ice candidates gathering failed, proceed with the call anyway. */
428                                         linphone_call_delete_ice_session(call);
429                                         linphone_call_stop_media_streams_for_ice_gathering(call);
430                                 }
431                         }
432                         break;
433                 case LinphonePolicyUseStun:
434                         call->ping_time=linphone_core_run_stun_tests(call->core,call);
435                         /* No break to also destroy ice session in this case. */
436                 default:
437                         break;
438         }
439         call->camera_active=call->params.has_video;
440         
441         discover_mtu(lc,linphone_address_get_domain(from));
442         return call;
443 }
444
445 /* this function is called internally to get rid of a call.
446  It performs the following tasks:
447  - remove the call from the internal list of calls
448  - update the call logs accordingly
449 */
450
451 static void linphone_call_set_terminated(LinphoneCall *call){
452         LinphoneCore *lc=call->core;
453
454         linphone_core_update_allocated_audio_bandwidth(lc);
455
456         call->owns_call_log=FALSE;
457         linphone_call_log_completed(call);
458
459
460         if (call == lc->current_call){
461                 ms_message("Resetting the current call");
462                 lc->current_call=NULL;
463         }
464
465         if (linphone_core_del_call(lc,call) != 0){
466                 ms_error("Could not remove the call from the list !!!");
467         }
468
469         if (ms_list_size(lc->calls)==0)
470                 linphone_core_notify_all_friends(lc,lc->presence_mode);
471
472         linphone_core_conference_check_uninit(lc);
473         if (call->ringing_beep){
474                 linphone_core_stop_dtmf(lc);
475                 call->ringing_beep=FALSE;
476         }
477         if (call->referer){
478                 linphone_call_unref(call->referer);
479                 call->referer=NULL;
480         }
481 }
482
483 void linphone_call_fix_call_parameters(LinphoneCall *call){
484         call->params.has_video=call->current_params.has_video;
485         call->params.media_encryption=call->current_params.media_encryption;
486 }
487
488 const char *linphone_call_state_to_string(LinphoneCallState cs){
489         switch (cs){
490                 case LinphoneCallIdle:
491                         return "LinphoneCallIdle";
492                 case LinphoneCallIncomingReceived:
493                         return "LinphoneCallIncomingReceived";
494                 case LinphoneCallOutgoingInit:
495                         return "LinphoneCallOutgoingInit";
496                 case LinphoneCallOutgoingProgress:
497                         return "LinphoneCallOutgoingProgress";
498                 case LinphoneCallOutgoingRinging:
499                         return "LinphoneCallOutgoingRinging";
500                 case LinphoneCallOutgoingEarlyMedia:
501                         return "LinphoneCallOutgoingEarlyMedia";
502                 case LinphoneCallConnected:
503                         return "LinphoneCallConnected";
504                 case LinphoneCallStreamsRunning:
505                         return "LinphoneCallStreamsRunning";
506                 case LinphoneCallPausing:
507                         return "LinphoneCallPausing";
508                 case LinphoneCallPaused:
509                         return "LinphoneCallPaused";
510                 case LinphoneCallResuming:
511                         return "LinphoneCallResuming";
512                 case LinphoneCallRefered:
513                         return "LinphoneCallRefered";
514                 case LinphoneCallError:
515                         return "LinphoneCallError";
516                 case LinphoneCallEnd:
517                         return "LinphoneCallEnd";
518                 case LinphoneCallPausedByRemote:
519                         return "LinphoneCallPausedByRemote";
520                 case LinphoneCallUpdatedByRemote:
521                         return "LinphoneCallUpdatedByRemote";
522                 case LinphoneCallIncomingEarlyMedia:
523                         return "LinphoneCallIncomingEarlyMedia";
524                 case LinphoneCallUpdating:
525                         return "LinphoneCallUpdating";
526                 case LinphoneCallReleased:
527                         return "LinphoneCallReleased";
528         }
529         return "undefined state";
530 }
531
532 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message){
533         LinphoneCore *lc=call->core;
534
535         if (call->state!=cstate){
536                 if (call->state==LinphoneCallEnd || call->state==LinphoneCallError){
537                         if (cstate!=LinphoneCallReleased){
538                                 ms_warning("Spurious call state change from %s to %s, ignored.",linphone_call_state_to_string(call->state),
539                                    linphone_call_state_to_string(cstate));
540                                 return;
541                         }
542                 }
543                 ms_message("Call %p: moving from state %s to %s",call,linphone_call_state_to_string(call->state),
544                            linphone_call_state_to_string(cstate));
545                 if (cstate!=LinphoneCallRefered){
546                         /*LinphoneCallRefered is rather an event, not a state.
547                          Indeed it does not change the state of the call (still paused or running)*/
548                         call->state=cstate;
549                 }
550                 if (cstate==LinphoneCallEnd || cstate==LinphoneCallError){
551                         switch(call->reason){
552                                 case LinphoneReasonDeclined:
553                                         call->log->status=LinphoneCallDeclined;
554                                         break;
555                                 case LinphoneReasonNotAnswered:
556                                         call->log->status=LinphoneCallMissed;
557                                 break;
558                                 default:
559                                 break;
560                         }
561                         linphone_call_set_terminated (call);
562                 }
563                 if (cstate == LinphoneCallConnected) {
564                         call->log->status=LinphoneCallSuccess;
565                         call->media_start_time=time(NULL);
566                 }
567
568                 if (lc->vtable.call_state_changed)
569                         lc->vtable.call_state_changed(lc,call,cstate,message);
570                 if (cstate==LinphoneCallReleased){
571                         if (call->op!=NULL) {
572                                 /* so that we cannot have anymore upcalls for SAL
573                                  concerning this call*/
574                                 sal_op_release(call->op);
575                                 call->op=NULL;
576                         }
577                         linphone_call_unref(call);
578                 }
579         }
580 }
581
582 static void linphone_call_destroy(LinphoneCall *obj)
583 {
584         if (obj->op!=NULL) {
585                 sal_op_release(obj->op);
586                 obj->op=NULL;
587         }
588         if (obj->resultdesc!=NULL) {
589                 sal_media_description_unref(obj->resultdesc);
590                 obj->resultdesc=NULL;
591         }
592         if (obj->localdesc!=NULL) {
593                 sal_media_description_unref(obj->localdesc);
594                 obj->localdesc=NULL;
595         }
596         if (obj->ping_op) {
597                 sal_op_release(obj->ping_op);
598         }
599         if (obj->refer_to){
600                 ms_free(obj->refer_to);
601         }
602         if (obj->owns_call_log)
603                 linphone_call_log_destroy(obj->log);
604         if (obj->auth_token) {
605                 ms_free(obj->auth_token);
606         }
607         if (obj->ice_session) {
608                 ice_session_destroy(obj->ice_session);
609         }
610
611         ms_free(obj);
612 }
613
614 /**
615  * @addtogroup call_control
616  * @{
617 **/
618
619 /**
620  * Increments the call 's reference count.
621  * An application that wishes to retain a pointer to call object
622  * must use this function to unsure the pointer remains
623  * valid. Once the application no more needs this pointer,
624  * it must call linphone_call_unref().
625 **/
626 LinphoneCall * linphone_call_ref(LinphoneCall *obj){
627         obj->refcnt++;
628         return obj;
629 }
630
631 /**
632  * Decrements the call object reference count.
633  * See linphone_call_ref().
634 **/
635 void linphone_call_unref(LinphoneCall *obj){
636         obj->refcnt--;
637         if (obj->refcnt==0){
638                 linphone_call_destroy(obj);
639         }
640 }
641
642 /**
643  * Returns current parameters associated to the call.
644 **/
645 const LinphoneCallParams * linphone_call_get_current_params(const LinphoneCall *call){
646         return &call->current_params;
647 }
648
649 static bool_t is_video_active(const SalStreamDescription *sd){
650         return sd->rtp_port!=0 && sd->dir!=SalStreamInactive;
651 }
652
653 /**
654  * Returns call parameters proposed by remote.
655  * 
656  * This is useful when receiving an incoming call, to know whether the remote party
657  * supports video, encryption or whatever.
658 **/
659 const LinphoneCallParams * linphone_call_get_remote_params(LinphoneCall *call){
660         LinphoneCallParams *cp=&call->remote_params;
661         memset(cp,0,sizeof(*cp));
662         if (call->op){
663                 SalMediaDescription *md=sal_call_get_remote_media_description(call->op);
664                 if (md){
665                         SalStreamDescription *asd,*vsd,*secure_asd,*secure_vsd;
666
667                         asd=sal_media_description_find_stream(md,SalProtoRtpAvp,SalAudio);
668                         vsd=sal_media_description_find_stream(md,SalProtoRtpAvp,SalVideo);
669                         secure_asd=sal_media_description_find_stream(md,SalProtoRtpSavp,SalAudio);
670                         secure_vsd=sal_media_description_find_stream(md,SalProtoRtpSavp,SalVideo);
671                         if (secure_vsd){
672                                 cp->has_video=is_video_active(secure_vsd);
673                                 if (secure_asd || asd==NULL)
674                                         cp->media_encryption=LinphoneMediaEncryptionSRTP;
675                         }else if (vsd){
676                                 cp->has_video=is_video_active(vsd);
677                         }
678                         return cp;
679                 }
680         }
681         return NULL;
682 }
683
684 /**
685  * Returns the remote address associated to this call
686  *
687 **/
688 const LinphoneAddress * linphone_call_get_remote_address(const LinphoneCall *call){
689         return call->dir==LinphoneCallIncoming ? call->log->from : call->log->to;
690 }
691
692 /**
693  * Returns the remote address associated to this call as a string.
694  *
695  * The result string must be freed by user using ms_free().
696 **/
697 char *linphone_call_get_remote_address_as_string(const LinphoneCall *call){
698         return linphone_address_as_string(linphone_call_get_remote_address(call));
699 }
700
701 /**
702  * Retrieves the call's current state.
703 **/
704 LinphoneCallState linphone_call_get_state(const LinphoneCall *call){
705         return call->state;
706 }
707
708 /**
709  * Returns the reason for a call termination (either error or normal termination)
710 **/
711 LinphoneReason linphone_call_get_reason(const LinphoneCall *call){
712         return call->reason;
713 }
714
715 /**
716  * Get the user_pointer in the LinphoneCall
717  *
718  * @ingroup call_control
719  *
720  * return user_pointer an opaque user pointer that can be retrieved at any time
721 **/
722 void *linphone_call_get_user_pointer(LinphoneCall *call)
723 {
724         return call->user_pointer;
725 }
726
727 /**
728  * Set the user_pointer in the LinphoneCall
729  *
730  * @ingroup call_control
731  *
732  * the user_pointer is an opaque user pointer that can be retrieved at any time in the LinphoneCall
733 **/
734 void linphone_call_set_user_pointer(LinphoneCall *call, void *user_pointer)
735 {
736         call->user_pointer = user_pointer;
737 }
738
739 /**
740  * Returns the call log associated to this call.
741 **/
742 LinphoneCallLog *linphone_call_get_call_log(const LinphoneCall *call){
743         return call->log;
744 }
745
746 /**
747  * Returns the refer-to uri (if the call was transfered).
748 **/
749 const char *linphone_call_get_refer_to(const LinphoneCall *call){
750         return call->refer_to;
751 }
752
753 /**
754  * Returns direction of the call (incoming or outgoing).
755 **/
756 LinphoneCallDir linphone_call_get_dir(const LinphoneCall *call){
757         return call->log->dir;
758 }
759
760 /**
761  * Returns the far end's user agent description string, if available.
762 **/
763 const char *linphone_call_get_remote_user_agent(LinphoneCall *call){
764         if (call->op){
765                 return sal_op_get_remote_ua (call->op);
766         }
767         return NULL;
768 }
769
770 /**
771  * Returns true if this calls has received a transfer that has not been
772  * executed yet.
773  * Pending transfers are executed when this call is being paused or closed,
774  * locally or by remote endpoint.
775  * If the call is already paused while receiving the transfer request, the
776  * transfer immediately occurs.
777 **/
778 bool_t linphone_call_has_transfer_pending(const LinphoneCall *call){
779         return call->refer_pending;
780 }
781
782 /**
783  * Returns call's duration in seconds.
784 **/
785 int linphone_call_get_duration(const LinphoneCall *call){
786         if (call->media_start_time==0) return 0;
787         return time(NULL)-call->media_start_time;
788 }
789
790 /**
791  * Returns the call object this call is replacing, if any.
792  * Call replacement can occur during call transfers.
793  * By default, the core automatically terminates the replaced call and accept the new one.
794  * This function allows the application to know whether a new incoming call is a one that replaces another one.
795 **/
796 LinphoneCall *linphone_call_get_replaced_call(LinphoneCall *call){
797         SalOp *op=sal_call_get_replaces(call->op);
798         if (op){
799                 return (LinphoneCall*)sal_op_get_user_pointer(op);
800         }
801         return NULL;
802 }
803
804 /**
805  * Indicate whether camera input should be sent to remote end.
806 **/
807 void linphone_call_enable_camera (LinphoneCall *call, bool_t enable){
808 #ifdef VIDEO_ENABLED
809         if (call->videostream!=NULL && call->videostream->ticker!=NULL){
810                 LinphoneCore *lc=call->core;
811                 MSWebCam *nowebcam=get_nowebcam_device();
812                 if (call->camera_active!=enable && lc->video_conf.device!=nowebcam){
813                         video_stream_change_camera(call->videostream,
814                                      enable ? lc->video_conf.device : nowebcam);
815                 }
816         }
817         call->camera_active=enable;
818 #endif
819 }
820
821 /**
822  * Take a photo of currently received video and write it into a jpeg file.
823 **/
824 int linphone_call_take_video_snapshot(LinphoneCall *call, const char *file){
825 #ifdef VIDEO_ENABLED
826         if (call->videostream!=NULL && call->videostream->jpegwriter!=NULL){
827                 return ms_filter_call_method(call->videostream->jpegwriter,MS_JPEG_WRITER_TAKE_SNAPSHOT,(void*)file);
828         }
829         ms_warning("Cannot take snapshot: no currently running video stream on this call.");
830         return -1;
831 #endif
832         return -1;
833 }
834
835 /**
836  * Returns TRUE if camera pictures are sent to the remote party.
837 **/
838 bool_t linphone_call_camera_enabled (const LinphoneCall *call){
839         return call->camera_active;
840 }
841
842 /**
843  * Enable video stream.
844 **/
845 void linphone_call_params_enable_video(LinphoneCallParams *cp, bool_t enabled){
846         cp->has_video=enabled;
847 }
848
849 const PayloadType* linphone_call_params_get_used_audio_codec(const LinphoneCallParams *cp) {
850         return cp->audio_codec;
851 }
852
853 const PayloadType* linphone_call_params_get_used_video_codec(const LinphoneCallParams *cp) {
854         return cp->video_codec;
855 }
856
857 bool_t linphone_call_params_low_bandwidth_enabled(const LinphoneCallParams *cp) {
858         return cp->low_bandwidth;
859 }
860 /**
861  * Returns whether video is enabled.
862 **/
863 bool_t linphone_call_params_video_enabled(const LinphoneCallParams *cp){
864         return cp->has_video;
865 }
866
867 enum LinphoneMediaEncryption linphone_call_params_get_media_encryption(const LinphoneCallParams *cp) {
868         return cp->media_encryption;
869 }
870
871 void linphone_call_params_set_media_encryption(LinphoneCallParams *cp, enum LinphoneMediaEncryption e) {
872         cp->media_encryption = e;
873 }
874
875
876 /**
877  * Enable sending of real early media (during outgoing calls).
878 **/
879 void linphone_call_params_enable_early_media_sending(LinphoneCallParams *cp, bool_t enabled){
880         cp->real_early_media=enabled;
881 }
882
883 bool_t linphone_call_params_early_media_sending_enabled(const LinphoneCallParams *cp){
884         return cp->real_early_media;
885 }
886
887 /**
888  * Returns true if the call is part of the locally managed conference.
889 **/
890 bool_t linphone_call_params_local_conference_mode(const LinphoneCallParams *cp){
891         return cp->in_conference;
892 }
893
894 /**
895  * Refine bandwidth settings for this call by setting a bandwidth limit for audio streams.
896  * As a consequence, codecs whose bitrates are not compatible with this limit won't be used.
897 **/
898 void linphone_call_params_set_audio_bandwidth_limit(LinphoneCallParams *cp, int bandwidth){
899         cp->audio_bw=bandwidth;
900 }
901
902 #ifdef VIDEO_ENABLED
903 /**
904  * Request remote side to send us a Video Fast Update.
905 **/
906 void linphone_call_send_vfu_request(LinphoneCall *call)
907 {
908         if (LinphoneCallStreamsRunning == linphone_call_get_state(call))
909                 sal_call_send_vfu_request(call->op);
910 }
911 #endif
912
913 /**
914  *
915 **/
916 LinphoneCallParams * linphone_call_params_copy(const LinphoneCallParams *cp){
917         LinphoneCallParams *ncp=ms_new0(LinphoneCallParams,1);
918         memcpy(ncp,cp,sizeof(LinphoneCallParams));
919         return ncp;
920 }
921
922 /**
923  *
924 **/
925 void linphone_call_params_destroy(LinphoneCallParams *p){
926         ms_free(p);
927 }
928
929 /**
930  * @}
931 **/
932
933
934 #ifdef TEST_EXT_RENDERER
935 static void rendercb(void *data, const MSPicture *local, const MSPicture *remote){
936         ms_message("rendercb, local buffer=%p, remote buffer=%p",
937                    local ? local->planes[0] : NULL, remote? remote->planes[0] : NULL);
938 }
939 #endif
940
941 #ifdef VIDEO_ENABLED
942 static void video_stream_event_cb(void *user_pointer, const MSFilter *f, const unsigned int event_id, const void *args){
943     LinphoneCall* call = (LinphoneCall*) user_pointer;
944         ms_warning("In linphonecall.c: video_stream_event_cb");
945         switch (event_id) {
946                 case MS_VIDEO_DECODER_DECODING_ERRORS:
947                         ms_warning("Case is MS_VIDEO_DECODER_DECODING_ERRORS");
948                         linphone_call_send_vfu_request(call);
949                         break;
950         case MS_VIDEO_DECODER_FIRST_IMAGE_DECODED:
951             ms_message("First video frame decoded successfully");
952             if (call->nextVideoFrameDecoded._func != NULL)
953                 call->nextVideoFrameDecoded._func(call, call->nextVideoFrameDecoded._user_data);
954             break;
955                 default:
956                         ms_warning("Unhandled event %i", event_id);
957                         break;
958         }
959 }
960 #endif
961
962 void linphone_call_set_next_video_frame_decoded_callback(LinphoneCall *call, LinphoneCallCbFunc cb, void* user_data) {
963     call->nextVideoFrameDecoded._func = cb;
964     call->nextVideoFrameDecoded._user_data = user_data;
965 #ifdef VIDEO_ENABLED
966     ms_filter_call_method_noarg(call->videostream->decoder, MS_VIDEO_DECODER_RESET_FIRST_IMAGE_NOTIFICATION);
967 #endif
968 }
969
970 void linphone_call_init_audio_stream(LinphoneCall *call){
971         LinphoneCore *lc=call->core;
972         AudioStream *audiostream;
973         int dscp;
974
975         if (call->audiostream != NULL) return;
976         call->audiostream=audiostream=audio_stream_new(call->audio_port,call->audio_port+1,linphone_core_ipv6_enabled(lc));
977         dscp=linphone_core_get_audio_dscp(lc);
978         if (dscp!=-1)
979                 audio_stream_set_dscp(audiostream,dscp);
980         if (linphone_core_echo_limiter_enabled(lc)){
981                 const char *type=lp_config_get_string(lc->config,"sound","el_type","mic");
982                 if (strcasecmp(type,"mic")==0)
983                         audio_stream_enable_echo_limiter(audiostream,ELControlMic);
984                 else if (strcasecmp(type,"full")==0)
985                         audio_stream_enable_echo_limiter(audiostream,ELControlFull);
986         }
987         audio_stream_enable_gain_control(audiostream,TRUE);
988         if (linphone_core_echo_cancellation_enabled(lc)){
989                 int len,delay,framesize;
990                 const char *statestr=lp_config_get_string(lc->config,"sound","ec_state",NULL);
991                 len=lp_config_get_int(lc->config,"sound","ec_tail_len",0);
992                 delay=lp_config_get_int(lc->config,"sound","ec_delay",0);
993                 framesize=lp_config_get_int(lc->config,"sound","ec_framesize",0);
994                 audio_stream_set_echo_canceller_params(audiostream,len,delay,framesize);
995                 if (statestr && audiostream->ec){
996                         ms_filter_call_method(audiostream->ec,MS_ECHO_CANCELLER_SET_STATE_STRING,(void*)statestr);
997                 }
998         }
999         audio_stream_enable_automatic_gain_control(audiostream,linphone_core_agc_enabled(lc));
1000         {
1001                 int enabled=lp_config_get_int(lc->config,"sound","noisegate",0);
1002                 audio_stream_enable_noise_gate(audiostream,enabled);
1003         }
1004
1005         audio_stream_set_features(audiostream,linphone_core_get_audio_features(lc));
1006
1007         if (lc->rtptf){
1008                 RtpTransport *artp=lc->rtptf->audio_rtp_func(lc->rtptf->audio_rtp_func_data, call->audio_port);
1009                 RtpTransport *artcp=lc->rtptf->audio_rtcp_func(lc->rtptf->audio_rtcp_func_data, call->audio_port+1);
1010                 rtp_session_set_transports(audiostream->session,artp,artcp);
1011         }
1012         if ((linphone_core_get_firewall_policy(lc) == LinphonePolicyUseIce) && (call->ice_session != NULL)){
1013                 rtp_session_set_pktinfo(audiostream->session, TRUE);
1014                 rtp_session_set_symmetric_rtp(audiostream->session, FALSE);
1015                 if (ice_session_check_list(call->ice_session, 0) == NULL) {
1016                         ice_session_add_check_list(call->ice_session, ice_check_list_new());
1017                 }
1018                 audiostream->ice_check_list = ice_session_check_list(call->ice_session, 0);
1019                 ice_check_list_set_rtp_session(audiostream->ice_check_list, audiostream->session);
1020         }
1021
1022         call->audiostream_app_evq = ortp_ev_queue_new();
1023         rtp_session_register_event_queue(audiostream->session,call->audiostream_app_evq);
1024 }
1025
1026 void linphone_call_init_video_stream(LinphoneCall *call){
1027 #ifdef VIDEO_ENABLED
1028         LinphoneCore *lc=call->core;
1029
1030         if (!call->params.has_video) {
1031                 linphone_call_stop_video_stream(call);
1032                 return;
1033         }
1034         if (call->videostream != NULL) return;
1035         if ((lc->video_conf.display || lc->video_conf.capture) && call->params.has_video){
1036                 int video_recv_buf_size=lp_config_get_int(lc->config,"video","recv_buf_size",0);
1037                 int dscp=linphone_core_get_video_dscp(lc);
1038                 
1039                 call->videostream=video_stream_new(call->video_port,call->video_port+1,linphone_core_ipv6_enabled(lc));
1040                 if (dscp!=-1)
1041                         video_stream_set_dscp(call->videostream,dscp);
1042                 video_stream_enable_display_filter_auto_rotate(call->videostream, lp_config_get_int(lc->config,"video","display_filter_auto_rotate",0));
1043                 if (video_recv_buf_size>0) rtp_session_set_recv_buf_size(call->videostream->session,video_recv_buf_size);
1044
1045                 if( lc->video_conf.displaytype != NULL)
1046                         video_stream_set_display_filter_name(call->videostream,lc->video_conf.displaytype);
1047                 video_stream_set_event_callback(call->videostream,video_stream_event_cb, call);
1048                 if (lc->rtptf){
1049                         RtpTransport *vrtp=lc->rtptf->video_rtp_func(lc->rtptf->video_rtp_func_data, call->video_port);
1050                         RtpTransport *vrtcp=lc->rtptf->video_rtcp_func(lc->rtptf->video_rtcp_func_data, call->video_port+1);
1051                         rtp_session_set_transports(call->videostream->session,vrtp,vrtcp);
1052                 }
1053                 if ((linphone_core_get_firewall_policy(lc) == LinphonePolicyUseIce) && (call->ice_session != NULL)){
1054                         rtp_session_set_pktinfo(call->videostream->session, TRUE);
1055                         rtp_session_set_symmetric_rtp(call->videostream->session, FALSE);
1056                         if (ice_session_check_list(call->ice_session, 1) == NULL) {
1057                                 ice_session_add_check_list(call->ice_session, ice_check_list_new());
1058                         }
1059                         call->videostream->ice_check_list = ice_session_check_list(call->ice_session, 1);
1060                         ice_check_list_set_rtp_session(call->videostream->ice_check_list, call->videostream->session);
1061                 }
1062                 call->videostream_app_evq = ortp_ev_queue_new();
1063                 rtp_session_register_event_queue(call->videostream->session,call->videostream_app_evq);
1064 #ifdef TEST_EXT_RENDERER
1065                 video_stream_set_render_callback(call->videostream,rendercb,NULL);
1066 #endif
1067         }
1068 #else
1069         call->videostream=NULL;
1070 #endif
1071 }
1072
1073 void linphone_call_init_media_streams(LinphoneCall *call){
1074         linphone_call_init_audio_stream(call);
1075         linphone_call_init_video_stream(call);
1076 }
1077
1078
1079 static int dtmf_tab[16]={'0','1','2','3','4','5','6','7','8','9','*','#','A','B','C','D'};
1080
1081 static void linphone_core_dtmf_received(LinphoneCore *lc, int dtmf){
1082         if (dtmf<0 || dtmf>15){
1083                 ms_warning("Bad dtmf value %i",dtmf);
1084                 return;
1085         }
1086         if (lc->vtable.dtmf_received != NULL)
1087                 lc->vtable.dtmf_received(lc, linphone_core_get_current_call(lc), dtmf_tab[dtmf]);
1088 }
1089
1090 static void parametrize_equalizer(LinphoneCore *lc, AudioStream *st){
1091         if (st->equalizer){
1092                 MSFilter *f=st->equalizer;
1093                 int enabled=lp_config_get_int(lc->config,"sound","eq_active",0);
1094                 const char *gains=lp_config_get_string(lc->config,"sound","eq_gains",NULL);
1095                 ms_filter_call_method(f,MS_EQUALIZER_SET_ACTIVE,&enabled);
1096                 if (enabled){
1097                         if (gains){
1098                                 do{
1099                                         int bytes;
1100                                         MSEqualizerGain g;
1101                                         if (sscanf(gains,"%f:%f:%f %n",&g.frequency,&g.gain,&g.width,&bytes)==3){
1102                                                 ms_message("Read equalizer gains: %f(~%f) --> %f",g.frequency,g.width,g.gain);
1103                                                 ms_filter_call_method(f,MS_EQUALIZER_SET_GAIN,&g);
1104                                                 gains+=bytes;
1105                                         }else break;
1106                                 }while(1);
1107                         }
1108                 }
1109         }
1110 }
1111
1112 void _post_configure_audio_stream(AudioStream *st, LinphoneCore *lc, bool_t muted){
1113         float mic_gain=lp_config_get_float(lc->config,"sound","mic_gain",1);
1114         float thres = 0;
1115         float recv_gain;
1116         float ng_thres=lp_config_get_float(lc->config,"sound","ng_thres",0.05);
1117         float ng_floorgain=lp_config_get_float(lc->config,"sound","ng_floorgain",0);
1118         int dc_removal=lp_config_get_int(lc->config,"sound","dc_removal",0);
1119
1120         if (!muted)
1121                 audio_stream_set_mic_gain(st,mic_gain);
1122         else
1123                 audio_stream_set_mic_gain(st,0);
1124
1125         recv_gain = lc->sound_conf.soft_play_lev;
1126         if (recv_gain != 0) {
1127                 linphone_core_set_playback_gain_db (lc,recv_gain);
1128         }
1129         
1130         if (st->volsend){
1131                 ms_filter_call_method(st->volsend,MS_VOLUME_REMOVE_DC,&dc_removal);
1132                 float speed=lp_config_get_float(lc->config,"sound","el_speed",-1);
1133                 thres=lp_config_get_float(lc->config,"sound","el_thres",-1);
1134                 float force=lp_config_get_float(lc->config,"sound","el_force",-1);
1135                 int sustain=lp_config_get_int(lc->config,"sound","el_sustain",-1);
1136                 float transmit_thres=lp_config_get_float(lc->config,"sound","el_transmit_thres",-1);
1137                 MSFilter *f=NULL;
1138                 f=st->volsend;
1139                 if (speed==-1) speed=0.03;
1140                 if (force==-1) force=25;
1141                 ms_filter_call_method(f,MS_VOLUME_SET_EA_SPEED,&speed);
1142                 ms_filter_call_method(f,MS_VOLUME_SET_EA_FORCE,&force);
1143                 if (thres!=-1)
1144                         ms_filter_call_method(f,MS_VOLUME_SET_EA_THRESHOLD,&thres);
1145                 if (sustain!=-1)
1146                         ms_filter_call_method(f,MS_VOLUME_SET_EA_SUSTAIN,&sustain);
1147                 if (transmit_thres!=-1)
1148                                 ms_filter_call_method(f,MS_VOLUME_SET_EA_TRANSMIT_THRESHOLD,&transmit_thres);
1149
1150                 ms_filter_call_method(st->volsend,MS_VOLUME_SET_NOISE_GATE_THRESHOLD,&ng_thres);
1151                 ms_filter_call_method(st->volsend,MS_VOLUME_SET_NOISE_GATE_FLOORGAIN,&ng_floorgain);
1152         }
1153         if (st->volrecv){
1154                 /* parameters for a limited noise-gate effect, using echo limiter threshold */
1155                 float floorgain = 1/mic_gain;
1156                 int spk_agc=lp_config_get_int(lc->config,"sound","speaker_agc_enabled",0);
1157                 ms_filter_call_method(st->volrecv, MS_VOLUME_ENABLE_AGC, &spk_agc);
1158                 ms_filter_call_method(st->volrecv,MS_VOLUME_SET_NOISE_GATE_THRESHOLD,&ng_thres);
1159                 ms_filter_call_method(st->volrecv,MS_VOLUME_SET_NOISE_GATE_FLOORGAIN,&floorgain);
1160         }
1161         parametrize_equalizer(lc,st);
1162 }
1163
1164 static void post_configure_audio_streams(LinphoneCall*call){
1165         AudioStream *st=call->audiostream;
1166         LinphoneCore *lc=call->core;
1167         _post_configure_audio_stream(st,lc,call->audio_muted);
1168         if (lc->vtable.dtmf_received!=NULL){
1169                 /* replace by our default action*/
1170                 audio_stream_play_received_dtmfs(call->audiostream,FALSE);
1171                 /*rtp_session_signal_connect(call->audiostream->session,"telephone-event",(RtpCallback)linphone_core_dtmf_received,(unsigned long)lc);*/
1172         }
1173 }
1174
1175 static RtpProfile *make_profile(LinphoneCall *call, const SalMediaDescription *md, const SalStreamDescription *desc, int *used_pt){
1176         int bw;
1177         const MSList *elem;
1178         RtpProfile *prof=rtp_profile_new("Call profile");
1179         bool_t first=TRUE;
1180         int remote_bw=0;
1181         LinphoneCore *lc=call->core;
1182         int up_ptime=0;
1183         const LinphoneCallParams *params=&call->params;
1184         *used_pt=-1;
1185
1186         for(elem=desc->payloads;elem!=NULL;elem=elem->next){
1187                 PayloadType *pt=(PayloadType*)elem->data;
1188                 int number;
1189
1190                 if ((pt->flags & PAYLOAD_TYPE_FLAG_CAN_SEND) && first) {
1191                         if (desc->type==SalAudio){
1192                                 linphone_core_update_allocated_audio_bandwidth_in_call(call,pt);
1193                                 if (params->up_ptime)
1194                                         up_ptime=params->up_ptime;
1195                                 else up_ptime=linphone_core_get_upload_ptime(lc);
1196                         }
1197                         *used_pt=payload_type_get_number(pt);
1198                         first=FALSE;
1199                 }
1200                 if (desc->bandwidth>0) remote_bw=desc->bandwidth;
1201                 else if (md->bandwidth>0) {
1202                         /*case where b=AS is given globally, not per stream*/
1203                         remote_bw=md->bandwidth;
1204                         if (desc->type==SalVideo){
1205                                 remote_bw=get_video_bandwidth(remote_bw,call->audio_bw);
1206                         }
1207                 }
1208
1209                 if (desc->type==SalAudio){
1210                         int audio_bw=call->audio_bw;
1211                         if (params->up_bw){
1212                                 if (params->up_bw< audio_bw)
1213                                         audio_bw=params->up_bw;
1214                         }
1215                         bw=get_min_bandwidth(audio_bw,remote_bw);
1216                 }else bw=get_min_bandwidth(get_video_bandwidth(linphone_core_get_upload_bandwidth (lc),call->audio_bw),remote_bw);
1217                 if (bw>0) pt->normal_bitrate=bw*1000;
1218                 else if (desc->type==SalAudio){
1219                         pt->normal_bitrate=-1;
1220                 }
1221                 if (desc->ptime>0){
1222                         up_ptime=desc->ptime;
1223                 }
1224                 if (up_ptime>0){
1225                         char tmp[40];
1226                         snprintf(tmp,sizeof(tmp),"ptime=%i",up_ptime);
1227                         payload_type_append_send_fmtp(pt,tmp);
1228                 }
1229                 number=payload_type_get_number(pt);
1230                 if (rtp_profile_get_payload(prof,number)!=NULL){
1231                         ms_warning("A payload type with number %i already exists in profile !",number);
1232                 }else
1233                         rtp_profile_set_payload(prof,number,pt);
1234         }
1235         return prof;
1236 }
1237
1238
1239 static void setup_ring_player(LinphoneCore *lc, LinphoneCall *call){
1240         int pause_time=3000;
1241         audio_stream_play(call->audiostream,lc->sound_conf.ringback_tone);
1242         ms_filter_call_method(call->audiostream->soundread,MS_FILE_PLAYER_LOOP,&pause_time);
1243 }
1244
1245 static bool_t linphone_call_sound_resources_available(LinphoneCall *call){
1246         LinphoneCore *lc=call->core;
1247         LinphoneCall *current=linphone_core_get_current_call(lc);
1248         return !linphone_core_is_in_conference(lc) && 
1249                 (current==NULL || current==call);
1250 }
1251 static int find_crypto_index_from_tag(const SalSrtpCryptoAlgo crypto[],unsigned char tag) {
1252     int i;
1253     for(i=0; i<SAL_CRYPTO_ALGO_MAX; i++) {
1254         if (crypto[i].tag == tag) {
1255             return i;
1256         }
1257     }
1258     return -1;
1259 }
1260 static void linphone_call_start_audio_stream(LinphoneCall *call, const char *cname, bool_t muted, bool_t send_ringbacktone, bool_t use_arc){
1261         LinphoneCore *lc=call->core;
1262         int used_pt=-1;
1263         char rtcp_tool[128]={0};
1264         snprintf(rtcp_tool,sizeof(rtcp_tool)-1,"%s-%s",linphone_core_get_user_agent_name(),linphone_core_get_user_agent_version());
1265         /* look for savp stream first */
1266         const SalStreamDescription *stream=sal_media_description_find_stream(call->resultdesc,
1267                                                 SalProtoRtpSavp,SalAudio);
1268         /* no savp audio stream, use avp */
1269         if (!stream)
1270                 stream=sal_media_description_find_stream(call->resultdesc,
1271                                                 SalProtoRtpAvp,SalAudio);
1272
1273         if (stream && stream->dir!=SalStreamInactive && stream->rtp_port!=0){
1274                 MSSndCard *playcard=lc->sound_conf.lsd_card ?
1275                         lc->sound_conf.lsd_card : lc->sound_conf.play_sndcard;
1276                 MSSndCard *captcard=lc->sound_conf.capt_sndcard;
1277                 const char *playfile=lc->play_file;
1278                 const char *recfile=lc->rec_file;
1279                 call->audio_profile=make_profile(call,call->resultdesc,stream,&used_pt);
1280                 bool_t use_ec;
1281
1282                 if (used_pt!=-1){
1283                         call->current_params.audio_codec = rtp_profile_get_payload(call->audio_profile, used_pt);
1284                         if (playcard==NULL) {
1285                                 ms_warning("No card defined for playback !");
1286                         }
1287                         if (captcard==NULL) {
1288                                 ms_warning("No card defined for capture !");
1289                         }
1290                         /*Replace soundcard filters by inactive file players or recorders
1291                          when placed in recvonly or sendonly mode*/
1292                         if (stream->rtp_port==0 || stream->dir==SalStreamRecvOnly){
1293                                 captcard=NULL;
1294                                 playfile=NULL;
1295                         }else if (stream->dir==SalStreamSendOnly){
1296                                 playcard=NULL;
1297                                 captcard=NULL;
1298                                 recfile=NULL;
1299                                 /*And we will eventually play "playfile" if set by the user*/
1300                                 /*playfile=NULL;*/
1301                         }
1302                         if (send_ringbacktone){
1303                                 captcard=NULL;
1304                                 playfile=NULL;/* it is setup later*/
1305                         }
1306                         /*if playfile are supplied don't use soundcards*/
1307                         if (lc->use_files) {
1308                                 captcard=NULL;
1309                                 playcard=NULL;
1310                         }
1311                         if (call->params.in_conference){
1312                                 /* first create the graph without soundcard resources*/
1313                                 captcard=playcard=NULL;
1314                         }
1315                         if (!linphone_call_sound_resources_available(call)){
1316                                 ms_message("Sound resources are used by another call, not using soundcard.");
1317                                 captcard=playcard=NULL;
1318                         }
1319                         use_ec=captcard==NULL ? FALSE : linphone_core_echo_cancellation_enabled(lc);
1320                         if (playcard &&  stream->max_rate>0) ms_snd_card_set_preferred_sample_rate(playcard, stream->max_rate);
1321                         if (captcard &&  stream->max_rate>0) ms_snd_card_set_preferred_sample_rate(captcard, stream->max_rate);
1322                         audio_stream_enable_adaptive_bitrate_control(call->audiostream,use_arc);
1323                         audio_stream_enable_adaptive_jittcomp(call->audiostream, linphone_core_audio_adaptive_jittcomp_enabled(lc));
1324                         audio_stream_start_full(
1325                                 call->audiostream,
1326                                 call->audio_profile,
1327                                 stream->rtp_addr[0]!='\0' ? stream->rtp_addr : call->resultdesc->addr,
1328                                 stream->rtp_port,
1329                                 stream->rtcp_addr[0]!='\0' ? stream->rtcp_addr : call->resultdesc->addr,
1330                                 linphone_core_rtcp_enabled(lc) ? (stream->rtcp_port) : 0,
1331                                 used_pt,
1332                                 linphone_core_get_audio_jittcomp(lc),
1333                                 playfile,
1334                                 recfile,
1335                                 playcard,
1336                                 captcard,
1337                                 use_ec
1338                                 );
1339                         post_configure_audio_streams(call);
1340                         if (muted && !send_ringbacktone){
1341                                 audio_stream_set_mic_gain(call->audiostream,0);
1342                         }
1343                         if (stream->dir==SalStreamSendOnly && playfile!=NULL){
1344                                 int pause_time=500;
1345                                 ms_filter_call_method(call->audiostream->soundread,MS_FILE_PLAYER_LOOP,&pause_time);
1346                         }
1347                         if (send_ringbacktone){
1348                                 setup_ring_player(lc,call);
1349                         }
1350                         audio_stream_set_rtcp_information(call->audiostream, cname, rtcp_tool);
1351                         
1352             /* valid local tags are > 0 */
1353                         if (stream->proto == SalProtoRtpSavp) {
1354                 const SalStreamDescription *local_st_desc=sal_media_description_find_stream(call->localdesc,
1355                                                                                             SalProtoRtpSavp,SalAudio);
1356                 int crypto_idx = find_crypto_index_from_tag(local_st_desc->crypto, stream->crypto_local_tag);
1357                 
1358                 if (crypto_idx >= 0) {
1359                     audio_stream_enable_strp(
1360                                              call->audiostream, 
1361                                              stream->crypto[0].algo,
1362                                              local_st_desc->crypto[crypto_idx].master_key,
1363                                              stream->crypto[0].master_key);
1364                     call->audiostream_encrypted=TRUE;
1365                 } else {
1366                     ms_warning("Failed to find local crypto algo with tag: %d", stream->crypto_local_tag);
1367                     call->audiostream_encrypted=FALSE;
1368                 }
1369                         }else call->audiostream_encrypted=FALSE;
1370                         if (call->params.in_conference){
1371                                 /*transform the graph to connect it to the conference filter */
1372                                 bool_t mute=stream->dir==SalStreamRecvOnly;
1373                                 linphone_call_add_to_conf(call, mute);
1374                         }
1375                         call->current_params.in_conference=call->params.in_conference;
1376                 }else ms_warning("No audio stream accepted ?");
1377         }
1378 }
1379
1380 static void linphone_call_start_video_stream(LinphoneCall *call, const char *cname,bool_t all_inputs_muted){
1381 #ifdef VIDEO_ENABLED
1382         LinphoneCore *lc=call->core;
1383         int used_pt=-1;
1384         /* look for savp stream first */
1385         const SalStreamDescription *vstream=sal_media_description_find_stream(call->resultdesc,
1386                                                 SalProtoRtpSavp,SalVideo);
1387         char rtcp_tool[128]={0};
1388         snprintf(rtcp_tool,sizeof(rtcp_tool)-1,"%s-%s",linphone_core_get_user_agent_name(),linphone_core_get_user_agent_version());
1389         
1390         /* no savp audio stream, use avp */
1391         if (!vstream)
1392                 vstream=sal_media_description_find_stream(call->resultdesc,
1393                                                 SalProtoRtpAvp,SalVideo);
1394                                                 
1395         /* shutdown preview */
1396         if (lc->previewstream!=NULL) {
1397                 video_preview_stop(lc->previewstream);
1398                 lc->previewstream=NULL;
1399         }
1400         
1401         if (vstream!=NULL && vstream->dir!=SalStreamInactive && vstream->rtp_port!=0) {
1402                 const char *rtp_addr=vstream->rtp_addr[0]!='\0' ? vstream->rtp_addr : call->resultdesc->addr;
1403                 const char *rtcp_addr=vstream->rtcp_addr[0]!='\0' ? vstream->rtcp_addr : call->resultdesc->addr;
1404                 call->video_profile=make_profile(call,call->resultdesc,vstream,&used_pt);
1405                 if (used_pt!=-1){
1406                         call->current_params.video_codec = rtp_profile_get_payload(call->video_profile, used_pt);
1407                         VideoStreamDir dir=VideoStreamSendRecv;
1408                         MSWebCam *cam=lc->video_conf.device;
1409                         bool_t is_inactive=FALSE;
1410
1411                         call->current_params.has_video=TRUE;
1412
1413                         video_stream_enable_adaptive_bitrate_control(call->videostream,
1414                                                                   linphone_core_adaptive_rate_control_enabled(lc));
1415                         video_stream_enable_adaptive_jittcomp(call->videostream, linphone_core_video_adaptive_jittcomp_enabled(lc));
1416                         video_stream_set_sent_video_size(call->videostream,linphone_core_get_preferred_video_size(lc));
1417                         video_stream_enable_self_view(call->videostream,lc->video_conf.selfview);
1418                         if (lc->video_window_id!=0)
1419                                 video_stream_set_native_window_id(call->videostream,lc->video_window_id);
1420                         if (lc->preview_window_id!=0)
1421                                 video_stream_set_native_preview_window_id (call->videostream,lc->preview_window_id);
1422                         video_stream_use_preview_video_window (call->videostream,lc->use_preview_window);
1423                         
1424                         if (vstream->dir==SalStreamSendOnly && lc->video_conf.capture ){
1425                                 cam=get_nowebcam_device();
1426                                 dir=VideoStreamSendOnly;
1427                         }else if (vstream->dir==SalStreamRecvOnly && lc->video_conf.display ){
1428                                 dir=VideoStreamRecvOnly;
1429                         }else if (vstream->dir==SalStreamSendRecv){
1430                                 if (lc->video_conf.display && lc->video_conf.capture)
1431                                         dir=VideoStreamSendRecv;
1432                                 else if (lc->video_conf.display)
1433                                         dir=VideoStreamRecvOnly;
1434                                 else
1435                                         dir=VideoStreamSendOnly;
1436                         }else{
1437                                 ms_warning("video stream is inactive.");
1438                                 /*either inactive or incompatible with local capabilities*/
1439                                 is_inactive=TRUE;
1440                         }
1441                         if (call->camera_active==FALSE || all_inputs_muted){
1442                                 cam=get_nowebcam_device();
1443                         }
1444                         if (!is_inactive){
1445                                 call->log->video_enabled = TRUE;
1446                                 video_stream_set_direction (call->videostream, dir);
1447                                 ms_message("%s lc rotation:%d\n", __FUNCTION__, lc->device_rotation);
1448                                 video_stream_set_device_rotation(call->videostream, lc->device_rotation);
1449                                 video_stream_start(call->videostream,
1450                                         call->video_profile, rtp_addr, vstream->rtp_port,
1451                                         rtcp_addr, linphone_core_rtcp_enabled(lc) ? (vstream->rtcp_port) : 0,
1452                                         used_pt, linphone_core_get_video_jittcomp(lc), cam);
1453                                 video_stream_set_rtcp_information(call->videostream, cname,rtcp_tool);
1454                         }
1455                         
1456                         if (vstream->proto == SalProtoRtpSavp) {
1457                                 const SalStreamDescription *local_st_desc=sal_media_description_find_stream(call->localdesc,
1458                                                 SalProtoRtpSavp,SalVideo);
1459                                                 
1460                                 video_stream_enable_strp(
1461                                         call->videostream, 
1462                                         vstream->crypto[0].algo,
1463                                         local_st_desc->crypto[0].master_key, 
1464                                         vstream->crypto[0].master_key
1465                                         );
1466                                 call->videostream_encrypted=TRUE;
1467                         }else{
1468                                 call->videostream_encrypted=FALSE;
1469                         }
1470                 }else ms_warning("No video stream accepted.");
1471         }else{
1472                 ms_warning("No valid video stream defined.");
1473         }
1474 #endif
1475 }
1476
1477 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone){
1478         LinphoneCore *lc=call->core;
1479
1480         call->current_params.audio_codec = NULL;
1481         call->current_params.video_codec = NULL;
1482
1483         LinphoneAddress *me=linphone_core_get_primary_contact_parsed(lc);
1484         char *cname;
1485         bool_t use_arc=linphone_core_adaptive_rate_control_enabled(lc);
1486 #ifdef VIDEO_ENABLED
1487         const SalStreamDescription *vstream=sal_media_description_find_stream(call->resultdesc,
1488                                                         SalProtoRtpAvp,SalVideo);
1489 #endif
1490
1491         if ((call->audiostream == NULL) && (call->videostream == NULL)) {
1492                 ms_fatal("start_media_stream() called without prior init !");
1493                 return;
1494         }
1495         cname=linphone_address_as_string_uri_only(me);
1496
1497 #if defined(VIDEO_ENABLED)
1498         if (vstream!=NULL && vstream->dir!=SalStreamInactive && vstream->payloads!=NULL){
1499                 /*when video is used, do not make adaptive rate control on audio, it is stupid.*/
1500                 use_arc=FALSE;
1501         }
1502 #endif
1503         if (call->audiostream!=NULL) {
1504                 linphone_call_start_audio_stream(call,cname,all_inputs_muted,send_ringbacktone,use_arc);
1505         }
1506         call->current_params.has_video=FALSE;
1507         if (call->videostream!=NULL) {
1508                 linphone_call_start_video_stream(call,cname,all_inputs_muted);
1509         }
1510
1511         call->all_muted=all_inputs_muted;
1512         call->playing_ringbacktone=send_ringbacktone;
1513         call->up_bw=linphone_core_get_upload_bandwidth(lc);
1514
1515         if (call->params.media_encryption==LinphoneMediaEncryptionZRTP) {
1516                 OrtpZrtpParams params;
1517                 /*will be set later when zrtp is activated*/
1518                 call->current_params.media_encryption=LinphoneMediaEncryptionNone;
1519                 
1520                 params.zid_file=lc->zrtp_secrets_cache;
1521                 audio_stream_enable_zrtp(call->audiostream,&params);
1522         }else if (call->params.media_encryption==LinphoneMediaEncryptionSRTP){
1523                 call->current_params.media_encryption=linphone_call_are_all_streams_encrypted(call) ?
1524                         LinphoneMediaEncryptionSRTP : LinphoneMediaEncryptionNone;
1525         }
1526
1527         /*also reflect the change if the "wished" params, in order to avoid to propose SAVP or video again
1528          * further in the call, for example during pause,resume, conferencing reINVITEs*/
1529         linphone_call_fix_call_parameters(call);
1530         if ((call->ice_session != NULL) && (ice_session_state(call->ice_session) != IS_Completed)) {
1531                 ice_session_start_connectivity_checks(call->ice_session);
1532         }
1533
1534         goto end;
1535         end:
1536                 ms_free(cname);
1537                 linphone_address_destroy(me);
1538 }
1539
1540 void linphone_call_start_media_streams_for_ice_gathering(LinphoneCall *call){
1541         audio_stream_prepare_sound(call->audiostream, NULL, NULL);
1542 #ifdef VIDEO_ENABLED
1543         if (call->videostream) {
1544                 video_stream_prepare_video(call->videostream);
1545         }
1546 #endif
1547 }
1548
1549 void linphone_call_stop_media_streams_for_ice_gathering(LinphoneCall *call){
1550         audio_stream_unprepare_sound(call->audiostream);
1551 #ifdef VIDEO_ENABLED
1552         if (call->videostream) {
1553                 video_stream_unprepare_video(call->videostream);
1554         }
1555 #endif
1556 }
1557
1558 void linphone_call_delete_ice_session(LinphoneCall *call){
1559         if (call->ice_session != NULL) {
1560                 ice_session_destroy(call->ice_session);
1561                 call->ice_session = NULL;
1562                 if (call->audiostream != NULL) call->audiostream->ice_check_list = NULL;
1563                 if (call->videostream != NULL) call->videostream->ice_check_list = NULL;
1564                 call->stats[LINPHONE_CALL_STATS_AUDIO].ice_state = LinphoneIceStateNotActivated;
1565                 call->stats[LINPHONE_CALL_STATS_VIDEO].ice_state = LinphoneIceStateNotActivated;
1566         }
1567 }
1568
1569 static void linphone_call_log_fill_stats(LinphoneCallLog *log, AudioStream *st){
1570         audio_stream_get_local_rtp_stats (st,&log->local_stats);
1571         log->quality=audio_stream_get_average_quality_rating(st);
1572 }
1573
1574 void linphone_call_stop_audio_stream(LinphoneCall *call) {
1575         if (call->audiostream!=NULL) {
1576                 call->audiostream->ice_check_list = NULL;
1577                 rtp_session_unregister_event_queue(call->audiostream->session,call->audiostream_app_evq);
1578                 ortp_ev_queue_flush(call->audiostream_app_evq);
1579                 ortp_ev_queue_destroy(call->audiostream_app_evq);
1580                 call->audiostream_app_evq=NULL;
1581
1582                 if (call->audiostream->ec){
1583                         const char *state_str=NULL;
1584                         ms_filter_call_method(call->audiostream->ec,MS_ECHO_CANCELLER_GET_STATE_STRING,&state_str);
1585                         if (state_str){
1586                                 ms_message("Writing echo canceler state, %i bytes",(int)strlen(state_str));
1587                                 lp_config_set_string(call->core->config,"sound","ec_state",state_str);
1588                         }
1589                 }
1590                 linphone_call_log_fill_stats (call->log,call->audiostream);
1591                 if (call->endpoint){
1592                         linphone_call_remove_from_conf(call);
1593                 }
1594                 audio_stream_stop(call->audiostream);
1595                 call->audiostream=NULL;
1596         }
1597 }
1598
1599 void linphone_call_stop_video_stream(LinphoneCall *call) {
1600 #ifdef VIDEO_ENABLED
1601         if (call->videostream!=NULL){
1602                 call->videostream->ice_check_list = NULL;
1603                 rtp_session_unregister_event_queue(call->videostream->session,call->videostream_app_evq);
1604                 ortp_ev_queue_flush(call->videostream_app_evq);
1605                 ortp_ev_queue_destroy(call->videostream_app_evq);
1606                 call->videostream_app_evq=NULL;
1607                 video_stream_stop(call->videostream);
1608                 call->videostream=NULL;
1609         }
1610 #endif
1611 }
1612
1613 void linphone_call_stop_media_streams(LinphoneCall *call){
1614         linphone_call_stop_audio_stream(call);
1615         linphone_call_stop_video_stream(call);
1616         ms_event_queue_skip(call->core->msevq);
1617         
1618         if (call->audio_profile){
1619                 rtp_profile_clear_all(call->audio_profile);
1620                 rtp_profile_destroy(call->audio_profile);
1621                 call->audio_profile=NULL;
1622         }
1623         if (call->video_profile){
1624                 rtp_profile_clear_all(call->video_profile);
1625                 rtp_profile_destroy(call->video_profile);
1626                 call->video_profile=NULL;
1627         }
1628 }
1629
1630
1631
1632 void linphone_call_enable_echo_cancellation(LinphoneCall *call, bool_t enable) {
1633         if (call!=NULL && call->audiostream!=NULL && call->audiostream->ec){
1634                 bool_t bypass_mode = !enable;
1635                 ms_filter_call_method(call->audiostream->ec,MS_ECHO_CANCELLER_SET_BYPASS_MODE,&bypass_mode);
1636         }
1637 }
1638 bool_t linphone_call_echo_cancellation_enabled(LinphoneCall *call) {
1639         if (call!=NULL && call->audiostream!=NULL && call->audiostream->ec){
1640                 bool_t val;
1641                 ms_filter_call_method(call->audiostream->ec,MS_ECHO_CANCELLER_GET_BYPASS_MODE,&val);
1642                 return !val;
1643         } else {
1644                 return linphone_core_echo_cancellation_enabled(call->core);
1645         }
1646 }
1647
1648 void linphone_call_enable_echo_limiter(LinphoneCall *call, bool_t val){
1649         if (call!=NULL && call->audiostream!=NULL ) {
1650                 if (val) {
1651                 const char *type=lp_config_get_string(call->core->config,"sound","el_type","mic");
1652                 if (strcasecmp(type,"mic")==0)
1653                         audio_stream_enable_echo_limiter(call->audiostream,ELControlMic);
1654                 else if (strcasecmp(type,"full")==0)
1655                         audio_stream_enable_echo_limiter(call->audiostream,ELControlFull);
1656                 } else {
1657                         audio_stream_enable_echo_limiter(call->audiostream,ELInactive);
1658                 }
1659         }
1660 }
1661
1662 bool_t linphone_call_echo_limiter_enabled(const LinphoneCall *call){
1663         if (call!=NULL && call->audiostream!=NULL ){
1664                 return call->audiostream->el_type !=ELInactive ;
1665         } else {
1666                 return linphone_core_echo_limiter_enabled(call->core);
1667         }
1668 }
1669
1670 /**
1671  * @addtogroup call_misc
1672  * @{
1673 **/
1674
1675 /**
1676  * Returns the measured sound volume played locally (received from remote).
1677  * It is expressed in dbm0.
1678 **/
1679 float linphone_call_get_play_volume(LinphoneCall *call){
1680         AudioStream *st=call->audiostream;
1681         if (st && st->volrecv){
1682                 float vol=0;
1683                 ms_filter_call_method(st->volrecv,MS_VOLUME_GET,&vol);
1684                 return vol;
1685
1686         }
1687         return LINPHONE_VOLUME_DB_LOWEST;
1688 }
1689
1690 /**
1691  * Returns the measured sound volume recorded locally (sent to remote).
1692  * It is expressed in dbm0.
1693 **/
1694 float linphone_call_get_record_volume(LinphoneCall *call){
1695         AudioStream *st=call->audiostream;
1696         if (st && st->volsend && !call->audio_muted && call->state==LinphoneCallStreamsRunning){
1697                 float vol=0;
1698                 ms_filter_call_method(st->volsend,MS_VOLUME_GET,&vol);
1699                 return vol;
1700
1701         }
1702         return LINPHONE_VOLUME_DB_LOWEST;
1703 }
1704
1705 /**
1706  * Obtain real-time quality rating of the call
1707  *
1708  * Based on local RTP statistics and RTCP feedback, a quality rating is computed and updated
1709  * during all the duration of the call. This function returns its value at the time of the function call.
1710  * It is expected that the rating is updated at least every 5 seconds or so.
1711  * The rating is a floating point number comprised between 0 and 5.
1712  *
1713  * 4-5 = good quality <br>
1714  * 3-4 = average quality <br>
1715  * 2-3 = poor quality <br>
1716  * 1-2 = very poor quality <br>
1717  * 0-1 = can't be worse, mostly unusable <br>
1718  *
1719  * @returns The function returns -1 if no quality measurement is available, for example if no
1720  * active audio stream exist. Otherwise it returns the quality rating.
1721 **/
1722 float linphone_call_get_current_quality(LinphoneCall *call){
1723         if (call->audiostream){
1724                 return audio_stream_get_quality_rating(call->audiostream);
1725         }
1726         return -1;
1727 }
1728
1729 /**
1730  * Returns call quality averaged over all the duration of the call.
1731  *
1732  * See linphone_call_get_current_quality() for more details about quality measurement.
1733 **/
1734 float linphone_call_get_average_quality(LinphoneCall *call){
1735         if (call->audiostream){
1736                 return audio_stream_get_average_quality_rating(call->audiostream);
1737         }
1738         return -1;
1739 }
1740
1741 /**
1742  * Access last known statistics for audio stream, for a given call.
1743 **/
1744 const LinphoneCallStats *linphone_call_get_audio_stats(const LinphoneCall *call) {
1745         return &call->stats[LINPHONE_CALL_STATS_AUDIO];
1746 }
1747
1748 /**
1749  * Access last known statistics for video stream, for a given call.
1750 **/
1751 const LinphoneCallStats *linphone_call_get_video_stats(const LinphoneCall *call) {
1752         return &call->stats[LINPHONE_CALL_STATS_VIDEO];
1753 }
1754
1755
1756 /**
1757  * @}
1758 **/
1759
1760 static void report_bandwidth(LinphoneCall *call, RtpSession *as, RtpSession *vs){
1761         call->stats[LINPHONE_CALL_STATS_AUDIO].download_bandwidth=(as!=NULL) ? (rtp_session_compute_recv_bandwidth(as)*1e-3) : 0;
1762         call->stats[LINPHONE_CALL_STATS_AUDIO].upload_bandwidth=(as!=NULL) ? (rtp_session_compute_send_bandwidth(as)*1e-3) : 0;
1763         call->stats[LINPHONE_CALL_STATS_VIDEO].download_bandwidth=(vs!=NULL) ? (rtp_session_compute_recv_bandwidth(vs)*1e-3) : 0;
1764         call->stats[LINPHONE_CALL_STATS_VIDEO].upload_bandwidth=(vs!=NULL) ? (rtp_session_compute_send_bandwidth(vs)*1e-3) : 0;
1765         ms_message("bandwidth usage: audio=[d=%.1f,u=%.1f] video=[d=%.1f,u=%.1f] kbit/sec",
1766                 call->stats[LINPHONE_CALL_STATS_AUDIO].download_bandwidth,
1767                 call->stats[LINPHONE_CALL_STATS_AUDIO].upload_bandwidth ,
1768                 call->stats[LINPHONE_CALL_STATS_VIDEO].download_bandwidth,
1769                 call->stats[LINPHONE_CALL_STATS_VIDEO].upload_bandwidth
1770         );
1771 }
1772
1773 static void linphone_core_disconnected(LinphoneCore *lc, LinphoneCall *call){
1774         char temp[256];
1775         char *from=NULL;
1776         if(call)
1777                 from = linphone_call_get_remote_address_as_string(call);
1778         if (from)
1779         {
1780                 snprintf(temp,sizeof(temp),"Remote end %s seems to have disconnected, the call is going to be closed.",from);
1781                 free(from);
1782         }
1783         else
1784         {
1785                 snprintf(temp,sizeof(temp),"Remote end seems to have disconnected, the call is going to be closed.");
1786         }
1787         if (lc->vtable.display_warning!=NULL)
1788                 lc->vtable.display_warning(lc,temp);
1789         linphone_core_terminate_call(lc,call);
1790 }
1791
1792 static void handle_ice_events(LinphoneCall *call, OrtpEvent *ev){
1793         OrtpEventType evt=ortp_event_get_type(ev);
1794         OrtpEventData *evd=ortp_event_get_data(ev);
1795         int ping_time;
1796
1797         if (evt == ORTP_EVENT_ICE_SESSION_PROCESSING_FINISHED) {
1798                 switch (ice_session_state(call->ice_session)) {
1799                         case IS_Completed:
1800                                 ice_session_select_candidates(call->ice_session);
1801                                 if (ice_session_role(call->ice_session) == IR_Controlling) {
1802                                         linphone_core_update_call(call->core, call, &call->current_params);
1803                                 }
1804                                 break;
1805                         case IS_Failed:
1806                                 if (ice_session_has_completed_check_list(call->ice_session) == TRUE) {
1807                                         ice_session_select_candidates(call->ice_session);
1808                                         if (ice_session_role(call->ice_session) == IR_Controlling) {
1809                                                 /* At least one ICE session has succeeded, so perform a call update. */
1810                                                 linphone_core_update_call(call->core, call, &call->current_params);
1811                                         }
1812                                 }
1813                                 break;
1814                         default:
1815                                 break;
1816                 }
1817                 linphone_core_update_ice_state_in_call_stats(call);
1818         } else if (evt == ORTP_EVENT_ICE_GATHERING_FINISHED) {
1819
1820                 if (evd->info.ice_processing_successful==TRUE) {
1821                         ice_session_compute_candidates_foundations(call->ice_session);
1822                         ice_session_eliminate_redundant_candidates(call->ice_session);
1823                         ice_session_choose_default_candidates(call->ice_session);
1824                         ping_time = ice_session_gathering_duration(call->ice_session);
1825                         if (ping_time >=0) {
1826                                 ping_time /= ice_session_nb_check_lists(call->ice_session);
1827                                 call->ping_time=ping_time;
1828                         }
1829                 } else {
1830                         ms_warning("No STUN answer from [%s], disabling ICE",linphone_core_get_stun_server(call->core));
1831                         linphone_call_delete_ice_session(call);
1832                 }
1833                 switch (call->state) {
1834                         case LinphoneCallUpdating:
1835                                 linphone_core_start_update_call(call->core, call);
1836                                 break;
1837                         case LinphoneCallUpdatedByRemote:
1838                                 linphone_core_start_accept_call_update(call->core, call);
1839                                 break;
1840                         case LinphoneCallOutgoingInit:
1841                                 linphone_call_stop_media_streams_for_ice_gathering(call);
1842                                 linphone_core_proceed_with_invite_if_ready(call->core, call, NULL);
1843                                 break;
1844                         case LinphoneCallIdle:
1845                                 linphone_call_stop_media_streams_for_ice_gathering(call);
1846                                 linphone_core_notify_incoming_call(call->core, call);
1847                                 break;
1848                         default:
1849                                 break;
1850                 }
1851         } else if (evt == ORTP_EVENT_ICE_LOSING_PAIRS_COMPLETED) {
1852                 linphone_core_start_accept_call_update(call->core, call);
1853         } else if (evt == ORTP_EVENT_ICE_RESTART_NEEDED) {
1854                 ice_session_restart(call->ice_session);
1855                 ice_session_set_role(call->ice_session, IR_Controlling);
1856                 linphone_core_update_call(call->core, call, &call->current_params);
1857         }
1858 }
1859
1860 void linphone_call_background_tasks(LinphoneCall *call, bool_t one_second_elapsed){
1861         LinphoneCore* lc = call->core;
1862         int disconnect_timeout = linphone_core_get_nortp_timeout(call->core);
1863         bool_t disconnected=FALSE;
1864
1865         if (call->state==LinphoneCallStreamsRunning && one_second_elapsed){
1866                 RtpSession *as=NULL,*vs=NULL;
1867                 float audio_load=0, video_load=0;
1868                 if (call->audiostream!=NULL){
1869                         as=call->audiostream->session;
1870                         if (call->audiostream->ticker)
1871                                 audio_load=ms_ticker_get_average_load(call->audiostream->ticker);
1872                 }
1873                 if (call->videostream!=NULL){
1874                         if (call->videostream->ticker)
1875                                 video_load=ms_ticker_get_average_load(call->videostream->ticker);
1876                         vs=call->videostream->session;
1877                 }
1878                 report_bandwidth(call,as,vs);
1879                 ms_message("Thread processing load: audio=%f\tvideo=%f",audio_load,video_load);
1880         }
1881 #ifdef VIDEO_ENABLED
1882         if (call->videostream!=NULL) {
1883                 OrtpEvent *ev;
1884
1885                 /* Ensure there is no dangling ICE check list. */
1886                 if (call->ice_session == NULL) call->videostream->ice_check_list = NULL;
1887
1888                 // Beware that the application queue should not depend on treatments fron the
1889                 // mediastreamer queue.
1890                 video_stream_iterate(call->videostream);
1891
1892                 while (call->videostream_app_evq && (NULL != (ev=ortp_ev_queue_get(call->videostream_app_evq)))){
1893                         OrtpEventType evt=ortp_event_get_type(ev);
1894                         OrtpEventData *evd=ortp_event_get_data(ev);
1895                         if (evt == ORTP_EVENT_ZRTP_ENCRYPTION_CHANGED){
1896                                 linphone_call_videostream_encryption_changed(call, evd->info.zrtp_stream_encrypted);
1897                         } else if (evt == ORTP_EVENT_RTCP_PACKET_RECEIVED) {
1898                                 call->stats[LINPHONE_CALL_STATS_VIDEO].round_trip_delay = rtp_session_get_round_trip_propagation(call->videostream->session);
1899                                 if(call->stats[LINPHONE_CALL_STATS_VIDEO].received_rtcp != NULL)
1900                                         freemsg(call->stats[LINPHONE_CALL_STATS_VIDEO].received_rtcp);
1901                                 call->stats[LINPHONE_CALL_STATS_VIDEO].received_rtcp = evd->packet;
1902                                 evd->packet = NULL;
1903                                 if (lc->vtable.call_stats_updated)
1904                                         lc->vtable.call_stats_updated(lc, call, &call->stats[LINPHONE_CALL_STATS_VIDEO]);
1905                         } else if (evt == ORTP_EVENT_RTCP_PACKET_EMITTED) {
1906                                 memcpy(&call->stats[LINPHONE_CALL_STATS_VIDEO].jitter_stats, rtp_session_get_jitter_stats(call->videostream->session), sizeof(jitter_stats_t));
1907                                 if(call->stats[LINPHONE_CALL_STATS_VIDEO].sent_rtcp != NULL)
1908                                         freemsg(call->stats[LINPHONE_CALL_STATS_VIDEO].sent_rtcp);
1909                                 call->stats[LINPHONE_CALL_STATS_VIDEO].sent_rtcp = evd->packet;
1910                                 evd->packet = NULL;
1911                                 if (lc->vtable.call_stats_updated)
1912                                         lc->vtable.call_stats_updated(lc, call, &call->stats[LINPHONE_CALL_STATS_VIDEO]);
1913                         } else if ((evt == ORTP_EVENT_ICE_SESSION_PROCESSING_FINISHED) || (evt == ORTP_EVENT_ICE_GATHERING_FINISHED)
1914                                 || (evt == ORTP_EVENT_ICE_LOSING_PAIRS_COMPLETED) || (evt == ORTP_EVENT_ICE_RESTART_NEEDED)) {
1915                                 handle_ice_events(call, ev);
1916                         }
1917                         ortp_event_destroy(ev);
1918                 }
1919         }
1920 #endif
1921         if (call->audiostream!=NULL) {
1922                 OrtpEvent *ev;
1923
1924                 /* Ensure there is no dangling ICE check list. */
1925                 if (call->ice_session == NULL) call->audiostream->ice_check_list = NULL;
1926
1927                 // Beware that the application queue should not depend on treatments fron the
1928                 // mediastreamer queue.
1929                 audio_stream_iterate(call->audiostream);
1930
1931                 while (call->audiostream_app_evq && (NULL != (ev=ortp_ev_queue_get(call->audiostream_app_evq)))){
1932                         OrtpEventType evt=ortp_event_get_type(ev);
1933                         OrtpEventData *evd=ortp_event_get_data(ev);
1934                         if (evt == ORTP_EVENT_ZRTP_ENCRYPTION_CHANGED){
1935                                 linphone_call_audiostream_encryption_changed(call, evd->info.zrtp_stream_encrypted);
1936                         } else if (evt == ORTP_EVENT_ZRTP_SAS_READY) {
1937                                 linphone_call_audiostream_auth_token_ready(call, evd->info.zrtp_sas.sas, evd->info.zrtp_sas.verified);
1938                         } else if (evt == ORTP_EVENT_RTCP_PACKET_RECEIVED) {
1939                                 call->stats[LINPHONE_CALL_STATS_AUDIO].round_trip_delay = rtp_session_get_round_trip_propagation(call->audiostream->session);
1940                                 if(call->stats[LINPHONE_CALL_STATS_AUDIO].received_rtcp != NULL)
1941                                         freemsg(call->stats[LINPHONE_CALL_STATS_AUDIO].received_rtcp);
1942                                 call->stats[LINPHONE_CALL_STATS_AUDIO].received_rtcp = evd->packet;
1943                                 evd->packet = NULL;
1944                                 if (lc->vtable.call_stats_updated)
1945                                         lc->vtable.call_stats_updated(lc, call, &call->stats[LINPHONE_CALL_STATS_AUDIO]);
1946                         } else if (evt == ORTP_EVENT_RTCP_PACKET_EMITTED) {
1947                                 memcpy(&call->stats[LINPHONE_CALL_STATS_AUDIO].jitter_stats, rtp_session_get_jitter_stats(call->audiostream->session), sizeof(jitter_stats_t));
1948                                 if(call->stats[LINPHONE_CALL_STATS_AUDIO].sent_rtcp != NULL)
1949                                         freemsg(call->stats[LINPHONE_CALL_STATS_AUDIO].sent_rtcp);
1950                                 call->stats[LINPHONE_CALL_STATS_AUDIO].sent_rtcp = evd->packet;
1951                                 evd->packet = NULL;
1952                                 if (lc->vtable.call_stats_updated)
1953                                         lc->vtable.call_stats_updated(lc, call, &call->stats[LINPHONE_CALL_STATS_AUDIO]);
1954                         } else if ((evt == ORTP_EVENT_ICE_SESSION_PROCESSING_FINISHED) || (evt == ORTP_EVENT_ICE_GATHERING_FINISHED)
1955                                 || (evt == ORTP_EVENT_ICE_LOSING_PAIRS_COMPLETED) || (evt == ORTP_EVENT_ICE_RESTART_NEEDED)) {
1956                                 handle_ice_events(call, ev);
1957                         } else if (evt==ORTP_EVENT_TELEPHONE_EVENT){
1958                                 linphone_core_dtmf_received(lc,evd->info.telephone_event);
1959                         }
1960                         ortp_event_destroy(ev);
1961                 }
1962         }
1963         if (call->state==LinphoneCallStreamsRunning && one_second_elapsed && call->audiostream!=NULL && disconnect_timeout>0 )
1964                 disconnected=!audio_stream_alive(call->audiostream,disconnect_timeout);
1965         if (disconnected)
1966                 linphone_core_disconnected(call->core,call);
1967 }
1968
1969 void linphone_call_log_completed(LinphoneCall *call){
1970         LinphoneCore *lc=call->core;
1971
1972         call->log->duration=time(NULL)-call->start_time;
1973
1974         if (call->log->status==LinphoneCallMissed){
1975                 char *info;
1976                 lc->missed_calls++;
1977                 info=ortp_strdup_printf(ngettext("You have missed %i call.",
1978                                          "You have missed %i calls.", lc->missed_calls),
1979                                 lc->missed_calls);
1980         if (lc->vtable.display_status!=NULL)
1981             lc->vtable.display_status(lc,info);
1982                 ms_free(info);
1983         }
1984         lc->call_logs=ms_list_prepend(lc->call_logs,(void *)call->log);
1985         if (ms_list_size(lc->call_logs)>lc->max_call_logs){
1986                 MSList *elem,*prevelem=NULL;
1987                 /*find the last element*/
1988                 for(elem=lc->call_logs;elem!=NULL;elem=elem->next){
1989                         prevelem=elem;
1990                 }
1991                 elem=prevelem;
1992                 linphone_call_log_destroy((LinphoneCallLog*)elem->data);
1993                 lc->call_logs=ms_list_remove_link(lc->call_logs,elem);
1994         }
1995         if (lc->vtable.call_log_updated!=NULL){
1996                 lc->vtable.call_log_updated(lc,call->log);
1997         }
1998         call_logs_write_to_config_file(lc);
1999 }
2000
2001 LinphoneCallState linphone_call_get_transfer_state(LinphoneCall *call) {
2002         return call->transfer_state;
2003 }
2004
2005 void linphone_call_set_transfer_state(LinphoneCall* call, LinphoneCallState state) {
2006         if (state != call->transfer_state) {
2007                 LinphoneCore* lc = call->core;
2008                 call->transfer_state = state;
2009                 if (lc->vtable.transfer_state_changed)
2010                         lc->vtable.transfer_state_changed(lc, call, state);
2011         }
2012 }
2013
2014 bool_t linphone_call_is_in_conference(const LinphoneCall *call) {
2015         return call->params.in_conference;
2016 }