]> sjero.net Git - linphone/blob - coreapi/private.h
fix: reuse stun discovered ip/port accross reinvites.
[linphone] / coreapi / private.h
1 /***************************************************************************
2  *            private.h
3  *
4  *  Mon Jun 13 14:23:23 2005
5  *  Copyright  2005  Simon Morlat
6  *  Email simon dot morlat at linphone dot org
7  ****************************************************************************/
8
9 /*
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef _PRIVATE_H
26 #define _PRIVATE_H
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 #include "linphonecore.h"
31 #include "linphone_tunnel.h"
32 #include "linphonecore_utils.h"
33 #include "sal.h"
34
35 #ifdef HAVE_CONFIG_H
36 #include "config.h"
37 #endif
38 #include "mediastreamer2/ice.h"
39 #include "mediastreamer2/mediastream.h"
40 #include "mediastreamer2/msconference.h"
41
42 #ifndef LIBLINPHONE_VERSION
43 #define LIBLINPHONE_VERSION LINPHONE_VERSION
44 #endif
45
46 #ifndef PACKAGE_SOUND_DIR
47 #define PACKAGE_SOUND_DIR "."
48 #endif
49
50 #ifndef PACKAGE_DATA_DIR
51 #define PACKAGE_DATA_DIR "."
52 #endif
53
54 #ifdef HAVE_GETTEXT
55 #include <libintl.h>
56 #ifndef _
57 #define _(String) gettext(String)
58 #endif
59 #else
60 #ifndef _
61 #define _(something)    (something)
62 #endif
63 #ifndef ngettext
64 #define ngettext(singular, plural, number)      (((number)==1)?(singular):(plural))
65 #endif
66 #endif
67
68 struct _LinphoneCallParams{
69         LinphoneCall *referer; /*in case this call creation is consecutive to an incoming transfer, this points to the original call */
70         int audio_bw; /* bandwidth limit for audio stream */
71         LinphoneMediaEncryption media_encryption;
72         PayloadType *audio_codec; /*audio codec currently in use */
73         PayloadType *video_codec; /*video codec currently in use */
74         int down_bw;
75         int up_bw;
76         int down_ptime;
77         int up_ptime;
78         bool_t has_video;
79         bool_t real_early_media; /*send real media even during early media (for outgoing calls)*/
80         bool_t in_conference; /*in conference mode */
81         bool_t pad;
82         
83 };
84     
85 typedef struct _CallCallbackObj
86 {
87     LinphoneCallCbFunc _func;
88     void * _user_data;
89 }CallCallbackObj;
90
91 static const int linphone_call_magic=0x3343;
92
93 struct _LinphoneChatMessage {
94         char* message;
95         LinphoneChatRoom* chat_room;
96         LinphoneChatMessageStateChangeCb cb;
97         void* cb_ud;
98         void* message_userdata;
99         char* external_body_url;
100         LinphoneAddress* from;
101 };
102
103 typedef struct StunCandidate{
104         char addr[64];
105         int port;
106 }StunCandidate;
107
108
109 struct _LinphoneCall
110 {
111         int magic; /*used to distinguish from proxy config*/
112         struct _LinphoneCore *core;
113         SalMediaDescription *localdesc;
114         SalMediaDescription *resultdesc;
115         LinphoneCallDir dir;
116         LinphoneCall *referer; /*when this call is the result of a transfer, referer is set to the original call that caused the transfer*/
117         struct _RtpProfile *audio_profile;
118         struct _RtpProfile *video_profile;
119         struct _LinphoneCallLog *log;
120         SalOp *op;
121         SalOp *ping_op;
122         char localip[LINPHONE_IPADDR_SIZE]; /* our best guess for local ipaddress for this call */
123         time_t start_time; /*time at which the call was initiated*/
124         time_t media_start_time; /*time at which it was accepted, media streams established*/
125         LinphoneCallState       state;
126         LinphoneCallState transfer_state; /*idle if no transfer*/
127         LinphoneReason reason;
128         int refcnt;
129         void * user_pointer;
130         int audio_port;
131         int video_port;
132         StunCandidate ac,vc; /*audio video ip/port discovered by STUN*/
133         struct _AudioStream *audiostream;  /**/
134         struct _VideoStream *videostream;
135         MSAudioEndpoint *endpoint; /*used for conferencing*/
136         char *refer_to;
137         LinphoneCallParams params;
138         LinphoneCallParams current_params;
139         LinphoneCallParams remote_params;
140         int up_bw; /*upload bandwidth setting at the time the call is started. Used to detect if it changes during a call */
141         int audio_bw;   /*upload bandwidth used by audio */
142         bool_t refer_pending;
143         bool_t media_pending;
144         bool_t audio_muted;
145         bool_t camera_active;
146         bool_t all_muted; /*this flag is set during early medias*/
147         bool_t playing_ringbacktone;
148         bool_t owns_call_log;
149         bool_t ringing_beep; /* whether this call is ringing through an already existent current call*/
150         OrtpEvQueue *audiostream_app_evq;
151         char *auth_token;
152         OrtpEvQueue *videostream_app_evq;
153         bool_t videostream_encrypted;
154         bool_t audiostream_encrypted;
155         bool_t auth_token_verified;
156         bool_t defer_update;
157         bool_t was_automatically_paused;
158         bool_t ping_replied;
159         CallCallbackObj nextVideoFrameDecoded;
160         LinphoneCallStats stats[2];
161         IceSession *ice_session;
162         LinphoneChatMessage* pending_message;
163 };
164
165
166 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params);
167 LinphoneCall * linphone_call_new_incoming(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op);
168 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message);
169
170 /* private: */
171 LinphoneCallLog * linphone_call_log_new(LinphoneCall *call, LinphoneAddress *local, LinphoneAddress * remote);
172 void linphone_call_log_completed(LinphoneCall *call);
173 void linphone_call_log_destroy(LinphoneCallLog *cl);
174 void linphone_call_set_transfer_state(LinphoneCall* call, LinphoneCallState state);
175
176 void linphone_auth_info_write_config(struct _LpConfig *config, LinphoneAuthInfo *obj, int pos);
177
178 void linphone_core_update_proxy_register(LinphoneCore *lc);
179 void linphone_core_refresh_subscribes(LinphoneCore *lc);
180 int linphone_core_abort_call(LinphoneCore *lc, LinphoneCall *call, const char *error);
181
182 int linphone_proxy_config_send_publish(LinphoneProxyConfig *cfg, LinphoneOnlineStatus os);
183 void linphone_proxy_config_set_state(LinphoneProxyConfig *cfg, LinphoneRegistrationState rstate, const char *message);
184
185 int linphone_online_status_to_eXosip(LinphoneOnlineStatus os);
186 void linphone_friend_close_subscriptions(LinphoneFriend *lf);
187 void linphone_friend_notify(LinphoneFriend *lf, LinphoneOnlineStatus os);
188 LinphoneFriend *linphone_find_friend_by_inc_subscribe(MSList *l, SalOp *op);
189 LinphoneFriend *linphone_find_friend_by_out_subscribe(MSList *l, SalOp *op);
190
191 int parse_hostname_to_addr(const char *server, struct sockaddr_storage *ss, socklen_t *socklen);
192 int set_lock_file();
193 int get_lock_file();
194 int remove_lock_file();
195 void check_sound_device(LinphoneCore *lc);
196 void linphone_core_get_local_ip(LinphoneCore *lc, const char *to, char *result);
197 bool_t host_has_ipv6_network();
198 bool_t lp_spawn_command_line_sync(const char *command, char **result,int *command_ret);
199
200 static inline int get_min_bandwidth(int dbw, int ubw){
201         if (dbw<=0) return ubw;
202         if (ubw<=0) return dbw;
203         return MIN(dbw,ubw);
204 }
205
206 static inline bool_t bandwidth_is_greater(int bw1, int bw2){
207         if (bw1<0) return TRUE;
208         else if (bw2<0) return FALSE;
209         else return bw1>=bw2;
210 }
211
212 static inline int get_video_bandwidth(int total, int audio){
213         if (total<=0) return 0;
214         return total-audio-10;
215 }
216
217 static inline void set_string(char **dest, const char *src){
218         if (*dest){
219                 ms_free(*dest);
220                 *dest=NULL;
221         }
222         if (src)
223                 *dest=ms_strdup(src);
224 }
225
226 #define PAYLOAD_TYPE_ENABLED    PAYLOAD_TYPE_USER_FLAG_0
227
228 SalPresenceStatus linphone_online_status_to_sal(LinphoneOnlineStatus os);
229 void linphone_process_authentication(LinphoneCore* lc, SalOp *op);
230 void linphone_authentication_ok(LinphoneCore *lc, SalOp *op);
231 void linphone_subscription_new(LinphoneCore *lc, SalOp *op, const char *from);
232 void linphone_notify_recv(LinphoneCore *lc, SalOp *op, SalSubscribeStatus ss, SalPresenceStatus status);
233 void linphone_proxy_config_process_authentication_failure(LinphoneCore *lc, SalOp *op);
234
235 void linphone_subscription_answered(LinphoneCore *lc, SalOp *op);
236 void linphone_subscription_closed(LinphoneCore *lc, SalOp *op);
237
238 MSList *linphone_find_friend(MSList *fl, const LinphoneAddress *fri, LinphoneFriend **lf);
239
240 void linphone_core_update_allocated_audio_bandwidth(LinphoneCore *lc);
241 void linphone_core_update_allocated_audio_bandwidth_in_call(LinphoneCall *call, const PayloadType *pt);
242
243 int linphone_core_run_stun_tests(LinphoneCore *lc, LinphoneCall *call);
244 void linphone_core_adapt_to_network(LinphoneCore *lc, int ping_time_ms, LinphoneCallParams *params);
245 int linphone_core_gather_ice_candidates(LinphoneCore *lc, LinphoneCall *call);
246 void linphone_core_update_ice_state_in_call_stats(LinphoneCall *call);
247 void linphone_core_update_local_media_description_from_ice(SalMediaDescription *desc, IceSession *session);
248 void linphone_core_update_ice_from_remote_media_description(LinphoneCall *call, const SalMediaDescription *md);
249 void linphone_core_deactivate_ice_for_deactivated_media_streams(LinphoneCall *call, const SalMediaDescription *md);
250
251 void linphone_core_send_initial_subscribes(LinphoneCore *lc);
252 void linphone_core_write_friends_config(LinphoneCore* lc);
253 void linphone_friend_write_to_config_file(struct _LpConfig *config, LinphoneFriend *lf, int index);
254 LinphoneFriend * linphone_friend_new_from_config_file(struct _LinphoneCore *lc, int index);
255
256 void linphone_proxy_config_update(LinphoneProxyConfig *cfg);
257 void linphone_proxy_config_get_contact(LinphoneProxyConfig *cfg, const char **ip, int *port);
258 LinphoneProxyConfig * linphone_core_lookup_known_proxy(LinphoneCore *lc, const LinphoneAddress *uri);
259 const char *linphone_core_find_best_identity(LinphoneCore *lc, const LinphoneAddress *to, const char **route);
260 int linphone_core_get_local_ip_for(int type, const char *dest, char *result);
261
262 LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(struct _LpConfig *config, int index);
263 void linphone_proxy_config_write_to_config_file(struct _LpConfig* config,LinphoneProxyConfig *obj, int index);
264
265 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *cfg, const char *username, char *result, size_t result_len);
266
267 void linphone_core_message_received(LinphoneCore *lc, const char *from, const char *raw_msg,const char* external_url);
268
269 void linphone_core_play_tone(LinphoneCore *lc);
270
271 void linphone_call_init_stats(LinphoneCallStats *stats, int type);
272
273 void linphone_call_init_audio_stream(LinphoneCall *call);
274 void linphone_call_init_video_stream(LinphoneCall *call);
275 void linphone_call_init_media_streams(LinphoneCall *call);
276 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone);
277 void linphone_call_start_media_streams_for_ice_gathering(LinphoneCall *call);
278 void linphone_call_stop_media_streams(LinphoneCall *call);
279 void linphone_call_delete_ice_session(LinphoneCall *call);
280
281 const char * linphone_core_get_identity(LinphoneCore *lc);
282 const char * linphone_core_get_route(LinphoneCore *lc);
283 void linphone_core_start_waiting(LinphoneCore *lc, const char *purpose);
284 void linphone_core_update_progress(LinphoneCore *lc, const char *purpose, float progresses);
285 void linphone_core_stop_waiting(LinphoneCore *lc);
286
287 int linphone_core_proceed_with_invite_if_ready(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
288 int linphone_core_start_invite(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
289 int linphone_core_start_update_call(LinphoneCore *lc, LinphoneCall *call);
290 int linphone_core_start_accept_call_update(LinphoneCore *lc, LinphoneCall *call);
291 void linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *call);
292 void linphone_core_notify_incoming_call(LinphoneCore *lc, LinphoneCall *call);
293 extern SalCallbacks linphone_sal_callbacks;
294 void linphone_proxy_config_set_error(LinphoneProxyConfig *cfg, LinphoneReason error);
295 bool_t linphone_core_rtcp_enabled(const LinphoneCore *lc);
296
297 LinphoneCall * is_a_linphone_call(void *user_pointer);
298 LinphoneProxyConfig * is_a_linphone_proxy_config(void *user_pointer);
299
300 static const int linphone_proxy_config_magic=0x7979;
301
302 /*chat*/        
303 void linphone_chat_message_destroy(LinphoneChatMessage* msg);
304 /**/    
305
306 struct _LinphoneProxyConfig
307 {
308         int magic;
309         struct _LinphoneCore *lc;
310         char *reg_proxy;
311         char *reg_identity;
312         char *reg_route;
313         char *realm;
314         char *contact_params;
315         int expires;
316         int reg_time;
317         SalOp *op;
318         char *type;
319         struct _SipSetupContext *ssctx;
320         int auth_failures;
321         char *dial_prefix;
322         LinphoneRegistrationState state;
323         SalOp *publish_op;
324         bool_t commit;
325         bool_t reg_sendregister;
326         bool_t publish;
327         bool_t dial_escape_plus;
328         void* user_data;
329         time_t deletion_date;
330         LinphoneReason error;
331 };
332
333 struct _LinphoneAuthInfo
334 {
335         char *username;
336         char *realm;
337         char *userid;
338         char *passwd;
339         char *ha1;
340         int usecount;
341         time_t last_use_time;
342         bool_t works;
343 };
344
345 struct _LinphoneChatRoom{
346         struct _LinphoneCore *lc;
347         char  *peer;
348         LinphoneAddress *peer_url;
349         SalOp *op;
350         void * user_data;
351 };
352
353
354         
355 struct _LinphoneFriend{
356         LinphoneAddress *uri;
357         SalOp *insub;
358         SalOp *outsub;
359         LinphoneSubscribePolicy pol;
360         LinphoneOnlineStatus status;
361         struct _LinphoneCore *lc;
362         BuddyInfo *info;
363         char *refkey;
364         bool_t subscribe;
365         bool_t subscribe_active;
366         bool_t inc_subscribe_pending;
367         bool_t commit;
368 };
369
370
371 typedef struct sip_config
372 {
373         char *contact;
374         char *guessed_contact;
375         MSList *proxies;
376         MSList *deleted_proxies;
377         int inc_timeout;        /*timeout after an un-answered incoming call is rejected*/
378         unsigned int keepalive_period; /* interval in ms between keep alive messages sent to the proxy server*/
379         LCSipTransports transports;
380         bool_t use_info;
381         bool_t use_rfc2833;     /*force RFC2833 to be sent*/
382         bool_t guess_hostname;
383         bool_t loopback_only;
384         bool_t ipv6_enabled;
385         bool_t sdp_200_ack;
386         bool_t register_only_when_network_is_up;
387         bool_t ping_with_options;
388         bool_t auto_net_state_mon;
389 } sip_config_t;
390
391 typedef struct rtp_config
392 {
393         int audio_rtp_port;
394         int video_rtp_port;
395         int audio_jitt_comp;  /*jitter compensation*/
396         int video_jitt_comp;  /*jitter compensation*/
397         int nortp_timeout;
398         bool_t rtp_no_xmit_on_audio_mute;
399                               /* stop rtp xmit when audio muted */
400         bool_t audio_adaptive_jitt_comp_enabled;
401         bool_t video_adaptive_jitt_comp_enabled;
402         bool_t pad;
403 }rtp_config_t;
404
405
406
407 typedef struct net_config
408 {
409         char *nat_address; /* may be IP or host name */
410         char *nat_address_ip; /* ip translated from nat_address */
411         char *stun_server;
412         char *relay;
413         int download_bw;
414         int upload_bw;
415         int firewall_policy;
416         int mtu;
417         bool_t nat_sdp_only;
418 }net_config_t;
419
420
421 typedef struct sound_config
422 {
423         struct _MSSndCard * ring_sndcard;       /* the playback sndcard currently used */
424         struct _MSSndCard * play_sndcard;       /* the playback sndcard currently used */
425         struct _MSSndCard * capt_sndcard; /* the capture sndcard currently used */
426         struct _MSSndCard * lsd_card; /* dummy playback card for Linphone Sound Daemon extension */
427         const char **cards;
428         int latency;    /* latency in samples of the current used sound device */
429         float soft_play_lev; /*playback gain in db.*/
430         char rec_lev;
431         char play_lev;
432         char ring_lev;
433         char source;
434         char *local_ring;
435         char *remote_ring;
436         char *ringback_tone;
437         bool_t ec;
438         bool_t ea;
439         bool_t agc;
440 } sound_config_t;
441
442 typedef struct codecs_config
443 {
444         MSList *audio_codecs;  /* list of audio codecs in order of preference*/
445         MSList *video_codecs;   /* for later use*/
446 }codecs_config_t;
447
448 typedef struct video_config{
449         struct _MSWebCam *device;
450         const char **cams;
451         MSVideoSize vsize;
452         bool_t capture;
453         bool_t show_local;
454         bool_t display;
455         bool_t selfview; /*during calls*/
456         const char *displaytype;
457 }video_config_t;
458
459 typedef struct ui_config
460 {
461         int is_daemon;
462         int is_applet;
463         unsigned int timer_id;  /* the timer id for registration */
464 }ui_config_t;
465
466
467
468 typedef struct autoreplier_config
469 {
470         int enabled;
471         int after_seconds;              /* accept the call after x seconds*/
472         int max_users;                  /* maximum number of user that can call simultaneously */
473         int max_rec_time;       /* the max time of incoming voice recorded */
474         int max_rec_msg;                /* maximum number of recorded messages */
475         const char *message;            /* the path of the file to be played */
476 }autoreplier_config_t;
477
478 struct _LinphoneConference{
479         MSAudioConference *conf;
480         AudioStream *local_participant;
481         MSAudioEndpoint *local_endpoint;
482         RtpProfile *local_dummy_profile;
483         bool_t local_muted;
484 };
485
486 typedef struct _LinphoneConference LinphoneConference;
487
488 struct _LinphoneCore
489 {
490         LinphoneCoreVTable vtable;
491         Sal *sal;
492         LinphoneGlobalState state;
493         struct _LpConfig *config;
494         net_config_t net_conf;
495         sip_config_t sip_conf;
496         rtp_config_t rtp_conf;
497         sound_config_t sound_conf;
498         video_config_t video_conf;
499         codecs_config_t codecs_conf;
500         ui_config_t ui_conf;
501         autoreplier_config_t autoreplier_conf;
502         MSList *payload_types;
503         int dyn_pt;
504         LinphoneProxyConfig *default_proxy;
505         MSList *friends;
506         MSList *auth_info;
507         struct _RingStream *ringstream;
508         time_t dmfs_playing_start_time;
509         LCCallbackObj preview_finished_cb;
510         LinphoneCall *current_call;   /* the current call */
511         MSList *calls;                          /* all the processed calls */
512         MSList *queued_calls;   /* used by the autoreplier */
513         MSList *call_logs;
514         MSList *chatrooms;
515         int max_call_logs;
516         int missed_calls;
517         VideoPreview *previewstream;
518         struct _MSEventQueue *msevq;
519         LinphoneRtpTransportFactories *rtptf;
520         MSList *bl_reqs;
521         MSList *subscribers;    /* unknown subscribers */
522         int minutes_away;
523         LinphoneOnlineStatus presence_mode;
524         char *alt_contact;
525         void *data;
526         char *play_file;
527         char *rec_file;
528         time_t prevtime;
529         int audio_bw;
530         LinphoneWaitingCallback wait_cb;
531         void *wait_ctx;
532         unsigned long video_window_id;
533         unsigned long preview_window_id;
534         time_t netup_time; /*time when network went reachable */
535         struct _EcCalibrator *ecc;
536         MSList *hooks;
537         LinphoneConference conf_ctx;
538         char* zrtp_secrets_cache;
539         LinphoneVideoPolicy video_policy;
540         bool_t use_files;
541         bool_t apply_nat_settings;
542         bool_t initial_subscribes_sent;
543         bool_t bl_refresh;
544         
545         bool_t preview_finished;
546         bool_t auto_net_state_mon;
547         bool_t network_reachable;
548         bool_t use_preview_window;
549         
550         bool_t ringstream_autorelease;
551         bool_t pad[3];
552         int device_rotation;
553         int max_calls;
554         LinphoneTunnel *tunnel;
555         char* device_id;
556 };
557
558 LinphoneTunnel *linphone_core_tunnel_new(LinphoneCore *lc);
559 void linphone_tunnel_destroy(LinphoneTunnel *tunnel);
560 void linphone_tunnel_configure(LinphoneTunnel *tunnel);
561 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, OrtpLogFunc logHandler);
562         
563 bool_t linphone_core_can_we_add_call(LinphoneCore *lc);
564 int linphone_core_add_call( LinphoneCore *lc, LinphoneCall *call);
565 int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call);
566 int linphone_core_set_as_current_call(LinphoneCore *lc, LinphoneCall *call);
567 int linphone_core_get_calls_nb(const LinphoneCore *lc);
568
569 void linphone_core_set_state(LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
570
571 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call);
572 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call);
573
574 void linphone_core_update_streams(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription *new_md);
575
576 bool_t linphone_core_is_payload_type_usable_for_bandwidth(LinphoneCore *lc, PayloadType *pt,  int bandwidth_limit);
577
578 #define linphone_core_ready(lc) ((lc)->state!=LinphoneGlobalStartup)
579 void _linphone_core_configure_resolver();
580
581 struct _EcCalibrator{
582         ms_thread_t thread;
583         MSSndCard *play_card,*capt_card;
584         MSFilter *sndread,*det,*rec;
585         MSFilter *play, *gen, *sndwrite,*resampler;
586         MSTicker *ticker;
587         LinphoneEcCalibrationCallback cb;
588         void *cb_data;
589         int recv_count;
590         int sent_count;
591         int64_t acc;
592         int delay;
593         unsigned int rate;
594         LinphoneEcCalibratorStatus status;
595 };
596
597 typedef struct _EcCalibrator EcCalibrator;
598
599 LinphoneEcCalibratorStatus ec_calibrator_get_status(EcCalibrator *ecc);
600
601 void ec_calibrator_destroy(EcCalibrator *ecc);
602
603 void linphone_call_background_tasks(LinphoneCall *call, bool_t one_second_elapsed);
604 void linphone_core_preempt_sound_resources(LinphoneCore *lc);
605 /*conferencing subsystem*/
606 void _post_configure_audio_stream(AudioStream *st, LinphoneCore *lc, bool_t muted);
607 /* When a conference participant pause the conference he may send a music.
608  * We don't want to hear that music or to send it to the other participants.
609  * Use muted=yes to handle this case.
610  */
611 void linphone_call_add_to_conf(LinphoneCall *call, bool_t muted);
612 void linphone_call_remove_from_conf(LinphoneCall *call);
613 void linphone_core_conference_check_uninit(LinphoneCore *lc);
614 bool_t linphone_core_sound_resources_available(LinphoneCore *lc);
615 void linphone_core_notify_refer_state(LinphoneCore *lc, LinphoneCall *referer, LinphoneCall *newcall);
616 unsigned int linphone_core_get_audio_features(LinphoneCore *lc);
617
618 void __linphone_core_invalidate_registers(LinphoneCore* lc);
619 void _linphone_core_codec_config_write(LinphoneCore *lc);
620
621 #define HOLD_OFF        (0)
622 #define HOLD_ON         (1)
623
624 #ifndef NB_MAX_CALLS
625 #define NB_MAX_CALLS    (10)
626 #endif
627 void call_logs_write_to_config_file(LinphoneCore *lc);
628
629
630
631 #ifdef __cplusplus
632 }
633 #endif
634
635 #endif /* _PRIVATE_H */