]> sjero.net Git - linphone/blob - coreapi/private.h
Custom video transport. ffmpeg shared lib on Android.
[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
28 #include "linphonecore.h"
29 #include "linphonecore_utils.h"
30 #include "sal.h"
31
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35 #include "mediastreamer2/mediastream.h"
36
37 #ifndef LIBLINPHONE_VERSION 
38 #define LIBLINPHONE_VERSION LINPHONE_VERSION
39 #endif
40
41 #ifndef PACKAGE_SOUND_DIR 
42 #define PACKAGE_SOUND_DIR "."
43 #endif
44
45 #ifdef HAVE_GETTEXT
46 #include <libintl.h>
47 #ifndef _
48 #define _(String) gettext(String)
49 #endif
50 #else
51 #ifndef _
52 #define _(something)    (something)
53 #endif
54 #ifndef ngettext
55 #define ngettext(singular, plural, number)      (((number)==1)?(singular):(plural))
56 #endif
57 #endif
58
59
60 struct _LinphoneCallParams{
61         LinphoneCall *referer; /*in case this call creation is consecutive to an incoming transfer, this points to the original call */
62         int audio_bw; /* bandwidth limit for audio stream */
63         bool_t has_video;
64         bool_t real_early_media; /*send real media even during early media (for outgoing calls)*/
65         bool_t pad[2];
66 };
67
68 struct _LinphoneCall
69 {
70         struct _LinphoneCore *core;
71         SalMediaDescription *localdesc;
72         SalMediaDescription *resultdesc;
73         LinphoneCallDir dir;
74         struct _RtpProfile *audio_profile;
75         struct _RtpProfile *video_profile;
76         struct _LinphoneCallLog *log;
77         SalOp *op;
78         SalOp *ping_op;
79         char localip[LINPHONE_IPADDR_SIZE]; /* our best guess for local ipaddress for this call */
80         time_t start_time; /*time at which the call was initiated*/
81         time_t media_start_time; /*time at which it was accepted, media streams established*/
82         LinphoneCallState       state;
83         LinphoneReason reason;
84         int refcnt;
85         void * user_pointer;
86         int audio_port;
87         int video_port;
88         struct _AudioStream *audiostream;  /**/
89         struct _VideoStream *videostream;
90         char *refer_to;
91         LinphoneCallParams params;
92         LinphoneCallParams current_params;
93         int up_bw; /*upload bandwidth setting at the time the call is started. Used to detect if it changes during a call */
94         int audio_bw;   /*upload bandwidth used by audio */
95         bool_t refer_pending;
96         bool_t media_pending;
97         bool_t audio_muted;
98         bool_t camera_active;
99         bool_t all_muted; /*this flag is set during early medias*/
100         bool_t playing_ringbacktone;
101         bool_t owns_call_log;
102 };
103
104
105 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params);
106 LinphoneCall * linphone_call_new_incoming(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op);
107 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message);
108
109 /* private: */
110 LinphoneCallLog * linphone_call_log_new(LinphoneCall *call, LinphoneAddress *local, LinphoneAddress * remote);
111 void linphone_call_log_completed(LinphoneCallLog *calllog, LinphoneCall *call, LinphoneCallStatus status);
112 void linphone_call_log_destroy(LinphoneCallLog *cl);
113
114 void linphone_auth_info_write_config(struct _LpConfig *config, LinphoneAuthInfo *obj, int pos);
115
116 void linphone_core_update_proxy_register(LinphoneCore *lc);
117 void linphone_core_refresh_subscribes(LinphoneCore *lc);
118 int linphone_core_abort_call(LinphoneCore *lc, LinphoneCall *call, const char *error);
119
120 int linphone_proxy_config_send_publish(LinphoneProxyConfig *cfg, LinphoneOnlineStatus os);
121 void linphone_proxy_config_set_state(LinphoneProxyConfig *cfg, LinphoneRegistrationState rstate, const char *message);
122
123 int linphone_online_status_to_eXosip(LinphoneOnlineStatus os);
124 void linphone_friend_close_subscriptions(LinphoneFriend *lf);
125 void linphone_friend_notify(LinphoneFriend *lf, LinphoneOnlineStatus os);
126 LinphoneFriend *linphone_find_friend_by_inc_subscribe(MSList *l, SalOp *op);
127 LinphoneFriend *linphone_find_friend_by_out_subscribe(MSList *l, SalOp *op);
128
129
130 int set_lock_file();
131 int get_lock_file();
132 int remove_lock_file();
133 int do_registration(LinphoneCore *lc, bool_t doit);
134 void check_for_registration(LinphoneCore *lc);
135 void check_sound_device(LinphoneCore *lc);
136 void linphone_core_verify_codecs(LinphoneCore *lc);
137 void linphone_core_get_local_ip(LinphoneCore *lc, const char *to, char *result);
138 bool_t host_has_ipv6_network();
139 bool_t lp_spawn_command_line_sync(const char *command, char **result,int *command_ret);
140
141 static inline int get_min_bandwidth(int dbw, int ubw){
142         if (dbw<=0) return ubw;
143         if (ubw<=0) return dbw;
144         return MIN(dbw,ubw);
145 }
146
147 static inline bool_t bandwidth_is_greater(int bw1, int bw2){
148         if (bw1<0) return TRUE;
149         else if (bw2<0) return FALSE;
150         else return bw1>=bw2;
151 }
152
153 static inline int get_video_bandwidth(int total, int audio){
154         if (total<=0) return 0;
155         return total-audio-10;
156 }
157
158 static inline void set_string(char **dest, const char *src){
159         if (*dest){
160                 ms_free(*dest);
161                 *dest=NULL;
162         }
163         if (src)
164                 *dest=ms_strdup(src);
165 }
166
167 #define PAYLOAD_TYPE_ENABLED    PAYLOAD_TYPE_USER_FLAG_0
168
169 SalPresenceStatus linphone_online_status_to_sal(LinphoneOnlineStatus os);
170 void linphone_process_authentication(LinphoneCore* lc, SalOp *op);
171 void linphone_authentication_ok(LinphoneCore *lc, SalOp *op);
172 void linphone_subscription_new(LinphoneCore *lc, SalOp *op, const char *from);
173 void linphone_notify_recv(LinphoneCore *lc, SalOp *op, SalSubscribeState ss, SalPresenceStatus status);
174 void linphone_proxy_config_process_authentication_failure(LinphoneCore *lc, SalOp *op);
175
176 void linphone_subscription_answered(LinphoneCore *lc, SalOp *op);
177 void linphone_subscription_closed(LinphoneCore *lc, SalOp *op);
178
179 MSList *linphone_find_friend(MSList *fl, const LinphoneAddress *fri, LinphoneFriend **lf);
180
181 void linphone_core_update_allocated_audio_bandwidth(LinphoneCore *lc);
182 void linphone_core_update_allocated_audio_bandwidth_in_call(LinphoneCall *call, const PayloadType *pt);
183 void linphone_core_run_stun_tests(LinphoneCore *lc, LinphoneCall *call);
184
185 void linphone_core_send_initial_subscribes(LinphoneCore *lc);
186 void linphone_core_write_friends_config(LinphoneCore* lc);
187 void linphone_friend_write_to_config_file(struct _LpConfig *config, LinphoneFriend *lf, int index);
188 LinphoneFriend * linphone_friend_new_from_config_file(struct _LinphoneCore *lc, int index);
189
190 void linphone_proxy_config_update(LinphoneProxyConfig *cfg);
191 void linphone_proxy_config_get_contact(LinphoneProxyConfig *cfg, const char **ip, int *port);
192 LinphoneProxyConfig * linphone_core_lookup_known_proxy(LinphoneCore *lc, const LinphoneAddress *uri);
193 const char *linphone_core_find_best_identity(LinphoneCore *lc, const LinphoneAddress *to, const char **route);
194 int linphone_core_get_local_ip_for(int type, const char *dest, char *result);
195
196 LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(struct _LpConfig *config, int index);
197 void linphone_proxy_config_write_to_config_file(struct _LpConfig* config,LinphoneProxyConfig *obj, int index);
198
199 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *cfg, const char *username, char *result, size_t result_len);
200
201 void linphone_core_text_received(LinphoneCore *lc, const char *from, const char *msg);
202
203 void linphone_call_init_media_streams(LinphoneCall *call);
204 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone);
205 void linphone_call_stop_media_streams(LinphoneCall *call);
206
207 const char * linphone_core_get_identity(LinphoneCore *lc);
208 const char * linphone_core_get_route(LinphoneCore *lc);
209 void linphone_core_start_waiting(LinphoneCore *lc, const char *purpose);
210 void linphone_core_update_progress(LinphoneCore *lc, const char *purpose, float progresses);
211 void linphone_core_stop_waiting(LinphoneCore *lc);
212
213 int linphone_core_start_invite(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
214 void linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *call);
215 extern SalCallbacks linphone_sal_callbacks;
216 void linphone_proxy_config_set_error(LinphoneProxyConfig *cfg, LinphoneReason error);
217
218 struct _LinphoneProxyConfig
219 {
220         struct _LinphoneCore *lc;
221         char *reg_proxy;
222         char *reg_identity;
223         char *reg_route;
224         char *realm;
225         int expires;
226         int reg_time;
227         SalOp *op;
228         char *type;
229         struct _SipSetupContext *ssctx;
230         int auth_failures;
231         char *dial_prefix;
232         LinphoneRegistrationState state;
233         SalOp *publish_op;
234         bool_t commit;
235         bool_t reg_sendregister;
236         bool_t registered;
237         bool_t publish;
238         bool_t dial_escape_plus;
239         void* user_data;
240         time_t deletion_date;
241         LinphoneReason error;
242 };
243
244 struct _LinphoneAuthInfo 
245 {
246         char *username;
247         char *realm;
248         char *userid;
249         char *passwd;
250         char *ha1;
251         int usecount;
252         bool_t works;
253 };
254
255 struct _LinphoneChatRoom{
256         struct _LinphoneCore *lc;
257         char  *peer;
258         LinphoneAddress *peer_url;
259         SalOp *op;
260         void * user_data;
261 };
262
263 struct _LinphoneFriend{
264         LinphoneAddress *uri;
265         SalOp *insub;
266         SalOp *outsub;
267         LinphoneSubscribePolicy pol;
268         LinphoneOnlineStatus status;
269         struct _LinphoneCore *lc;
270         BuddyInfo *info;
271         char *refkey;
272         bool_t subscribe;
273         bool_t subscribe_active;
274         bool_t inc_subscribe_pending;
275         bool_t commit;
276 };      
277
278
279 typedef struct sip_config
280 {
281         char *contact;
282         char *guessed_contact;
283         MSList *proxies;
284         MSList *deleted_proxies;
285         int inc_timeout;        /*timeout after an un-answered incoming call is rejected*/
286         unsigned int keepalive_period; /* interval in ms between keep alive messages sent to the proxy server*/
287         LCSipTransports transports;
288         bool_t use_info;
289         bool_t use_rfc2833;     /*force RFC2833 to be sent*/
290         bool_t guess_hostname;
291         bool_t loopback_only;
292         bool_t ipv6_enabled;
293         bool_t sdp_200_ack;
294         bool_t register_only_when_network_is_up;
295         bool_t ping_with_options;
296         bool_t auto_net_state_mon;
297 } sip_config_t;
298
299 typedef struct rtp_config
300 {
301         int audio_rtp_port;
302         int video_rtp_port;
303         int audio_jitt_comp;  /*jitter compensation*/
304         int video_jitt_comp;  /*jitter compensation*/
305         int nortp_timeout;
306         bool_t rtp_no_xmit_on_audio_mute;                              
307                               /* stop rtp xmit when audio muted */
308 }rtp_config_t;
309
310
311
312 typedef struct net_config
313 {
314         char *nat_address;
315         char *stun_server;
316         char *relay;
317         int download_bw;
318         int upload_bw;
319         int firewall_policy;
320         int mtu;
321         int down_ptime;
322         bool_t nat_sdp_only;
323 }net_config_t;
324
325
326 typedef struct sound_config
327 {
328         struct _MSSndCard * ring_sndcard;       /* the playback sndcard currently used */
329         struct _MSSndCard * play_sndcard;       /* the playback sndcard currently used */
330         struct _MSSndCard * capt_sndcard; /* the capture sndcard currently used */
331         struct _MSSndCard * lsd_card; /* dummy playback card for Linphone Sound Daemon extension */
332         const char **cards;
333         int latency;    /* latency in samples of the current used sound device */
334         char rec_lev;
335         char play_lev;
336         char ring_lev;
337         char soft_play_lev;
338         char source;
339         char *local_ring;
340         char *remote_ring;
341         char *ringback_tone;
342         bool_t ec;
343         bool_t ea;
344         bool_t agc;
345 } sound_config_t;
346
347 typedef struct codecs_config
348 {
349         MSList *audio_codecs;  /* list of audio codecs in order of preference*/
350         MSList *video_codecs;   /* for later use*/
351 }codecs_config_t;
352
353 typedef struct video_config{
354         struct _MSWebCam *device;
355         const char **cams;
356         MSVideoSize vsize;
357         bool_t capture;
358         bool_t show_local;
359         bool_t display;
360         bool_t selfview; /*during calls*/
361         const char *displaytype;
362 }video_config_t;
363
364 typedef struct ui_config
365 {
366         int is_daemon;
367         int is_applet;
368         unsigned int timer_id;  /* the timer id for registration */
369 }ui_config_t;
370
371
372
373 typedef struct autoreplier_config
374 {
375         int enabled;
376         int after_seconds;              /* accept the call after x seconds*/
377         int max_users;                  /* maximum number of user that can call simultaneously */
378         int max_rec_time;       /* the max time of incoming voice recorded */
379         int max_rec_msg;                /* maximum number of recorded messages */
380         const char *message;            /* the path of the file to be played */
381 }autoreplier_config_t;
382
383
384 struct _LinphoneCore
385 {
386         LinphoneCoreVTable vtable;
387         Sal *sal;
388         LinphoneGlobalState state;
389         struct _LpConfig *config;
390         net_config_t net_conf;
391         sip_config_t sip_conf;
392         rtp_config_t rtp_conf;
393         sound_config_t sound_conf;
394         video_config_t video_conf;
395         codecs_config_t codecs_conf;
396         ui_config_t ui_conf;
397         autoreplier_config_t autoreplier_conf;
398         LinphoneProxyConfig *default_proxy;
399         MSList *friends;
400         MSList *auth_info;
401         struct _RingStream *ringstream;
402         time_t dmfs_playing_start_time;
403         LCCallbackObj preview_finished_cb;
404         LinphoneCall *current_call;   /* the current call */
405         MSList *calls;                          /* all the processed calls */
406         MSList *queued_calls;   /* used by the autoreplier */
407         MSList *call_logs;
408         MSList *chatrooms;
409         int max_call_logs;
410         int missed_calls;
411         VideoPreview *previewstream;
412         struct _MSEventQueue *msevq;
413         RtpTransport *a_rtp,*a_rtcp;
414         RtpTransport *v_rtp,*v_rtcp;
415         MSList *bl_reqs;
416         MSList *subscribers;    /* unknown subscribers */
417         int minutes_away;
418         LinphoneOnlineStatus presence_mode;
419         char *alt_contact;
420         void *data;
421         char *play_file;
422         char *rec_file;
423         time_t prevtime;
424         int audio_bw;
425         LinphoneWaitingCallback wait_cb;
426         void *wait_ctx;
427         unsigned long video_window_id;
428         unsigned long preview_window_id;
429         time_t netup_time; /*time when network went reachable */
430         struct _EcCalibrator *ecc;
431         bool_t use_files;
432         bool_t apply_nat_settings;
433         bool_t initial_subscribes_sent;
434         bool_t bl_refresh;
435         bool_t preview_finished;
436         bool_t auto_net_state_mon;
437         bool_t network_reachable;
438         bool_t use_preview_window;
439         bool_t ringstream_autorelease;
440 };
441
442 bool_t linphone_core_can_we_add_call(LinphoneCore *lc);
443 int linphone_core_add_call( LinphoneCore *lc, LinphoneCall *call);
444 int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call);
445 int linphone_core_set_as_current_call(LinphoneCore *lc, LinphoneCall *call);
446 int linphone_core_get_calls_nb(const LinphoneCore *lc);
447
448 void linphone_core_set_state(LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
449
450 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call);
451 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription **md);
452
453 void linphone_core_update_streams(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription *new_md);
454
455 bool_t linphone_core_is_payload_type_usable_for_bandwidth(LinphoneCore *lc, PayloadType *pt,  int bandwidth_limit);
456
457 #define linphone_core_ready(lc) ((lc)->state!=LinphoneGlobalStartup)
458 void _linphone_core_configure_resolver();
459
460 struct _EcCalibrator{
461         ms_thread_t thread;
462         MSSndCard *play_card,*capt_card;
463         MSFilter *sndread,*det,*rec;
464         MSFilter *play, *gen, *sndwrite,*resampler;
465         MSTicker *ticker;
466         LinphoneEcCalibrationCallback cb;
467         void *cb_data;
468         int recv_count;
469         int sent_count;
470         int64_t acc;
471         int delay;
472         LinphoneEcCalibratorStatus status;
473 };
474
475 typedef struct _EcCalibrator EcCalibrator;
476
477 LinphoneEcCalibratorStatus ec_calibrator_get_status(EcCalibrator *ecc);
478
479 void ec_calibrator_destroy(EcCalibrator *ecc);
480
481 #define HOLD_OFF        (0)
482 #define HOLD_ON         (1)
483
484 #ifndef NB_MAX_CALLS
485 #define NB_MAX_CALLS    (10)
486 #endif
487
488 #endif /* _PRIVATE_H */