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