]> sjero.net Git - linphone/blob - coreapi/linphonecore_jni.cc
Merge branch 'master' of git.linphone.org:linphone
[linphone] / coreapi / linphonecore_jni.cc
1 /*
2 linphonecore_jni.cc
3 Copyright (C) 2010  Belledonne Communications, Grenoble, France
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18  */
19 #include <jni.h>
20 #ifdef USE_JAVAH
21 #include "linphonecore_jni.h"
22 #endif
23 #include "linphonecore_utils.h"
24 #include <ortp/zrtp.h>
25
26 #ifdef TUNNEL_ENABLED
27 #include "linphone_tunnel.h"
28 #endif
29
30 extern "C" {
31 #include "mediastreamer2/mediastream.h"
32 }
33 #include "mediastreamer2/msjava.h"
34 #include "private.h"
35 #include <cpu-features.h>
36
37 #ifdef ANDROID
38 #include <android/log.h>
39 extern "C" void libmsilbc_init();
40 #ifdef HAVE_X264
41 extern "C" void libmsx264_init();
42 #endif
43 #ifdef HAVE_AMR
44 extern "C" void libmsamr_init();
45 #endif
46 #ifdef HAVE_SILK
47 extern "C" void libmssilk_init();
48 #endif
49 #ifdef HAVE_G729
50 extern "C" void libmsbcg729_init();
51 #endif
52 #endif /*ANDROID*/
53
54 static JavaVM *jvm=0;
55
56 #ifdef ANDROID
57 static void linphone_android_log_handler(OrtpLogLevel lev, const char *fmt, va_list args){
58         int prio;
59         char str[4096];
60         char *current;
61         char *next;
62         switch(lev){
63         case ORTP_DEBUG:        prio = ANDROID_LOG_DEBUG;       break;
64         case ORTP_MESSAGE:      prio = ANDROID_LOG_INFO;        break;
65         case ORTP_WARNING:      prio = ANDROID_LOG_WARN;        break;
66         case ORTP_ERROR:        prio = ANDROID_LOG_ERROR;       break;
67         case ORTP_FATAL:        prio = ANDROID_LOG_FATAL;       break;
68         default:                prio = ANDROID_LOG_DEFAULT;     break;
69         }
70         vsnprintf(str, sizeof(str) - 1, fmt, args);
71         str[sizeof(str) - 1] = '\0';
72         if (strlen(str) < 512) {
73                 __android_log_write(prio, LOG_DOMAIN, str);
74         } else {
75                 current = str;
76                 while ((next = strchr(current, '\n')) != NULL) {
77                         *next = '\0';
78                         __android_log_write(prio, LOG_DOMAIN, current);
79                         current = next + 1;
80                 }
81                 __android_log_write(prio, LOG_DOMAIN, current);
82         }
83 }
84
85 int dumbMethodForAllowingUsageOfCpuFeaturesFromStaticLibMediastream() {
86         return (android_getCpuFamily() == ANDROID_CPU_FAMILY_ARM && (android_getCpuFeatures() & ANDROID_CPU_ARM_FEATURE_NEON) != 0);
87 }
88 #endif /*ANDROID*/
89
90 JNIEXPORT jint JNICALL  JNI_OnLoad(JavaVM *ajvm, void *reserved)
91 {
92 #ifdef ANDROID
93         ms_set_jvm(ajvm);
94 #endif /*ANDROID*/
95         jvm=ajvm;
96         return JNI_VERSION_1_2;
97 }
98
99
100 //LinphoneFactory
101 extern "C" void Java_org_linphone_core_LinphoneCoreFactoryImpl_setDebugMode(JNIEnv*  env
102                 ,jobject  thiz
103                 ,jboolean isDebug) {
104         if (isDebug) {
105                 linphone_core_enable_logs_with_cb(linphone_android_log_handler);
106         } else {
107                 linphone_core_disable_logs();
108         }
109 }
110 // LinphoneCore
111
112 class LinphoneCoreData {
113 public:
114         LinphoneCoreData(JNIEnv*  env, jobject lc,jobject alistener, jobject auserdata) {
115
116                 core = env->NewGlobalRef(lc);
117                 listener = env->NewGlobalRef(alistener);
118                 userdata = auserdata?env->NewGlobalRef(auserdata):0;
119                 memset(&vTable,0,sizeof(vTable));
120                 vTable.show = showInterfaceCb;
121                 vTable.auth_info_requested = authInfoRequested;
122                 vTable.display_status = displayStatusCb;
123                 vTable.display_message = displayMessageCb;
124                 vTable.display_warning = displayMessageCb;
125                 vTable.global_state_changed = globalStateChange;
126                 vTable.registration_state_changed = registrationStateChange;
127                 vTable.call_state_changed = callStateChange;
128                 vTable.call_encryption_changed = callEncryptionChange;
129                 vTable.text_received = text_received;
130                 vTable.message_received = message_received;
131                 vTable.dtmf_received = dtmf_received;
132                 vTable.new_subscription_request = new_subscription_request;
133                 vTable.notify_presence_recv = notify_presence_recv;
134                 vTable.call_stats_updated = callStatsUpdated;
135
136                 listenerClass = (jclass)env->NewGlobalRef(env->GetObjectClass( alistener));
137
138                 /*displayStatus(LinphoneCore lc,String message);*/
139                 displayStatusId = env->GetMethodID(listenerClass,"displayStatus","(Lorg/linphone/core/LinphoneCore;Ljava/lang/String;)V");
140
141                 /*void generalState(LinphoneCore lc,int state); */
142                 globalStateId = env->GetMethodID(listenerClass,"globalState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$GlobalState;Ljava/lang/String;)V");
143                 globalStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$GlobalState"));
144                 globalStateFromIntId = env->GetStaticMethodID(globalStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$GlobalState;");
145
146                 /*registrationState(LinphoneCore lc, LinphoneProxyConfig cfg, LinphoneCore.RegistrationState cstate, String smessage);*/
147                 registrationStateId = env->GetMethodID(listenerClass,"registrationState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneProxyConfig;Lorg/linphone/core/LinphoneCore$RegistrationState;Ljava/lang/String;)V");
148                 registrationStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$RegistrationState"));
149                 registrationStateFromIntId = env->GetStaticMethodID(registrationStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$RegistrationState;");
150
151                 /*callState(LinphoneCore lc, LinphoneCall call, LinphoneCall.State cstate,String message);*/
152                 callStateId = env->GetMethodID(listenerClass,"callState","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;Lorg/linphone/core/LinphoneCall$State;Ljava/lang/String;)V");
153                 callStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCall$State"));
154                 callStateFromIntId = env->GetStaticMethodID(callStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneCall$State;");
155
156                 /*callStatsUpdated(LinphoneCore lc, LinphoneCall call, LinphoneCallStats stats);*/
157                 callStatsUpdatedId = env->GetMethodID(listenerClass, "callStatsUpdated", "(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;Lorg/linphone/core/LinphoneCallStats;)V");
158
159                 chatMessageStateClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatMessage$State"));
160                 chatMessageStateFromIntId = env->GetStaticMethodID(chatMessageStateClass,"fromInt","(I)Lorg/linphone/core/LinphoneChatMessage$State;");
161
162                 /*callEncryption(LinphoneCore lc, LinphoneCall call, boolean encrypted,String auth_token);*/
163                 callEncryptionChangedId=env->GetMethodID(listenerClass,"callEncryptionChanged","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;ZLjava/lang/String;)V");
164
165                 /*void ecCalibrationStatus(LinphoneCore.EcCalibratorStatus status, int delay_ms, Object data);*/
166                 ecCalibrationStatusId = env->GetMethodID(listenerClass,"ecCalibrationStatus","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;ILjava/lang/Object;)V");
167                 ecCalibratorStatusClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCore$EcCalibratorStatus"));
168                 ecCalibratorStatusFromIntId = env->GetStaticMethodID(ecCalibratorStatusClass,"fromInt","(I)Lorg/linphone/core/LinphoneCore$EcCalibratorStatus;");
169
170                 /*void newSubscriptionRequest(LinphoneCore lc, LinphoneFriend lf, String url)*/
171                 newSubscriptionRequestId = env->GetMethodID(listenerClass,"newSubscriptionRequest","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;Ljava/lang/String;)V");
172
173                 /*void notifyPresenceReceived(LinphoneCore lc, LinphoneFriend lf);*/
174                 notifyPresenceReceivedId = env->GetMethodID(listenerClass,"notifyPresenceReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneFriend;)V");
175
176                 /*void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from,String message);*/
177                 textReceivedId = env->GetMethodID(listenerClass,"textReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneChatRoom;Lorg/linphone/core/LinphoneAddress;Ljava/lang/String;)V");
178                 messageReceivedId = env->GetMethodID(listenerClass,"messageReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneChatRoom;Lorg/linphone/core/LinphoneChatMessage;)V");
179                 dtmfReceivedId = env->GetMethodID(listenerClass,"dtmfReceived","(Lorg/linphone/core/LinphoneCore;Lorg/linphone/core/LinphoneCall;I)V");
180
181                 proxyClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneProxyConfigImpl"));
182                 proxyCtrId = env->GetMethodID(proxyClass,"<init>", "(J)V");
183
184                 callClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCallImpl"));
185                 callCtrId = env->GetMethodID(callClass,"<init>", "(J)V");
186
187                 chatMessageClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatMessageImpl"));
188                 if (chatMessageClass) chatMessageCtrId = env->GetMethodID(chatMessageClass,"<init>", "(J)V");
189
190                 chatRoomClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneChatRoomImpl"));
191                 chatRoomCtrId = env->GetMethodID(chatRoomClass,"<init>", "(J)V");
192
193                 friendClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneFriendImpl"));;
194                 friendCtrId =env->GetMethodID(friendClass,"<init>", "(J)V");
195
196                 addressClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneAddressImpl"));
197                 addressCtrId =env->GetMethodID(addressClass,"<init>", "(J)V");
198
199                 callStatsClass = (jclass)env->NewGlobalRef(env->FindClass("org/linphone/core/LinphoneCallStatsImpl"));
200                 callStatsId = env->GetMethodID(callStatsClass, "<init>", "(JJ)V");
201                 callSetAudioStatsId = env->GetMethodID(callClass, "setAudioStats", "(Lorg/linphone/core/LinphoneCallStats;)V");
202                 callSetVideoStatsId = env->GetMethodID(callClass, "setVideoStats", "(Lorg/linphone/core/LinphoneCallStats;)V");
203         }
204
205         ~LinphoneCoreData() {
206                 JNIEnv *env = 0;
207                 jvm->AttachCurrentThread(&env,NULL);
208                 env->DeleteGlobalRef(core);
209                 env->DeleteGlobalRef(listener);
210                 if (userdata) env->DeleteGlobalRef(userdata);
211                 env->DeleteGlobalRef(listenerClass);
212                 env->DeleteGlobalRef(globalStateClass);
213                 env->DeleteGlobalRef(registrationStateClass);
214                 env->DeleteGlobalRef(callStateClass);
215                 env->DeleteGlobalRef(callStatsClass);
216                 env->DeleteGlobalRef(chatMessageStateClass);
217                 env->DeleteGlobalRef(proxyClass);
218                 env->DeleteGlobalRef(callClass);
219                 env->DeleteGlobalRef(chatMessageClass);
220                 env->DeleteGlobalRef(chatRoomClass);
221                 env->DeleteGlobalRef(friendClass);
222
223         }
224         jobject core;
225         jobject listener;
226         jobject userdata;
227
228         jclass listenerClass;
229         jmethodID displayStatusId;
230         jmethodID newSubscriptionRequestId;
231         jmethodID notifyPresenceReceivedId;
232         jmethodID textReceivedId;
233         jmethodID messageReceivedId;
234         jmethodID dtmfReceivedId;
235         jmethodID callStatsUpdatedId;
236
237         jclass globalStateClass;
238         jmethodID globalStateId;
239         jmethodID globalStateFromIntId;
240
241         jclass registrationStateClass;
242         jmethodID registrationStateId;
243         jmethodID registrationStateFromIntId;
244
245         jclass callStateClass;
246         jmethodID callStateId;
247         jmethodID callStateFromIntId;
248
249         jclass callStatsClass;
250         jmethodID callStatsId;
251         jmethodID callSetAudioStatsId;
252         jmethodID callSetVideoStatsId;
253
254         jclass chatMessageStateClass;
255         jmethodID chatMessageStateFromIntId;
256
257         jmethodID callEncryptionChangedId;
258
259         jclass ecCalibratorStatusClass;
260         jmethodID ecCalibrationStatusId;
261         jmethodID ecCalibratorStatusFromIntId;
262
263         jclass proxyClass;
264         jmethodID proxyCtrId;
265
266         jclass callClass;
267         jmethodID callCtrId;
268
269         jclass chatMessageClass;
270         jmethodID chatMessageCtrId;
271
272         jclass chatRoomClass;
273         jmethodID chatRoomCtrId;
274
275         jclass friendClass;
276         jmethodID friendCtrId;
277
278         jclass addressClass;
279         jmethodID addressCtrId;
280
281         LinphoneCoreVTable vTable;
282
283         static void showInterfaceCb(LinphoneCore *lc) {
284
285         }
286         static void byeReceivedCb(LinphoneCore *lc, const char *from) {
287
288         }
289         static void displayStatusCb(LinphoneCore *lc, const char *message) {
290                 JNIEnv *env = 0;
291                 jint result = jvm->AttachCurrentThread(&env,NULL);
292                 if (result != 0) {
293                         ms_error("cannot attach VM\n");
294                         return;
295                 }
296                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
297                 env->CallVoidMethod(lcData->listener,lcData->displayStatusId,lcData->core,message ? env->NewStringUTF(message) : NULL);
298         }
299         static void displayMessageCb(LinphoneCore *lc, const char *message) {
300
301         }
302         static void authInfoRequested(LinphoneCore *lc, const char *realm, const char *username) {
303
304         }
305         static void globalStateChange(LinphoneCore *lc, LinphoneGlobalState gstate,const char* message) {
306                 JNIEnv *env = 0;
307                 jint result = jvm->AttachCurrentThread(&env,NULL);
308                 if (result != 0) {
309                         ms_error("cannot attach VM\n");
310                         return;
311                 }
312                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
313                 env->CallVoidMethod(lcData->listener
314                                                         ,lcData->globalStateId
315                                                         ,lcData->core
316                                                         ,env->CallStaticObjectMethod(lcData->globalStateClass,lcData->globalStateFromIntId,(jint)gstate),
317                                                         message ? env->NewStringUTF(message) : NULL);
318         }
319         static void registrationStateChange(LinphoneCore *lc, LinphoneProxyConfig* proxy,LinphoneRegistrationState state,const char* message) {
320                 JNIEnv *env = 0;
321                 jint result = jvm->AttachCurrentThread(&env,NULL);
322                 if (result != 0) {
323                         ms_error("cannot attach VM\n");
324                         return;
325                 }
326                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
327                 env->CallVoidMethod(lcData->listener
328                                                         ,lcData->registrationStateId
329                                                         ,lcData->core
330                                                         ,env->NewObject(lcData->proxyClass,lcData->proxyCtrId,(jlong)proxy)
331                                                         ,env->CallStaticObjectMethod(lcData->registrationStateClass,lcData->registrationStateFromIntId,(jint)state),
332                                                         message ? env->NewStringUTF(message) : NULL);
333         }
334         jobject getCall(JNIEnv *env , LinphoneCall *call){
335                 jobject jobj=0;
336
337                 if (call!=NULL){
338                         void *up=linphone_call_get_user_pointer(call);
339                         
340                         if (up==NULL){
341                                 jobj=env->NewObject(callClass,callCtrId,(jlong)call);
342                                 jobj=env->NewGlobalRef(jobj);
343                                 linphone_call_set_user_pointer(call,(void*)jobj);
344                                 linphone_call_ref(call);
345                         }else{
346                                 jobj=(jobject)up;
347                         }
348                 }
349                 return jobj;
350         }
351
352         static void callStateChange(LinphoneCore *lc, LinphoneCall* call,LinphoneCallState state,const char* message) {
353                 JNIEnv *env = 0;
354                 jint result = jvm->AttachCurrentThread(&env,NULL);
355                 jobject jcall;
356                 if (result != 0) {
357                         ms_error("cannot attach VM\n");
358                         return;
359                 }
360                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
361                 env->CallVoidMethod(lcData->listener
362                                                         ,lcData->callStateId
363                                                         ,lcData->core
364                                                         ,(jcall=lcData->getCall(env,call))
365                                                         ,env->CallStaticObjectMethod(lcData->callStateClass,lcData->callStateFromIntId,(jint)state),
366                                                         message ? env->NewStringUTF(message) : NULL);
367                 if (state==LinphoneCallReleased){
368                         linphone_call_set_user_pointer(call,NULL);
369                         env->DeleteGlobalRef(jcall);
370                 }
371         }
372         static void callEncryptionChange(LinphoneCore *lc, LinphoneCall* call, bool_t encrypted,const char* authentication_token) {
373                 JNIEnv *env = 0;
374                 jint result = jvm->AttachCurrentThread(&env,NULL);
375                 if (result != 0) {
376                         ms_error("cannot attach VM\n");
377                         return;
378                 }
379                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
380                 env->CallVoidMethod(lcData->listener
381                                                         ,lcData->callEncryptionChangedId
382                                                         ,lcData->core
383                                                         ,lcData->getCall(env,call)
384                                                         ,encrypted
385                                                         ,authentication_token ? env->NewStringUTF(authentication_token) : NULL);
386         }
387         static void notify_presence_recv (LinphoneCore *lc,  LinphoneFriend *my_friend) {
388                 JNIEnv *env = 0;
389                 jint result = jvm->AttachCurrentThread(&env,NULL);
390                 if (result != 0) {
391                         ms_error("cannot attach VM\n");
392                         return;
393                 }
394                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
395                 env->CallVoidMethod(lcData->listener
396                                                         ,lcData->notifyPresenceReceivedId
397                                                         ,lcData->core
398                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend));
399         }
400         static void new_subscription_request (LinphoneCore *lc,  LinphoneFriend *my_friend, const char* url) {
401                 JNIEnv *env = 0;
402                 jint result = jvm->AttachCurrentThread(&env,NULL);
403                 if (result != 0) {
404                         ms_error("cannot attach VM\n");
405                         return;
406                 }
407                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
408                 env->CallVoidMethod(lcData->listener
409                                                         ,lcData->newSubscriptionRequestId
410                                                         ,lcData->core
411                                                         ,env->NewObject(lcData->friendClass,lcData->friendCtrId,(jlong)my_friend)
412                                                         ,url ? env->NewStringUTF(url) : NULL);
413         }
414         static void dtmf_received(LinphoneCore *lc, LinphoneCall *call, int dtmf) {
415                 JNIEnv *env = 0;
416                 jint result = jvm->AttachCurrentThread(&env,NULL);
417                 if (result != 0) {
418                         ms_error("cannot attach VM\n");
419                         return;
420                 }
421                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
422                 env->CallVoidMethod(lcData->listener
423                                                         ,lcData->dtmfReceivedId
424                                                         ,lcData->core
425                                                         ,lcData->getCall(env,call)
426                                                         ,dtmf);
427         }
428         static void text_received(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddress *from, const char *message) {
429                 JNIEnv *env = 0;
430                 jint result = jvm->AttachCurrentThread(&env,NULL);
431                 if (result != 0) {
432                         ms_error("cannot attach VM\n");
433                         return;
434                 }
435                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
436                 env->CallVoidMethod(lcData->listener
437                                                         ,lcData->textReceivedId
438                                                         ,lcData->core
439                                                         ,env->NewObject(lcData->chatRoomClass,lcData->chatRoomCtrId,(jlong)room)
440                                                         ,env->NewObject(lcData->addressClass,lcData->addressCtrId,(jlong)from)
441                                                         ,message ? env->NewStringUTF(message) : NULL);
442         }
443         static void message_received(LinphoneCore *lc, LinphoneChatRoom *room, LinphoneChatMessage *msg) {
444                         JNIEnv *env = 0;
445                         jint result = jvm->AttachCurrentThread(&env,NULL);
446                         if (result != 0) {
447                                 ms_error("cannot attach VM\n");
448                                 return;
449                         }
450                         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
451                         env->CallVoidMethod(lcData->listener
452                                                                 ,lcData->messageReceivedId
453                                                                 ,lcData->core
454                                                                 ,env->NewObject(lcData->chatRoomClass,lcData->chatRoomCtrId,(jlong)room)
455                                                                 ,env->NewObject(lcData->chatMessageClass,lcData->chatMessageCtrId,(jlong)msg));
456                 }
457         static void ecCalibrationStatus(LinphoneCore *lc, LinphoneEcCalibratorStatus status, int delay_ms, void *data) {
458                 JNIEnv *env = 0;
459                 jint result = jvm->AttachCurrentThread(&env,NULL);
460                 if (result != 0) {
461                         ms_error("cannot attach VM\n");
462                         return;
463                 }
464                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
465                 env->CallVoidMethod(lcData->listener
466                                                         ,lcData->ecCalibrationStatusId
467                                                         ,lcData->core
468                                                         ,env->CallStaticObjectMethod(lcData->ecCalibratorStatusClass,lcData->ecCalibratorStatusFromIntId,(jint)status)
469                                                         ,delay_ms
470                                                         ,data ? data : NULL);
471                 if (data != NULL &&status !=LinphoneEcCalibratorInProgress ) {
472                         //final state, releasing global ref
473                         env->DeleteGlobalRef((jobject)data);
474                 }
475
476         }
477         static void callStatsUpdated(LinphoneCore *lc, LinphoneCall* call, const LinphoneCallStats *stats) {
478                 JNIEnv *env = 0;
479                 jobject statsobj;
480                 jobject callobj;
481                 jint result = jvm->AttachCurrentThread(&env,NULL);
482                 if (result != 0) {
483                         ms_error("cannot attach VM\n");
484                         return;
485                 }
486                 LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
487                 statsobj = env->NewObject(lcData->callStatsClass, lcData->callStatsId, (jlong)call, (jlong)stats);
488                 callobj = lcData->getCall(env, call);
489                 if (stats->type == LINPHONE_CALL_STATS_AUDIO)
490                         env->CallVoidMethod(callobj, lcData->callSetAudioStatsId, statsobj);
491                 else
492                         env->CallVoidMethod(callobj, lcData->callSetVideoStatsId, statsobj);
493                 env->CallVoidMethod(lcData->listener, lcData->callStatsUpdatedId, lcData->core, callobj, statsobj);
494         }
495
496
497 };
498 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_newLinphoneCore(JNIEnv*  env
499                 ,jobject  thiz
500                 ,jobject jlistener
501                 ,jstring juserConfig
502                 ,jstring jfactoryConfig
503                 ,jobject  juserdata){
504
505         const char* userConfig = juserConfig?env->GetStringUTFChars(juserConfig, NULL):NULL;
506         const char* factoryConfig = jfactoryConfig?env->GetStringUTFChars(jfactoryConfig, NULL):NULL;
507         LinphoneCoreData* ldata = new LinphoneCoreData(env,thiz,jlistener,juserdata);
508
509 #ifdef HAVE_ILBC
510         libmsilbc_init(); // requires an fpu
511 #endif
512 #ifdef HAVE_X264
513         libmsx264_init();
514 #endif
515 #ifdef HAVE_AMR
516         libmsamr_init();
517 #endif
518 #ifdef HAVE_SILK
519         libmssilk_init();
520 #endif
521 #ifdef HAVE_G729
522         libmsbcg729_init();
523 #endif
524         jlong nativePtr = (jlong)linphone_core_new(     &ldata->vTable
525                         ,userConfig
526                         ,factoryConfig
527                         ,ldata);
528         //clear auth info list
529         linphone_core_clear_all_auth_info((LinphoneCore*) nativePtr);
530         //clear existing proxy config
531         linphone_core_clear_proxy_config((LinphoneCore*) nativePtr);
532
533         if (userConfig) env->ReleaseStringUTFChars(juserConfig, userConfig);
534         if (factoryConfig) env->ReleaseStringUTFChars(jfactoryConfig, factoryConfig);
535         return nativePtr;
536 }
537 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_delete(JNIEnv*  env
538                 ,jobject  thiz
539                 ,jlong lc) {
540         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
541         linphone_core_destroy((LinphoneCore*)lc);
542         delete lcData;
543 }
544
545 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearProxyConfigs(JNIEnv* env, jobject thiz,jlong lc) {
546         linphone_core_clear_proxy_config((LinphoneCore*)lc);
547 }
548
549 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDefaultProxyConfig(  JNIEnv*  env
550                 ,jobject  thiz
551                 ,jlong lc
552                 ,jlong pc) {
553         linphone_core_set_default_proxy((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
554 }
555 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getDefaultProxyConfig( JNIEnv*  env
556                 ,jobject  thiz
557                 ,jlong lc) {
558         LinphoneProxyConfig *config=0;
559         linphone_core_get_default_proxy((LinphoneCore*)lc,&config);
560         return (jlong)config;
561 }
562
563 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_getProxyConfigList(JNIEnv* env, jobject thiz, jlong lc) {
564         const MSList* proxies = linphone_core_get_proxy_config_list((LinphoneCore*)lc);
565         int proxyCount = ms_list_size(proxies);
566         jlongArray jProxies = env->NewLongArray(proxyCount);
567         jlong *jInternalArray = env->GetLongArrayElements(jProxies, NULL);
568
569         for (int i = 0; i < proxyCount; i++ ) {
570                 jInternalArray[i] = (unsigned long) (proxies->data);
571                 proxies = proxies->next;
572         }
573
574         env->ReleaseLongArrayElements(jProxies, jInternalArray, 0);
575
576         return jProxies;
577 }
578
579 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_addProxyConfig( JNIEnv*  env
580                 ,jobject  thiz
581                 ,jobject jproxyCfg
582                 ,jlong lc
583                 ,jlong pc) {
584         LinphoneProxyConfig* proxy = (LinphoneProxyConfig*)pc;
585         linphone_proxy_config_set_user_data(proxy, env->NewGlobalRef(jproxyCfg));
586
587         return (jint)linphone_core_add_proxy_config((LinphoneCore*)lc,(LinphoneProxyConfig*)pc);
588 }
589
590 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearAuthInfos(JNIEnv* env, jobject thiz,jlong lc) {
591         linphone_core_clear_all_auth_info((LinphoneCore*)lc);
592 }
593
594 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_refreshRegisters(JNIEnv* env, jobject thiz,jlong lc) {
595         linphone_core_refresh_registers((LinphoneCore*)lc);
596 }
597
598 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAuthInfo(    JNIEnv*  env
599                 ,jobject  thiz
600                 ,jlong lc
601                 ,jlong pc) {
602         linphone_core_add_auth_info((LinphoneCore*)lc,(LinphoneAuthInfo*)pc);
603 }
604 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_iterate(        JNIEnv*  env
605                 ,jobject  thiz
606                 ,jlong lc) {
607         linphone_core_iterate((LinphoneCore*)lc);
608 }
609 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_invite(      JNIEnv*  env
610                 ,jobject  thiz
611                 ,jlong lc
612                 ,jstring juri) {
613         const char* uri = env->GetStringUTFChars(juri, NULL);
614         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
615         LinphoneCall* lCall = linphone_core_invite((LinphoneCore*)lc,uri);
616         env->ReleaseStringUTFChars(juri, uri);
617         return lcd->getCall(env,lCall);
618 }
619 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddress(       JNIEnv*  env
620                 ,jobject  thiz
621                 ,jlong lc
622                 ,jlong to) {
623         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
624         return lcd->getCall(env, linphone_core_invite_address((LinphoneCore*)lc,(LinphoneAddress*)to));
625 }
626
627 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateCall(  JNIEnv*  env
628                 ,jobject  thiz
629                 ,jlong lc
630                 ,jlong call) {
631         linphone_core_terminate_call((LinphoneCore*)lc,(LinphoneCall*)call);
632 }
633
634 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getRemoteAddress(      JNIEnv*  env
635                 ,jobject  thiz
636                 ,jlong lc) {
637         return (jlong)linphone_core_get_current_call_remote_address((LinphoneCore*)lc);
638 }
639 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInCall(   JNIEnv*  env
640                 ,jobject  thiz
641                 ,jlong lc) {
642
643         return (jboolean)linphone_core_in_call((LinphoneCore*)lc);
644 }
645 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInComingInvitePending(    JNIEnv*  env
646                 ,jobject  thiz
647                 ,jlong lc) {
648
649         return (jboolean)linphone_core_inc_invite_pending((LinphoneCore*)lc);
650 }
651 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCall(     JNIEnv*  env
652                 ,jobject  thiz
653                 ,jlong lc
654                 ,jlong call) {
655
656         linphone_core_accept_call((LinphoneCore*)lc,(LinphoneCall*)call);
657 }
658
659 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCallWithParams(JNIEnv *env,
660                 jobject thiz,
661                 jlong lc,
662                 jlong call,
663                 jlong params){
664         linphone_core_accept_call_with_params((LinphoneCore*)lc,(LinphoneCall*)call, (LinphoneCallParams*)params);
665 }
666
667 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_acceptCallUpdate(JNIEnv *env,
668                 jobject thiz,
669                 jlong lc,
670                 jlong call,
671                 jlong params){
672         linphone_core_accept_call_update((LinphoneCore*)lc,(LinphoneCall*)call, (LinphoneCallParams*)params);
673 }
674
675 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_deferCallUpdate(JNIEnv *env,
676                 jobject thiz,
677                 jlong lc,
678                 jlong call){
679         linphone_core_defer_call_update((LinphoneCore*)lc,(LinphoneCall*)call);
680 }
681
682 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getCallLog(    JNIEnv*  env
683                 ,jobject  thiz
684                 ,jlong lc
685                 ,jint position) {
686                 return (jlong)ms_list_nth_data(linphone_core_get_call_logs((LinphoneCore*)lc),position);
687 }
688 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getNumberOfCallLogs(    JNIEnv*  env
689                 ,jobject  thiz
690                 ,jlong lc) {
691                 return (jint)ms_list_size(linphone_core_get_call_logs((LinphoneCore*)lc));
692 }
693 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setNetworkStateReachable(       JNIEnv*  env
694                 ,jobject  thiz
695                 ,jlong lc
696                 ,jboolean isReachable) {
697                 linphone_core_set_network_reachable((LinphoneCore*)lc,isReachable);
698 }
699
700 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isNetworkStateReachable(    JNIEnv*  env
701                 ,jobject  thiz
702                 ,jlong lc) {
703                 return (jboolean)linphone_core_is_network_reachable((LinphoneCore*)lc);
704 }
705
706 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPlaybackGain(        JNIEnv*  env
707                 ,jobject  thiz
708                 ,jlong lc
709                 ,jfloat gain) {
710                 linphone_core_set_playback_gain_db((LinphoneCore*)lc,gain);
711 }
712
713 extern "C" jfloat Java_org_linphone_core_LinphoneCoreImpl_getPlaybackGain(      JNIEnv*  env
714                 ,jobject  thiz
715                 ,jlong lc) {
716                 return (jfloat)linphone_core_get_playback_gain_db((LinphoneCore*)lc);
717 }
718
719 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_muteMic(        JNIEnv*  env
720                 ,jobject  thiz
721                 ,jlong lc
722                 ,jboolean isMuted) {
723                 linphone_core_mute_mic((LinphoneCore*)lc,isMuted);
724 }
725
726 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_interpretUrl(  JNIEnv*  env
727                 ,jobject  thiz
728                 ,jlong lc
729                 ,jstring jurl) {
730         const char* url = env->GetStringUTFChars(jurl, NULL);
731         jlong result = (jlong)linphone_core_interpret_url((LinphoneCore*)lc,url);
732         env->ReleaseStringUTFChars(jurl, url);
733         return result;
734 }
735 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_sendDtmf(       JNIEnv*  env
736                 ,jobject  thiz
737                 ,jlong lc
738                 ,jchar dtmf) {
739         linphone_core_send_dtmf((LinphoneCore*)lc,dtmf);
740 }
741 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_playDtmf(       JNIEnv*  env
742                 ,jobject  thiz
743                 ,jlong lc
744                 ,jchar dtmf
745                 ,jint duration) {
746         linphone_core_play_dtmf((LinphoneCore*)lc,dtmf,duration);
747 }
748 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_stopDtmf(       JNIEnv*  env
749                 ,jobject  thiz
750                 ,jlong lc) {
751         linphone_core_stop_dtmf((LinphoneCore*)lc);
752 }
753
754 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMissedCallsCount(JNIEnv*  env
755                                                                                                                                                 ,jobject  thiz
756                                                                                                                                                 ,jlong lc) {
757         return (jint)linphone_core_get_missed_calls_count((LinphoneCore*)lc);
758 }
759
760 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_resetMissedCallsCount(JNIEnv*  env
761                                                                                                                                                 ,jobject  thiz
762                                                                                                                                                 ,jlong lc) {
763         linphone_core_reset_missed_calls_count((LinphoneCore*)lc);
764 }
765
766 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeCallLog(JNIEnv*  env
767                                                                                                                                                 ,jobject  thiz
768                                                                                                                                                 ,jlong lc, jlong log) {
769         linphone_core_remove_call_log((LinphoneCore*)lc, (LinphoneCallLog*) log);
770 }
771
772 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_clearCallLogs(JNIEnv*  env
773                                                                                                                                                 ,jobject  thiz
774                                                                                                                                                 ,jlong lc) {
775         linphone_core_clear_call_logs((LinphoneCore*)lc);
776 }
777 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isMicMuted( JNIEnv*  env
778                 ,jobject  thiz
779                 ,jlong lc) {
780         return (jboolean)linphone_core_is_mic_muted((LinphoneCore*)lc);
781 }
782 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_findPayloadType(JNIEnv*  env
783                                                                                                                                                         ,jobject  thiz
784                                                                                                                                                         ,jlong lc
785                                                                                                                                                         ,jstring jmime
786                                                                                                                                                         ,jint rate
787                                                                                                                                                         ,jint channels) {
788         const char* mime = env->GetStringUTFChars(jmime, NULL);
789         jlong result = (jlong)linphone_core_find_payload_type((LinphoneCore*)lc,mime,rate,channels);
790         env->ReleaseStringUTFChars(jmime, mime);
791         return result;
792 }
793 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listVideoPayloadTypes(JNIEnv*  env
794                                                                                                                                                         ,jobject  thiz
795                                                                                                                                                         ,jlong lc) {
796         const MSList* codecs = linphone_core_get_video_codecs((LinphoneCore*)lc);
797         int codecsCount = ms_list_size(codecs);
798         jlongArray jCodecs = env->NewLongArray(codecsCount);
799         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
800
801         for (int i = 0; i < codecsCount; i++ ) {
802                 jInternalArray[i] = (unsigned long) (codecs->data);
803                 codecs = codecs->next;
804         }
805
806         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
807
808         return jCodecs;
809 }
810
811 extern "C" jlongArray Java_org_linphone_core_LinphoneCoreImpl_listAudioPayloadTypes(JNIEnv*  env
812                                                                                                                                                         ,jobject  thiz
813                                                                                                                                                         ,jlong lc) {
814         const MSList* codecs = linphone_core_get_audio_codecs((LinphoneCore*)lc);
815         int codecsCount = ms_list_size(codecs);
816         jlongArray jCodecs = env->NewLongArray(codecsCount);
817         jlong *jInternalArray = env->GetLongArrayElements(jCodecs, NULL);
818
819         for (int i = 0; i < codecsCount; i++ ) {
820                 jInternalArray[i] = (unsigned long) (codecs->data);
821                 codecs = codecs->next;
822         }
823
824         env->ReleaseLongArrayElements(jCodecs, jInternalArray, 0);
825
826         return jCodecs;
827 }
828
829 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_enablePayloadType(JNIEnv*  env
830                                                                                                                                                         ,jobject  thiz
831                                                                                                                                                         ,jlong lc
832                                                                                                                                                         ,jlong pt
833                                                                                                                                                         ,jboolean enable) {
834         return (jint)linphone_core_enable_payload_type((LinphoneCore*)lc,(PayloadType*)pt,enable);
835 }
836 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoCancellation(JNIEnv*  env
837                                                                                                                                                         ,jobject  thiz
838                                                                                                                                                         ,jlong lc
839                                                                                                                                                         ,jboolean enable) {
840         linphone_core_enable_echo_cancellation((LinphoneCore*)lc,enable);
841 }
842 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableEchoLimiter(JNIEnv*  env
843                                                                                                                                                         ,jobject  thiz
844                                                                                                                                                         ,jlong lc
845                                                                                                                                                         ,jboolean enable) {
846         linphone_core_enable_echo_limiter((LinphoneCore*)lc,enable);
847 }
848 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoCancellationEnabled(JNIEnv*  env
849                                                                                                                                                         ,jobject  thiz
850                                                                                                                                                         ,jlong lc
851                                                                                                                                                         ) {
852         return (jboolean)linphone_core_echo_cancellation_enabled((LinphoneCore*)lc);
853 }
854
855 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isEchoLimiterEnabled(JNIEnv*  env
856                                                                                                                                                         ,jobject  thiz
857                                                                                                                                                         ,jlong lc
858                                                                                                                                                         ) {
859         return (jboolean)linphone_core_echo_limiter_enabled((LinphoneCore*)lc);
860 }
861
862 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCurrentCall(JNIEnv*  env
863                                                                                                                                                         ,jobject  thiz
864                                                                                                                                                         ,jlong lc
865                                                                                                                                                         ) {
866         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
867         
868         return lcdata->getCall(env,linphone_core_get_current_call((LinphoneCore*)lc));
869 }
870 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addFriend(JNIEnv*  env
871                                                                                                                                                         ,jobject  thiz
872                                                                                                                                                         ,jlong lc
873                                                                                                                                                         ,jlong aFriend
874                                                                                                                                                         ) {
875         linphone_core_add_friend((LinphoneCore*)lc,(LinphoneFriend*)aFriend);
876 }
877 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPresenceInfo(JNIEnv*  env
878                                                                                                                                                         ,jobject  thiz
879                                                                                                                                                         ,jlong lc
880                                                                                                                                                         ,jint minute_away
881                                                                                                                                                         ,jstring jalternative_contact
882                                                                                                                                                         ,jint status) {
883         const char* alternative_contact = jalternative_contact?env->GetStringUTFChars(jalternative_contact, NULL):NULL;
884         linphone_core_set_presence_info((LinphoneCore*)lc,minute_away,alternative_contact,(LinphoneOnlineStatus)status);
885         if (alternative_contact) env->ReleaseStringUTFChars(jalternative_contact, alternative_contact);
886 }
887
888 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createChatRoom(JNIEnv*  env
889                                                                                                                                                         ,jobject  thiz
890                                                                                                                                                         ,jlong lc
891                                                                                                                                                         ,jstring jto) {
892
893         const char* to = env->GetStringUTFChars(jto, NULL);
894         LinphoneChatRoom* lResult = linphone_core_create_chat_room((LinphoneCore*)lc,to);
895         env->ReleaseStringUTFChars(jto, to);
896         return (jlong)lResult;
897 }
898
899 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableVideo(JNIEnv*  env
900                                                                                                                                                         ,jobject  thiz
901                                                                                                                                                         ,jlong lc
902                                                                                                                                                         ,jboolean vcap_enabled
903                                                                                                                                                         ,jboolean display_enabled) {
904         linphone_core_enable_video((LinphoneCore*)lc, vcap_enabled,display_enabled);
905
906 }
907 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isVideoEnabled(JNIEnv*  env
908                                                                                                                                                         ,jobject  thiz
909                                                                                                                                                         ,jlong lc) {
910         return (jboolean)linphone_core_video_enabled((LinphoneCore*)lc);
911 }
912 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPlayFile(JNIEnv*  env
913                                                                                                                                                         ,jobject  thiz
914                                                                                                                                                         ,jlong lc
915                                                                                                                                                         ,jstring jpath) {
916         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
917         linphone_core_set_play_file((LinphoneCore*)lc,path);
918         if (path) env->ReleaseStringUTFChars(jpath, path);
919 }
920 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRing(JNIEnv*  env
921                                                                                                                                                         ,jobject  thiz
922                                                                                                                                                         ,jlong lc
923                                                                                                                                                         ,jstring jpath) {
924         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
925         linphone_core_set_ring((LinphoneCore*)lc,path);
926         if (path) env->ReleaseStringUTFChars(jpath, path);
927 }
928 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getRing(JNIEnv*  env
929                                                                                                                                                         ,jobject  thiz
930                                                                                                                                                         ,jlong lc
931                                                                                                                                                         ) {
932         const char* path = linphone_core_get_ring((LinphoneCore*)lc);
933         if (path) {
934                 return env->NewStringUTF(path);
935         } else {
936                 return NULL;
937         }
938 }
939 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setRootCA(JNIEnv*  env
940                                                                                                                                                         ,jobject  thiz
941                                                                                                                                                         ,jlong lc
942                                                                                                                                                         ,jstring jpath) {
943         const char* path = jpath?env->GetStringUTFChars(jpath, NULL):NULL;
944         linphone_core_set_root_ca((LinphoneCore*)lc,path);
945         if (path) env->ReleaseStringUTFChars(jpath, path);
946 }
947 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableKeepAlive(JNIEnv*  env
948                                                                                                                                 ,jobject  thiz
949                                                                                                                                 ,jlong lc
950                                                                                                                                 ,jboolean enable) {
951         linphone_core_enable_keep_alive((LinphoneCore*)lc,enable);
952
953 }
954 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isKeepAliveEnabled(JNIEnv*  env
955                                                                                                                                 ,jobject  thiz
956                                                                                                                                 ,jlong lc) {
957         return (jboolean)linphone_core_keep_alive_enabled((LinphoneCore*)lc);
958
959 }
960 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_startEchoCalibration(JNIEnv*  env
961                                                                                                                                                                 ,jobject  thiz
962                                                                                                                                                                 ,jlong lc
963                                                                                                                                                                 ,jobject data) {
964         return (jint)linphone_core_start_echo_calibration((LinphoneCore*)lc
965                                                                                                         , LinphoneCoreData::ecCalibrationStatus
966                                                                                                         , data?env->NewGlobalRef(data):NULL);
967
968 }
969
970 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMediaEncryption(JNIEnv*  env
971                                                                                                                                                         ,jobject  thiz
972                                                                                                                                                         ,jlong lc
973                                                                                                                                                         ) {
974         return (jint)linphone_core_get_media_encryption((LinphoneCore*)lc);
975 }
976
977 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryption(JNIEnv*  env
978                                                                                                                                                         ,jobject  thiz
979                                                                                                                                                         ,jlong lc
980                                                                                                                                                         ,jint menc) {
981         linphone_core_set_media_encryption((LinphoneCore*)lc,(LinphoneMediaEncryption)menc);
982 }
983
984 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_mediaEncryptionSupported(JNIEnv*  env
985                                                                                                                                                         ,jobject  thiz
986                                                                                                                                                         ,jlong lc, jint menc
987                                                                                                                                                         ) {
988         return (jboolean)linphone_core_media_encryption_supported((LinphoneCore*)lc,(LinphoneMediaEncryption)menc);
989 }
990
991 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isMediaEncryptionMandatory(JNIEnv*  env
992                                                                                                                                                         ,jobject  thiz
993                                                                                                                                                         ,jlong lc
994                                                                                                                                                         ) {
995         return (jboolean)linphone_core_is_media_encryption_mandatory((LinphoneCore*)lc);
996 }
997
998 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMediaEncryptionMandatory(JNIEnv*  env
999                                                                                                                                                         ,jobject  thiz
1000                                                                                                                                                         ,jlong lc
1001                                                                                                                                                         , jboolean yesno
1002                                                                                                                                                         ) {
1003         linphone_core_set_media_encryption_mandatory((LinphoneCore*)lc, yesno);
1004 }
1005
1006 //ProxyConfig
1007
1008 extern "C" jlong Java_org_linphone_core_LinphoneProxyConfigImpl_newLinphoneProxyConfig(JNIEnv*  env,jobject  thiz) {
1009         LinphoneProxyConfig* proxy = linphone_proxy_config_new();
1010         return  (jlong) proxy;
1011 }
1012
1013 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_delete(JNIEnv*  env,jobject  thiz,jlong ptr) {
1014         linphone_proxy_config_destroy((LinphoneProxyConfig*)ptr);
1015 }
1016 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jidentity) {
1017         const char* identity = env->GetStringUTFChars(jidentity, NULL);
1018         linphone_proxy_config_set_identity((LinphoneProxyConfig*)proxyCfg,identity);
1019         env->ReleaseStringUTFChars(jidentity, identity);
1020 }
1021 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getIdentity(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1022         const char* identity = linphone_proxy_config_get_identity((LinphoneProxyConfig*)proxyCfg);
1023         if (identity) {
1024                 return env->NewStringUTF(identity);
1025         } else {
1026                 return NULL;
1027         }
1028 }
1029 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_setProxy(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jproxy) {
1030         const char* proxy = env->GetStringUTFChars(jproxy, NULL);
1031         jint err=linphone_proxy_config_set_server_addr((LinphoneProxyConfig*)proxyCfg,proxy);
1032         env->ReleaseStringUTFChars(jproxy, proxy);
1033         return err;
1034 }
1035 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getProxy(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1036         const char* proxy = linphone_proxy_config_get_addr((LinphoneProxyConfig*)proxyCfg);
1037         if (proxy) {
1038                 return env->NewStringUTF(proxy);
1039         } else {
1040                 return NULL;
1041         }
1042 }
1043 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setContactParameters(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jparams) {
1044         const char* params = env->GetStringUTFChars(jparams, NULL);
1045         linphone_proxy_config_set_contact_parameters((LinphoneProxyConfig*)proxyCfg, params);
1046         env->ReleaseStringUTFChars(jparams, params);
1047 }
1048 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_setRoute(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jroute) {
1049         if (jroute != NULL) {
1050                 const char* route = env->GetStringUTFChars(jroute, NULL);
1051                 jint err=linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,route);
1052                 env->ReleaseStringUTFChars(jroute, route);
1053                 return err;
1054         } else {
1055                 return (jint)linphone_proxy_config_set_route((LinphoneProxyConfig*)proxyCfg,NULL);
1056         }
1057 }
1058 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getRoute(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1059         const char* route = linphone_proxy_config_get_route((LinphoneProxyConfig*)proxyCfg);
1060         if (route) {
1061                 return env->NewStringUTF(route);
1062         } else {
1063                 return NULL;
1064         }
1065 }
1066
1067 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enableRegister(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean enableRegister) {
1068         linphone_proxy_config_enable_register((LinphoneProxyConfig*)proxyCfg,enableRegister);
1069 }
1070 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegistered(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1071         return (jboolean)linphone_proxy_config_is_registered((LinphoneProxyConfig*)proxyCfg);
1072 }
1073 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_isRegisterEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1074         return (jboolean)linphone_proxy_config_register_enabled((LinphoneProxyConfig*)proxyCfg);
1075 }
1076 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_edit(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1077         linphone_proxy_config_edit((LinphoneProxyConfig*)proxyCfg);
1078 }
1079 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_done(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1080         linphone_proxy_config_done((LinphoneProxyConfig*)proxyCfg);
1081 }
1082 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_normalizePhoneNumber(JNIEnv* env,jobject thiz,jlong proxyCfg,jstring jnumber) {
1083         if (jnumber == 0) {
1084                 ms_error("cannot normalized null number");
1085         }
1086         const char* number = env->GetStringUTFChars(jnumber, NULL);
1087         int len = env->GetStringLength(jnumber);
1088         if (len == 0) {
1089                 ms_warning("cannot normalize empty number");
1090                 return jnumber;
1091         }
1092         char targetBuff[2*len];// returned number can be greater than origin (specially in case of prefix insertion
1093         linphone_proxy_config_normalize_number((LinphoneProxyConfig*)proxyCfg,number,targetBuff,sizeof(targetBuff));
1094         jstring normalizedNumber = env->NewStringUTF(targetBuff);
1095         env->ReleaseStringUTFChars(jnumber, number);
1096         return normalizedNumber;
1097 }
1098 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_lookupCCCFromIso(JNIEnv* env, jobject thiz, jlong proxyCfg, jstring jiso) {
1099         const char* iso = env->GetStringUTFChars(jiso, NULL);
1100         int prefix = linphone_dial_plan_lookup_ccc_from_iso(iso);
1101         env->ReleaseStringUTFChars(jiso, iso);
1102         return (jint) prefix;
1103 }
1104 extern "C" jstring Java_org_linphone_core_LinphoneProxyConfigImpl_getDomain(JNIEnv* env
1105                                                                                                                                                         ,jobject thiz
1106                                                                                                                                                         ,jlong proxyCfg) {
1107         const char* domain = linphone_proxy_config_get_domain((LinphoneProxyConfig*)proxyCfg);
1108         if (domain) {
1109                 return env->NewStringUTF(domain);
1110         } else {
1111                 return NULL;
1112         }
1113 }
1114 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialEscapePlus(JNIEnv* env,jobject thiz,jlong proxyCfg,jboolean value) {
1115         linphone_proxy_config_set_dial_escape_plus((LinphoneProxyConfig*)proxyCfg,value);
1116 }
1117
1118 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setDialPrefix(JNIEnv* env
1119                                                                                                                                         ,jobject thiz
1120                                                                                                                                         ,jlong proxyCfg
1121                                                                                                                                         ,jstring jprefix) {
1122         const char* prefix = env->GetStringUTFChars(jprefix, NULL);
1123         linphone_proxy_config_set_dial_prefix((LinphoneProxyConfig*)proxyCfg,prefix);
1124         env->ReleaseStringUTFChars(jprefix, prefix);
1125 }
1126 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_enablePublish(JNIEnv* env
1127                                                                                                                                                                 ,jobject thiz
1128                                                                                                                                                                 ,jlong proxyCfg
1129                                                                                                                                                                 ,jboolean val) {
1130         linphone_proxy_config_enable_publish((LinphoneProxyConfig*)proxyCfg,val);
1131 }
1132 extern "C" jboolean Java_org_linphone_core_LinphoneProxyConfigImpl_publishEnabled(JNIEnv* env,jobject thiz,jlong proxyCfg) {
1133         return (jboolean)linphone_proxy_config_publish_enabled((LinphoneProxyConfig*)proxyCfg);
1134 }
1135
1136 //Auth Info
1137
1138 extern "C" jlong Java_org_linphone_core_LinphoneAuthInfoImpl_newLinphoneAuthInfo(JNIEnv* env
1139                 , jobject thiz
1140                 , jstring jusername
1141                 , jstring juserid
1142                 , jstring jpassword
1143                 , jstring jha1
1144                 , jstring jrealm) {
1145
1146         const char* username = env->GetStringUTFChars(jusername, NULL);
1147         const char* userid = env->GetStringUTFChars(juserid, NULL);
1148         const char* password = env->GetStringUTFChars(jpassword, NULL);
1149         const char* ha1 = env->GetStringUTFChars(jha1, NULL);
1150         const char* realm = env->GetStringUTFChars(jrealm, NULL);
1151         jlong auth = (jlong)linphone_auth_info_new(username,userid,password,ha1,realm);
1152
1153         env->ReleaseStringUTFChars(jusername, username);
1154         env->ReleaseStringUTFChars(juserid, userid);
1155         env->ReleaseStringUTFChars(jpassword, password);
1156         env->ReleaseStringUTFChars(jha1, ha1);
1157         env->ReleaseStringUTFChars(jrealm, realm);
1158         return auth;
1159
1160 }
1161 extern "C" void Java_org_linphone_core_LinphoneAuthInfoImpl_delete(JNIEnv* env
1162                 , jobject thiz
1163                 , jlong ptr) {
1164         linphone_auth_info_destroy((LinphoneAuthInfo*)ptr);
1165 }
1166
1167 //LinphoneAddress
1168
1169 extern "C" jlong Java_org_linphone_core_LinphoneAddressImpl_newLinphoneAddressImpl(JNIEnv*  env
1170                                                                                                                                                                         ,jobject  thiz
1171                                                                                                                                                                         ,jstring juri
1172                                                                                                                                                                         ,jstring jdisplayName) {
1173         const char* uri = env->GetStringUTFChars(juri, NULL);
1174         LinphoneAddress* address = linphone_address_new(uri);
1175         if (jdisplayName && address) {
1176                 const char* displayName = env->GetStringUTFChars(jdisplayName, NULL);
1177                 linphone_address_set_display_name(address,displayName);
1178                 env->ReleaseStringUTFChars(jdisplayName, displayName);
1179         }
1180         env->ReleaseStringUTFChars(juri, uri);
1181
1182         return  (jlong) address;
1183 }
1184 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_delete(JNIEnv*  env
1185                                                                                                                                                 ,jobject  thiz
1186                                                                                                                                                 ,jlong ptr) {
1187         linphone_address_destroy((LinphoneAddress*)ptr);
1188 }
1189
1190 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDisplayName(JNIEnv*  env
1191                                                                                                                                                 ,jobject  thiz
1192                                                                                                                                                 ,jlong ptr) {
1193         const char* displayName = linphone_address_get_display_name((LinphoneAddress*)ptr);
1194         if (displayName) {
1195                 return env->NewStringUTF(displayName);
1196         } else {
1197                 return NULL;
1198         }
1199 }
1200 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getUserName(JNIEnv*  env
1201                                                                                                                                                 ,jobject  thiz
1202                                                                                                                                                 ,jlong ptr) {
1203         const char* userName = linphone_address_get_username((LinphoneAddress*)ptr);
1204         if (userName) {
1205                 return env->NewStringUTF(userName);
1206         } else {
1207                 return NULL;
1208         }
1209 }
1210 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*  env
1211                                                                                                                                                 ,jobject  thiz
1212                                                                                                                                                 ,jlong ptr) {
1213         const char* domain = linphone_address_get_domain((LinphoneAddress*)ptr);
1214         if (domain) {
1215                 return env->NewStringUTF(domain);
1216         } else {
1217                 return NULL;
1218         }
1219 }
1220
1221 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv*  env
1222                                                                                                                                                 ,jobject  thiz
1223                                                                                                                                                 ,jlong ptr) {
1224         char* uri = linphone_address_as_string((LinphoneAddress*)ptr);
1225         jstring juri =env->NewStringUTF(uri);
1226         ms_free(uri);
1227         return juri;
1228 }
1229 extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toUri(JNIEnv*  env
1230                                                                                                                                                 ,jobject  thiz
1231                                                                                                                                                 ,jlong ptr) {
1232         char* uri = linphone_address_as_string_uri_only((LinphoneAddress*)ptr);
1233         jstring juri =env->NewStringUTF(uri);
1234         ms_free(uri);
1235         return juri;
1236 }
1237 extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDisplayName(JNIEnv*  env
1238                                                                                                                                                 ,jobject  thiz
1239                                                                                                                                                 ,jlong address
1240                                                                                                                                                 ,jstring jdisplayName) {
1241         const char* displayName = jdisplayName!= NULL?env->GetStringUTFChars(jdisplayName, NULL):NULL;
1242         linphone_address_set_display_name((LinphoneAddress*)address,displayName);
1243         if (displayName != NULL) env->ReleaseStringUTFChars(jdisplayName, displayName);
1244 }
1245
1246
1247 //CallLog
1248 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getFrom(JNIEnv*  env
1249                                                                                                                                                 ,jobject  thiz
1250                                                                                                                                                 ,jlong ptr) {
1251         return (jlong)((LinphoneCallLog*)ptr)->from;
1252 }
1253 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getStatus(JNIEnv*  env
1254                                                                                                                                                 ,jobject  thiz
1255                                                                                                                                                 ,jlong ptr) {
1256         return (jint)((LinphoneCallLog*)ptr)->status;
1257 }
1258 extern "C" jlong Java_org_linphone_core_LinphoneCallLogImpl_getTo(JNIEnv*  env
1259                                                                                                                                                 ,jobject  thiz
1260                                                                                                                                                 ,jlong ptr) {
1261         return (jlong)((LinphoneCallLog*)ptr)->to;
1262 }
1263 extern "C" jboolean Java_org_linphone_core_LinphoneCallLogImpl_isIncoming(JNIEnv*  env
1264                                                                                                                                                 ,jobject  thiz
1265                                                                                                                                                 ,jlong ptr) {
1266         return ((LinphoneCallLog*)ptr)->dir==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1267 }
1268 extern "C" jstring Java_org_linphone_core_LinphoneCallLogImpl_getStartDate(JNIEnv*  env
1269                                                                                                                                                 ,jobject  thiz
1270                                                                                                                                                 ,jlong ptr) {
1271         jstring jvalue =env->NewStringUTF(((LinphoneCallLog*)ptr)->start_date);
1272         return jvalue;
1273 }
1274 extern "C" jint Java_org_linphone_core_LinphoneCallLogImpl_getCallDuration(JNIEnv*  env
1275                                                                                                                                                 ,jobject  thiz
1276                                                                                                                                                 ,jlong ptr) {
1277         return (jint)((LinphoneCallLog*)ptr)->duration;
1278 }
1279
1280 /* CallStats */
1281 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getMediaType(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1282         return (jint)((LinphoneCallStats *)stats_ptr)->type;
1283 }
1284 extern "C" jint Java_org_linphone_core_LinphoneCallStatsImpl_getIceState(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1285         return (jint)((LinphoneCallStats *)stats_ptr)->ice_state;
1286 }
1287 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getDownloadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1288         return (jfloat)((LinphoneCallStats *)stats_ptr)->download_bandwidth;
1289 }
1290 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getUploadBandwidth(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1291         return (jfloat)((LinphoneCallStats *)stats_ptr)->upload_bandwidth;
1292 }
1293 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1294         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1295         const report_block_t *srb = NULL;
1296
1297         if (!stats || !stats->sent_rtcp)
1298                 return (jfloat)0.0;
1299         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1300         if (stats->sent_rtcp->b_cont != NULL)
1301                 msgpullup(stats->sent_rtcp, -1);
1302         if (rtcp_is_SR(stats->sent_rtcp))
1303                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1304         else if (rtcp_is_RR(stats->sent_rtcp))
1305                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1306         if (!srb)
1307                 return (jfloat)0.0;
1308         return (jfloat)(100.0 * report_block_get_fraction_lost(srb) / 256.0);
1309 }
1310 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverLossRate(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1311         const LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1312         const report_block_t *rrb = NULL;
1313
1314         if (!stats || !stats->received_rtcp)
1315                 return (jfloat)0.0;
1316         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1317         if (stats->received_rtcp->b_cont != NULL)
1318                 msgpullup(stats->received_rtcp, -1);
1319         if (rtcp_is_RR(stats->received_rtcp))
1320                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1321         else if (rtcp_is_SR(stats->received_rtcp))
1322                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1323         if (!rrb)
1324                 return (jfloat)0.0;
1325         return (jfloat)(100.0 * report_block_get_fraction_lost(rrb) / 256.0);
1326 }
1327 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getSenderInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1328         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1329         const LinphoneCall *call = (LinphoneCall *)call_ptr;
1330         const LinphoneCallParams *params;
1331         const PayloadType *pt;
1332         const report_block_t *srb = NULL;
1333
1334         if (!stats || !call || !stats->sent_rtcp)
1335                 return (jfloat)0.0;
1336         params = linphone_call_get_current_params(call);
1337         if (!params)
1338                 return (jfloat)0.0;
1339         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1340         if (stats->sent_rtcp->b_cont != NULL)
1341                 msgpullup(stats->sent_rtcp, -1);
1342         if (rtcp_is_SR(stats->sent_rtcp))
1343                 srb = rtcp_SR_get_report_block(stats->sent_rtcp, 0);
1344         else if (rtcp_is_RR(stats->sent_rtcp))
1345                 srb = rtcp_RR_get_report_block(stats->sent_rtcp, 0);
1346         if (!srb)
1347                 return (jfloat)0.0;
1348         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1349                 pt = linphone_call_params_get_used_audio_codec(params);
1350         else
1351                 pt = linphone_call_params_get_used_video_codec(params);
1352         return (jfloat)((float)report_block_get_interarrival_jitter(srb) / (float)pt->clock_rate);
1353 }
1354 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getReceiverInterarrivalJitter(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1355         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1356         const LinphoneCall *call = (LinphoneCall *)call_ptr;
1357         const LinphoneCallParams *params;
1358         const PayloadType *pt;
1359         const report_block_t *rrb = NULL;
1360
1361         if (!stats || !call || !stats->received_rtcp)
1362                 return (jfloat)0.0;
1363         params = linphone_call_get_current_params(call);
1364         if (!params)
1365                 return (jfloat)0.0;
1366         /* Perform msgpullup() to prevent crashes in rtcp_is_SR() or rtcp_is_RR() if the RTCP packet is composed of several mblk_t structure */
1367         if (stats->received_rtcp->b_cont != NULL)
1368                 msgpullup(stats->received_rtcp, -1);
1369         if (rtcp_is_SR(stats->received_rtcp))
1370                 rrb = rtcp_SR_get_report_block(stats->received_rtcp, 0);
1371         else if (rtcp_is_RR(stats->received_rtcp))
1372                 rrb = rtcp_RR_get_report_block(stats->received_rtcp, 0);
1373         if (!rrb)
1374                 return (jfloat)0.0;
1375         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1376                 pt = linphone_call_params_get_used_audio_codec(params);
1377         else
1378                 pt = linphone_call_params_get_used_video_codec(params);
1379         return (jfloat)((float)report_block_get_interarrival_jitter(rrb) / (float)pt->clock_rate);
1380 }
1381 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getRoundTripDelay(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1382         return (jfloat)((LinphoneCallStats *)stats_ptr)->round_trip_delay;
1383 }
1384 extern "C" jlong Java_org_linphone_core_LinphoneCallStatsImpl_getLatePacketsCumulativeNumber(JNIEnv *env, jobject thiz, jlong stats_ptr, jlong call_ptr) {
1385         LinphoneCallStats *stats = (LinphoneCallStats *)stats_ptr;
1386         LinphoneCall *call = (LinphoneCall *)call_ptr;
1387         rtp_stats_t rtp_stats;
1388
1389         if (!stats || !call)
1390                 return (jlong)0;
1391         memset(&rtp_stats, 0, sizeof(rtp_stats));
1392         if (stats->type == LINPHONE_CALL_STATS_AUDIO)
1393                 audio_stream_get_local_rtp_stats(call->audiostream, &rtp_stats);
1394 #ifdef VIDEO_ENABLED
1395         else
1396                 video_stream_get_local_rtp_stats(call->videostream, &rtp_stats);
1397 #endif
1398         return (jlong)rtp_stats.outoftime;
1399 }
1400 extern "C" jfloat Java_org_linphone_core_LinphoneCallStatsImpl_getJitterBufferSize(JNIEnv *env, jobject thiz, jlong stats_ptr) {
1401         return (jfloat)((LinphoneCallStats *)stats_ptr)->jitter_stats.jitter_buffer_size_ms;
1402 }
1403
1404 /*payloadType*/
1405 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_toString(JNIEnv*  env,jobject  thiz,jlong ptr) {
1406         PayloadType* pt = (PayloadType*)ptr;
1407         char* value = ms_strdup_printf("[%s] clock [%i], bitrate [%i]"
1408                                                                         ,payload_type_get_mime(pt)
1409                                                                         ,payload_type_get_rate(pt)
1410                                                                         ,payload_type_get_bitrate(pt));
1411         jstring jvalue =env->NewStringUTF(value);
1412         ms_free(value);
1413         return jvalue;
1414 }
1415 extern "C" jstring Java_org_linphone_core_PayloadTypeImpl_getMime(JNIEnv*  env,jobject  thiz,jlong ptr) {
1416         PayloadType* pt = (PayloadType*)ptr;
1417         jstring jvalue =env->NewStringUTF(payload_type_get_mime(pt));
1418         return jvalue;
1419 }
1420 extern "C" jint Java_org_linphone_core_PayloadTypeImpl_getRate(JNIEnv*  env,jobject  thiz, jlong ptr) {
1421         PayloadType* pt = (PayloadType*)ptr;
1422         return (jint)payload_type_get_rate(pt);
1423 }
1424
1425 //LinphoneCall
1426 extern "C" void Java_org_linphone_core_LinphoneCallImpl_finalize(JNIEnv*  env
1427                                                                                                                                                 ,jobject  thiz
1428                                                                                                                                                 ,jlong ptr) {
1429         LinphoneCall *call=(LinphoneCall*)ptr;
1430         linphone_call_unref(call);
1431 }
1432
1433 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCallLog(    JNIEnv*  env
1434                                                                                                                                                 ,jobject  thiz
1435                                                                                                                                                 ,jlong ptr) {
1436         return (jlong)linphone_call_get_call_log((LinphoneCall*)ptr);
1437 }
1438
1439 extern "C" void Java_org_linphone_core_LinphoneCallImpl_takeSnapshot(   JNIEnv*  env
1440                                                                                                                                                 ,jobject  thiz
1441                                                                                                                                                 ,jlong ptr, jstring path) {
1442         const char* filePath = path != NULL ? env->GetStringUTFChars(path, NULL) : NULL;
1443         linphone_call_take_video_snapshot((LinphoneCall*)ptr, filePath);
1444 }
1445
1446 extern "C" void Java_org_linphone_core_LinphoneCallImpl_zoomVideo(              JNIEnv*  env
1447                                                                                                                                                 ,jobject  thiz
1448                                                                                                                                                 ,jlong ptr, jfloat zoomFactor, jfloat cx, jfloat cy) {
1449         linphone_call_zoom_video((LinphoneCall*)ptr, zoomFactor, &cx, &cy);
1450 }
1451
1452 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isIncoming( JNIEnv*  env
1453                                                                                                                                                 ,jobject  thiz
1454                                                                                                                                                 ,jlong ptr) {
1455         return linphone_call_get_dir((LinphoneCall*)ptr)==LinphoneCallIncoming?JNI_TRUE:JNI_FALSE;
1456 }
1457
1458 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteAddress(      JNIEnv*  env
1459                                                                                                                                                 ,jobject  thiz
1460                                                                                                                                                 ,jlong ptr) {
1461         return (jlong)linphone_call_get_remote_address((LinphoneCall*)ptr);
1462 }
1463
1464 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getState(       JNIEnv*  env
1465                                                                                                                                                 ,jobject  thiz
1466                                                                                                                                                 ,jlong ptr) {
1467         return (jint)linphone_call_get_state((LinphoneCall*)ptr);
1468 }
1469 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoCancellation( JNIEnv*  env
1470                                                                                                                                                 ,jobject  thiz
1471                                                                                                                                                 ,jlong ptr
1472                                                                                                                                                 ,jboolean value) {
1473         linphone_call_enable_echo_cancellation((LinphoneCall*)ptr,value);
1474 }
1475 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoCancellationEnabled(  JNIEnv*  env
1476                                                                                                                                                 ,jobject  thiz
1477                                                                                                                                                 ,jlong ptr) {
1478         return (jboolean)linphone_call_echo_cancellation_enabled((LinphoneCall*)ptr);
1479 }
1480
1481 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableEchoLimiter(      JNIEnv*  env
1482                                                                                                                                                 ,jobject  thiz
1483                                                                                                                                                 ,jlong ptr
1484                                                                                                                                                 ,jboolean value) {
1485         linphone_call_enable_echo_limiter((LinphoneCall*)ptr,value);
1486 }
1487 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isEchoLimiterEnabled(       JNIEnv*  env
1488                                                                                                                                                 ,jobject  thiz
1489                                                                                                                                                 ,jlong ptr) {
1490         return (jboolean)linphone_call_echo_limiter_enabled((LinphoneCall*)ptr);
1491 }
1492
1493 extern "C" jobject Java_org_linphone_core_LinphoneCallImpl_getReplacedCall(     JNIEnv*  env
1494                                                                                                                                                 ,jobject  thiz
1495                                                                                                                                                 ,jlong ptr) {
1496         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data(linphone_call_get_core((LinphoneCall*)ptr));       
1497         return lcd->getCall(env,linphone_call_get_replaced_call((LinphoneCall*)ptr));
1498 }
1499
1500 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getCurrentQuality(    JNIEnv*  env
1501                                                                                                                                                 ,jobject  thiz
1502                                                                                                                                                 ,jlong ptr) {
1503         return (jfloat)linphone_call_get_current_quality((LinphoneCall*)ptr);
1504 }
1505
1506 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getAverageQuality(    JNIEnv*  env
1507                                                                                                                                                 ,jobject  thiz
1508                                                                                                                                                 ,jlong ptr) {
1509         return (jfloat)linphone_call_get_average_quality((LinphoneCall*)ptr);
1510 }
1511
1512
1513 //LinphoneFriend
1514 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_newLinphoneFriend(JNIEnv*  env
1515                                                                                                                                                 ,jobject  thiz
1516                                                                                                                                                 ,jstring jFriendUri) {
1517         LinphoneFriend* lResult;
1518
1519         if (jFriendUri) {
1520                 const char* friendUri = env->GetStringUTFChars(jFriendUri, NULL);
1521                 lResult= linphone_friend_new_with_addr(friendUri);
1522                 env->ReleaseStringUTFChars(jFriendUri, friendUri);
1523         } else {
1524                 lResult = linphone_friend_new();
1525         }
1526         return (jlong)lResult;
1527 }
1528 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setAddress(JNIEnv*  env
1529                                                                                                                                                 ,jobject  thiz
1530                                                                                                                                                 ,jlong ptr
1531                                                                                                                                                 ,jlong linphoneAddress) {
1532         linphone_friend_set_addr((LinphoneFriend*)ptr,(LinphoneAddress*)linphoneAddress);
1533 }
1534 extern "C" jlong Java_org_linphone_core_LinphoneFriendImpl_getAddress(JNIEnv*  env
1535                                                                                                                                                 ,jobject  thiz
1536                                                                                                                                                 ,jlong ptr) {
1537         return (jlong)linphone_friend_get_address((LinphoneFriend*)ptr);
1538 }
1539 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_setIncSubscribePolicy(JNIEnv*  env
1540                                                                                                                                                 ,jobject  thiz
1541                                                                                                                                                 ,jlong ptr
1542                                                                                                                                                 ,jint policy) {
1543         linphone_friend_set_inc_subscribe_policy((LinphoneFriend*)ptr,(LinphoneSubscribePolicy)policy);
1544 }
1545 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getIncSubscribePolicy(JNIEnv*  env
1546                                                                                                                                                 ,jobject  thiz
1547                                                                                                                                                 ,jlong ptr) {
1548         return (jint)linphone_friend_get_inc_subscribe_policy((LinphoneFriend*)ptr);
1549 }
1550 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_enableSubscribes(JNIEnv*  env
1551                                                                                                                                                 ,jobject  thiz
1552                                                                                                                                                 ,jlong ptr
1553                                                                                                                                                 ,jboolean value) {
1554         linphone_friend_enable_subscribes((LinphoneFriend*)ptr,value);
1555 }
1556 extern "C" jboolean Java_org_linphone_core_LinphoneFriendImpl_isSubscribesEnabled(JNIEnv*  env
1557                                                                                                                                                 ,jobject  thiz
1558                                                                                                                                                 ,jlong ptr) {
1559         return (jboolean)linphone_friend_subscribes_enabled((LinphoneFriend*)ptr);
1560 }
1561 extern "C" jint Java_org_linphone_core_LinphoneFriendImpl_getStatus(JNIEnv*  env
1562                                                                                                                                                 ,jobject  thiz
1563                                                                                                                                                 ,jlong ptr) {
1564         return (jint)linphone_friend_get_status((LinphoneFriend*)ptr);
1565 }
1566 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_edit(JNIEnv*  env
1567                                                                                                                                                 ,jobject  thiz
1568                                                                                                                                                 ,jlong ptr) {
1569         return linphone_friend_edit((LinphoneFriend*)ptr);
1570 }
1571 extern "C" void Java_org_linphone_core_LinphoneFriendImpl_done(JNIEnv*  env
1572                                                                                                                                                 ,jobject  thiz
1573                                                                                                                                                 ,jlong ptr) {
1574          linphone_friend_done((LinphoneFriend*)ptr);
1575 }
1576 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFriend(JNIEnv*  env
1577                                                                                                                                                 ,jobject  thiz
1578                                                                                                                                                 ,jlong ptr
1579                                                                                                                                                 ,jlong lf) {
1580         linphone_core_remove_friend((LinphoneCore*)ptr, (LinphoneFriend*)lf);
1581 }
1582 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_getFriendByAddress(JNIEnv*  env
1583                                                                                                                                                 ,jobject  thiz
1584                                                                                                                                                 ,jlong ptr
1585                                                                                                                                                 ,jstring jaddress) {
1586         const char* address = env->GetStringUTFChars(jaddress, NULL);
1587         LinphoneFriend *lf = linphone_core_get_friend_by_address((LinphoneCore*)ptr, address);
1588         env->ReleaseStringUTFChars(jaddress, address);
1589         return (jlong) lf;
1590 }
1591 //LinphoneChatRoom
1592 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_getPeerAddress(JNIEnv*  env
1593                                                                                                                                                 ,jobject  thiz
1594                                                                                                                                                 ,jlong ptr) {
1595         return (jlong) linphone_chat_room_get_peer_address((LinphoneChatRoom*)ptr);
1596 }
1597 extern "C" jlong Java_org_linphone_core_LinphoneChatRoomImpl_createLinphoneChatMessage(JNIEnv*  env
1598                                                                                                                                                 ,jobject  thiz
1599                                                                                                                                                 ,jlong ptr
1600                                                                                                                                                 ,jstring jmessage) {
1601         const char* message = env->GetStringUTFChars(jmessage, NULL);
1602         LinphoneChatMessage *chatMessage = linphone_chat_room_create_message((LinphoneChatRoom *)ptr, message);
1603         env->ReleaseStringUTFChars(jmessage, message);
1604
1605         return (jlong) chatMessage;
1606 }
1607 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setUserData(JNIEnv*  env
1608                                                                                                                                                 ,jobject  thiz
1609                                                                                                                                                 ,jlong ptr) {
1610         jobject ud = env->NewGlobalRef(thiz);
1611         linphone_chat_message_set_user_data((LinphoneChatMessage*)ptr,(void*) ud);
1612 }
1613 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getMessage(JNIEnv*  env
1614                                                                                                                                                 ,jobject  thiz
1615                                                                                                                                                 ,jlong ptr) {
1616         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_message((LinphoneChatMessage*)ptr));
1617         return jvalue;
1618 }
1619 extern "C" jstring Java_org_linphone_core_LinphoneChatMessageImpl_getExternalBodyUrl(JNIEnv*  env
1620                                                                                                                                                 ,jobject  thiz
1621                                                                                                                                                 ,jlong ptr) {
1622         jstring jvalue =env->NewStringUTF(linphone_chat_message_get_external_body_url((LinphoneChatMessage*)ptr));
1623         return jvalue;
1624 }
1625 extern "C" void Java_org_linphone_core_LinphoneChatMessageImpl_setExternalBodyUrl(JNIEnv*  env
1626                                                                                                                                                 ,jobject  thiz
1627                                                                                                                                                 ,jlong ptr
1628                                                                                                                                                 ,jstring jurl) {
1629         const char* url = env->GetStringUTFChars(jurl, NULL);
1630         linphone_chat_message_set_external_body_url((LinphoneChatMessage *)ptr, url);
1631         env->ReleaseStringUTFChars(jurl, url);
1632 }
1633 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getFrom(JNIEnv*  env
1634                                                                                                                                                 ,jobject  thiz
1635                                                                                                                                                 ,jlong ptr) {
1636         return (jlong) linphone_chat_message_get_from((LinphoneChatMessage*)ptr);
1637 }
1638 extern "C" jlong Java_org_linphone_core_LinphoneChatMessageImpl_getPeerAddress(JNIEnv*  env
1639                                                                                                                                                 ,jobject  thiz
1640                                                                                                                                                 ,jlong ptr) {
1641         return (jlong) linphone_chat_message_get_peer_address((LinphoneChatMessage*)ptr);
1642 }
1643 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage(JNIEnv*  env
1644                                                                                                                                                 ,jobject  thiz
1645                                                                                                                                                 ,jlong ptr
1646                                                                                                                                                 ,jstring jmessage) {
1647         const char* message = env->GetStringUTFChars(jmessage, NULL);
1648         linphone_chat_room_send_message((LinphoneChatRoom*)ptr, message);
1649         env->ReleaseStringUTFChars(jmessage, message);
1650 }
1651
1652 static void chat_room_impl_callback(LinphoneChatMessage* msg, LinphoneChatMessageState state, void* ud) {
1653         JNIEnv *env = 0;
1654         jint result = jvm->AttachCurrentThread(&env,NULL);
1655         if (result != 0) {
1656                 ms_error("cannot attach VM\n");
1657                 return;
1658         }
1659
1660         jobject listener = (jobject) ud;
1661         jclass clazz = (jclass) env->GetObjectClass(listener);
1662         jmethodID method = env->GetMethodID(clazz, "onLinphoneChatMessageStateChanged","(Lorg/linphone/core/LinphoneChatMessage;Lorg/linphone/core/LinphoneChatMessage$State;)V");
1663
1664         LinphoneCore *lc = linphone_chat_room_get_lc(linphone_chat_message_get_chat_room(msg));
1665         LinphoneCoreData* lcData = (LinphoneCoreData*)linphone_core_get_user_data(lc);
1666         env->CallVoidMethod(
1667                         listener,
1668                         method,
1669                         (jobject)linphone_chat_message_get_user_data(msg),
1670                         env->CallStaticObjectMethod(lcData->chatMessageStateClass,lcData->chatMessageStateFromIntId,(jint)state));
1671
1672         if (state == LinphoneChatMessageStateDelivered || state == LinphoneChatMessageStateNotDelivered) {
1673                 env->DeleteGlobalRef(listener);
1674         }
1675 }
1676 extern "C" void Java_org_linphone_core_LinphoneChatRoomImpl_sendMessage2(JNIEnv*  env
1677                                                                                                                                                 ,jobject  thiz
1678                                                                                                                                                 ,jlong ptr
1679                                                                                                                                                 ,jlong jmessage
1680                                                                                                                                                 ,jobject jlistener) {
1681         jobject listener = env->NewGlobalRef(jlistener);
1682         linphone_chat_room_send_message2((LinphoneChatRoom*)ptr, (LinphoneChatMessage*)jmessage, chat_room_impl_callback, (void*)listener);
1683 }
1684 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoWindowId(JNIEnv* env
1685                                                                                                                                                 ,jobject thiz
1686                                                                                                                                                 ,jlong lc
1687                                                                                                                                                 ,jobject obj) {
1688         jobject oldWindow = (jobject) linphone_core_get_native_video_window_id((LinphoneCore*)lc);
1689         if (oldWindow != NULL) {
1690                 env->DeleteGlobalRef(oldWindow);
1691         }
1692         if (obj != NULL) {
1693                 obj = env->NewGlobalRef(obj);
1694         }
1695         linphone_core_set_native_video_window_id((LinphoneCore*)lc,(unsigned long)obj);
1696 }
1697
1698 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreviewWindowId(JNIEnv* env
1699                                                                                                                                                 ,jobject thiz
1700                                                                                                                                                 ,jlong lc
1701                                                                                                                                                 ,jobject obj) {
1702         jobject oldWindow = (jobject) linphone_core_get_native_preview_window_id((LinphoneCore*)lc);
1703         if (oldWindow != NULL) {
1704                 env->DeleteGlobalRef(oldWindow);
1705         }
1706         if (obj != NULL) {
1707                 obj = env->NewGlobalRef(obj);
1708         }
1709         linphone_core_set_native_preview_window_id((LinphoneCore*)lc,(unsigned long)obj);
1710 }
1711
1712 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDeviceRotation(JNIEnv* env
1713                                                                                                                                                 ,jobject thiz
1714                                                                                                                                                 ,jlong lc
1715                                                                                                                                                 ,jint rotation) {
1716         linphone_core_set_device_rotation((LinphoneCore*)lc,rotation);
1717 }
1718
1719
1720 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc, jint enum_value){
1721         linphone_core_set_firewall_policy((LinphoneCore*)lc,(LinphoneFirewallPolicy)enum_value);
1722 }
1723
1724 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getFirewallPolicy(JNIEnv *env, jobject thiz, jlong lc){
1725         return (jint)linphone_core_get_firewall_policy((LinphoneCore*)lc);
1726 }
1727
1728 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setStunServer(JNIEnv *env, jobject thiz, jlong lc, jstring jserver){
1729         const char* server = NULL;
1730         if (jserver) server=env->GetStringUTFChars(jserver, NULL);
1731         linphone_core_set_stun_server((LinphoneCore*)lc,server);
1732         if (server) env->ReleaseStringUTFChars(jserver,server);
1733 }
1734
1735 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getStunServer(JNIEnv *env, jobject thiz, jlong lc){
1736         const char *ret= linphone_core_get_stun_server((LinphoneCore*)lc);
1737         if (ret==NULL) return NULL;
1738         jstring jvalue =env->NewStringUTF(ret);
1739         return jvalue;
1740 }
1741
1742 //CallParams
1743
1744 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedAudioCodec(JNIEnv *env, jobject thiz, jlong cp) {
1745         return (jlong)linphone_call_params_get_used_audio_codec((LinphoneCallParams *)cp);
1746 }
1747
1748 extern "C" jlong Java_org_linphone_core_LinphoneCallParamsImpl_getUsedVideoCodec(JNIEnv *env, jobject thiz, jlong cp) {
1749         return (jlong)linphone_call_params_get_used_video_codec((LinphoneCallParams *)cp);
1750 }
1751
1752 extern "C" jint Java_org_linphone_core_LinphoneCallParamsImpl_getMediaEncryption(JNIEnv*  env
1753                                                                                                                                                         ,jobject  thiz
1754                                                                                                                                                         ,jlong cp
1755                                                                                                                                                         ) {
1756         return (jint)linphone_call_params_get_media_encryption((LinphoneCallParams*)cp);
1757 }
1758
1759 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_setMediaEncryption(JNIEnv*  env
1760                                                                                                                                                         ,jobject  thiz
1761                                                                                                                                                         ,jlong cp
1762                                                                                                                                                         ,jint jmenc) {
1763         linphone_call_params_set_media_encryption((LinphoneCallParams*)cp,(LinphoneMediaEncryption)jmenc);
1764 }
1765
1766 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_audioBandwidth(JNIEnv *env, jobject thiz, jlong lcp, jint bw){
1767         linphone_call_params_set_audio_bandwidth_limit((LinphoneCallParams*)lcp, bw);
1768 }
1769
1770 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_enableVideo(JNIEnv *env, jobject thiz, jlong lcp, jboolean b){
1771         linphone_call_params_enable_video((LinphoneCallParams*)lcp, b);
1772 }
1773
1774 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_getVideoEnabled(JNIEnv *env, jobject thiz, jlong lcp){
1775         return (jboolean)linphone_call_params_video_enabled((LinphoneCallParams*)lcp);
1776 }
1777
1778 extern "C" jboolean Java_org_linphone_core_LinphoneCallParamsImpl_localConferenceMode(JNIEnv *env, jobject thiz, jlong lcp){
1779         return (jboolean)linphone_call_params_local_conference_mode((LinphoneCallParams*)lcp);
1780 }
1781
1782 extern "C" void Java_org_linphone_core_LinphoneCallParamsImpl_destroy(JNIEnv *env, jobject thiz, jlong lc){
1783         return linphone_call_params_destroy((LinphoneCallParams*)lc);
1784 }
1785 extern "C" jlong Java_org_linphone_core_LinphoneCoreImpl_createDefaultCallParams(JNIEnv *env, jobject thiz, jlong lc){
1786         return (jlong) linphone_core_create_default_call_parameters((LinphoneCore*)lc);
1787 }
1788
1789 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getRemoteParams(JNIEnv *env, jobject thiz, jlong lc){
1790         if (linphone_call_get_remote_params((LinphoneCall*)lc) == NULL) {
1791                         return (jlong) 0;
1792         }
1793         return (jlong) linphone_call_params_copy(linphone_call_get_remote_params((LinphoneCall*)lc));
1794 }
1795
1796 extern "C" jlong Java_org_linphone_core_LinphoneCallImpl_getCurrentParamsCopy(JNIEnv *env, jobject thiz, jlong lc){
1797         return (jlong) linphone_call_params_copy(linphone_call_get_current_params((LinphoneCall*)lc));
1798 }
1799
1800 extern "C" void Java_org_linphone_core_LinphoneCallImpl_enableCamera(JNIEnv *env, jobject thiz, jlong lc, jboolean b){
1801         linphone_call_enable_camera((LinphoneCall *)lc, (bool_t) b);
1802 }
1803
1804 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_cameraEnabled(JNIEnv *env, jobject thiz, jlong lc){
1805         return (jboolean)linphone_call_camera_enabled((LinphoneCall *)lc);
1806 }
1807
1808 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_inviteAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong addr, jlong params){
1809         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)lc);
1810         return  lcd->getCall(env,linphone_core_invite_address_with_params((LinphoneCore *)lc, (const LinphoneAddress *)addr, (const LinphoneCallParams *)params));
1811 }
1812
1813 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateAddressWithParams(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1814         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (LinphoneCallParams *)params);
1815 }
1816
1817 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_updateCall(JNIEnv *env, jobject thiz, jlong lc, jlong call, jlong params){
1818         return (jint) linphone_core_update_call((LinphoneCore *)lc, (LinphoneCall *)call, (const LinphoneCallParams *)params);
1819 }
1820
1821
1822 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc, jint width, jint height){
1823         MSVideoSize vsize;
1824         vsize.width = (int)width;
1825         vsize.height = (int)height;
1826         linphone_core_set_preferred_video_size((LinphoneCore *)lc, vsize);
1827 }
1828
1829 extern "C" jintArray Java_org_linphone_core_LinphoneCoreImpl_getPreferredVideoSize(JNIEnv *env, jobject thiz, jlong lc){
1830         MSVideoSize vsize = linphone_core_get_preferred_video_size((LinphoneCore *)lc);
1831     jintArray arr = env->NewIntArray(2);
1832         int tVsize [2]= {vsize.width,vsize.height};
1833     env->SetIntArrayRegion(arr, 0, 2, tVsize);
1834     return arr;
1835 }
1836
1837 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1838         linphone_core_set_download_bandwidth((LinphoneCore *)lc, (int) bw);
1839 }
1840
1841 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadBandwidth(JNIEnv *env, jobject thiz, jlong lc, jint bw){
1842         linphone_core_set_upload_bandwidth((LinphoneCore *)lc, (int) bw);
1843 }
1844
1845 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setDownloadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1846         linphone_core_set_download_ptime((LinphoneCore *)lc, (int) ptime);
1847 }
1848
1849 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUploadPtime(JNIEnv *env, jobject thiz, jlong lc, jint ptime){
1850         linphone_core_set_upload_ptime((LinphoneCore *)lc, (int) ptime);
1851 }
1852
1853 extern "C" jint Java_org_linphone_core_LinphoneProxyConfigImpl_getState(JNIEnv*  env,jobject thiz,jlong ptr) {
1854         return (jint) linphone_proxy_config_get_state((const LinphoneProxyConfig *) ptr);
1855 }
1856 extern "C" void Java_org_linphone_core_LinphoneProxyConfigImpl_setExpires(JNIEnv*  env,jobject thiz,jlong ptr,jint delay) {
1857         linphone_proxy_config_expires((LinphoneProxyConfig *) ptr, (int) delay);
1858 }
1859
1860 extern "C" jint Java_org_linphone_core_LinphoneCallImpl_getDuration(JNIEnv*  env,jobject thiz,jlong ptr) {
1861         return (jint)linphone_call_get_duration((LinphoneCall *) ptr);
1862 }
1863
1864 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getSignalingTransportPort(JNIEnv* env,jobject thiz,jlong ptr, jint code) {
1865         LCSipTransports tr;
1866         linphone_core_get_sip_transports((LinphoneCore *) ptr, &tr);
1867                 switch (code) {
1868         case 0:
1869                 return tr.udp_port;
1870         case 1:
1871                 return tr.tcp_port;
1872         case 3:
1873                 return tr.tls_port;
1874         default:
1875                 return -2;
1876         }
1877 }
1878
1879 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setSignalingTransportPorts(JNIEnv*  env,jobject thiz,jlong ptr,jint udp, jint tcp, jint tls) {
1880         LinphoneCore *lc = (LinphoneCore *) ptr;
1881         LCSipTransports tr;
1882         tr.udp_port = udp;
1883         tr.tcp_port = tcp;
1884         tr.tls_port = tls;
1885
1886         linphone_core_set_sip_transports(lc, &tr); // tr will be copied
1887 }
1888
1889 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_enableIpv6(JNIEnv* env,jobject  thiz
1890               ,jlong lc, jboolean enable) {
1891               linphone_core_enable_ipv6((LinphoneCore*)lc,enable);
1892 }
1893
1894 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_adjustSoftwareVolume(JNIEnv* env,jobject  thiz
1895               ,jlong ptr, jint db) {
1896         linphone_core_set_playback_gain_db((LinphoneCore *) ptr, db);
1897 }
1898
1899 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1900         return (jint)linphone_core_pause_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1901 }
1902 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_pauseAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1903         return (jint)linphone_core_pause_all_calls((LinphoneCore *) pCore);
1904 }
1905 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_resumeCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1906         return (jint)linphone_core_resume_call((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1907 }
1908 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isInConference(JNIEnv *env,jobject thiz,jlong pCore) {
1909         return (jboolean)linphone_core_is_in_conference((LinphoneCore *) pCore);
1910 }
1911 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_enterConference(JNIEnv *env,jobject thiz,jlong pCore) {
1912         return (jboolean)(0 == linphone_core_enter_conference((LinphoneCore *) pCore));
1913 }
1914 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_leaveConference(JNIEnv *env,jobject thiz,jlong pCore) {
1915         linphone_core_leave_conference((LinphoneCore *) pCore);
1916 }
1917 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addAllToConference(JNIEnv *env,jobject thiz,jlong pCore) {
1918         linphone_core_add_all_to_conference((LinphoneCore *) pCore);
1919 }
1920 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_addToConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1921         linphone_core_add_to_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1922 }
1923 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_removeFromConference(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall) {
1924         linphone_core_remove_from_conference((LinphoneCore *) pCore, (LinphoneCall *) pCall);
1925 }
1926
1927 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateConference(JNIEnv *env,jobject thiz,jlong pCore) {
1928         linphone_core_terminate_conference((LinphoneCore *) pCore);
1929 }
1930 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getConferenceSize(JNIEnv *env,jobject thiz,jlong pCore) {
1931         return (jint)linphone_core_get_conference_size((LinphoneCore *) pCore);
1932 }
1933 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_terminateAllCalls(JNIEnv *env,jobject thiz,jlong pCore) {
1934         linphone_core_terminate_all_calls((LinphoneCore *) pCore);
1935 }
1936 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_getCall(JNIEnv *env,jobject thiz,jlong pCore,jint position) {
1937         LinphoneCoreData *lcd=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1938         LinphoneCall* lCall = (LinphoneCall*) ms_list_nth_data(linphone_core_get_calls((LinphoneCore *) pCore),position);
1939         return lcd->getCall(env,lCall);
1940 }
1941 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getCallsNb(JNIEnv *env,jobject thiz,jlong pCore) {
1942         return (jint)ms_list_size(linphone_core_get_calls((LinphoneCore *) pCore));
1943 }
1944
1945 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCall(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jstring jReferTo) {
1946         const char* cReferTo=env->GetStringUTFChars(jReferTo, NULL);
1947         jint err = linphone_core_transfer_call((LinphoneCore *) pCore, (LinphoneCall *) pCall, cReferTo);
1948         env->ReleaseStringUTFChars(jReferTo, cReferTo);
1949         return err;
1950 }
1951 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_transferCallToAnother(JNIEnv *env,jobject thiz,jlong pCore, jlong pCall, jlong pDestCall) {
1952         return (jint)linphone_core_transfer_call_to_another((LinphoneCore *) pCore, (LinphoneCall *) pCall, (LinphoneCall *) pDestCall);
1953 }
1954
1955 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setZrtpSecretsCache(JNIEnv *env,jobject thiz,jlong pCore, jstring jFile) {
1956         if (jFile) {
1957                 const char* cFile=env->GetStringUTFChars(jFile, NULL);
1958                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,cFile);
1959                 env->ReleaseStringUTFChars(jFile, cFile);
1960         } else {
1961                 linphone_core_set_zrtp_secrets_file((LinphoneCore *) pCore,NULL);
1962         }
1963 }
1964
1965 extern "C" jobject Java_org_linphone_core_LinphoneCoreImpl_findCallFromUri(JNIEnv *env,jobject thiz,jlong pCore, jstring jUri) {
1966         const char* cUri=env->GetStringUTFChars(jUri, NULL);
1967         LinphoneCall *call= (LinphoneCall *) linphone_core_find_call_from_uri((LinphoneCore *) pCore,cUri);
1968         env->ReleaseStringUTFChars(jUri, cUri);
1969         LinphoneCoreData *lcdata=(LinphoneCoreData*)linphone_core_get_user_data((LinphoneCore*)pCore);
1970         return (jobject) lcdata->getCall(env,call);
1971 }
1972
1973
1974 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_setVideoDevice(JNIEnv *env,jobject thiz,jlong pCore,jint id) {
1975         LinphoneCore* lc = (LinphoneCore *) pCore;
1976         const char** devices = linphone_core_get_video_devices(lc);
1977         if (devices == NULL) {
1978                 ms_error("No existing video devices\n");
1979                 return -1;
1980         }
1981         int i;
1982         for(i=0; i<=id; i++) {
1983                 if (devices[i] == NULL)
1984                         break;
1985                 ms_message("Existing device %d : %s\n", i, devices[i]);
1986                 if (i==id) {
1987                         return (jint)linphone_core_set_video_device(lc, devices[i]);
1988                 }
1989         }
1990         return -1;
1991 }
1992
1993 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getVideoDevice(JNIEnv *env,jobject thiz,jlong pCore) {
1994         LinphoneCore* lc = (LinphoneCore *) pCore;
1995         const char** devices = linphone_core_get_video_devices(lc);
1996         if (devices == NULL) {
1997                 ms_error("No existing video devices\n");
1998                 return -1;
1999         }
2000         const char* cam = linphone_core_get_video_device(lc);
2001         if (cam == NULL) {
2002                 ms_error("No current video device\n");
2003         } else {
2004                 int i=0;
2005                 while(devices[i] != NULL) {
2006                         if (strcmp(devices[i], cam) == 0)
2007                                 return i;
2008                         i++;
2009                 }
2010         }
2011         ms_warning("Returning default (0) device\n");
2012         return 0;
2013 }
2014
2015 extern "C" jstring Java_org_linphone_core_LinphoneCallImpl_getAuthenticationToken(JNIEnv*  env,jobject thiz,jlong ptr) {
2016         LinphoneCall *call = (LinphoneCall *) ptr;
2017         const char* token = linphone_call_get_authentication_token(call);
2018         if (token == NULL) return NULL;
2019         return env->NewStringUTF(token);
2020 }
2021 extern "C" jboolean Java_org_linphone_core_LinphoneCallImpl_isAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr) {
2022         LinphoneCall *call = (LinphoneCall *) ptr;
2023         return (jboolean)linphone_call_get_authentication_token_verified(call);
2024 }
2025 extern "C" void Java_org_linphone_core_LinphoneCallImpl_setAuthenticationTokenVerified(JNIEnv*  env,jobject thiz,jlong ptr,jboolean verified) {
2026         LinphoneCall *call = (LinphoneCall *) ptr;
2027         linphone_call_set_authentication_token_verified(call, verified);
2028 }
2029
2030 extern "C" jfloat Java_org_linphone_core_LinphoneCallImpl_getPlayVolume(JNIEnv* env, jobject thiz, jlong ptr) {
2031         LinphoneCall *call = (LinphoneCall *) ptr;
2032         return (jfloat)linphone_call_get_play_volume(call);
2033 }
2034
2035 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_soundResourcesLocked(JNIEnv* env,jobject thiz,jlong ptr){
2036         return (jboolean)linphone_core_sound_resources_locked((LinphoneCore *) ptr);
2037 }
2038
2039 // Needed by Galaxy S (can't switch to/from speaker while playing and still keep mic working)
2040 // Implemented directly in msandroid.cpp (sound filters for Android).
2041 extern "C" void msandroid_hack_speaker_state(bool speakerOn);
2042
2043 extern "C" void Java_org_linphone_LinphoneManager_hackSpeakerState(JNIEnv*  env,jobject thiz,jboolean speakerOn){
2044         msandroid_hack_speaker_state(speakerOn);
2045 }
2046 // End Galaxy S hack functions
2047
2048
2049 extern "C" jint Java_org_linphone_core_LinphoneCoreImpl_getMaxCalls(JNIEnv *env,jobject thiz,jlong pCore) {
2050         return (jint) linphone_core_get_max_calls((LinphoneCore *) pCore);
2051 }
2052 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setMaxCalls(JNIEnv *env,jobject thiz,jlong pCore, jint max) {
2053         linphone_core_set_max_calls((LinphoneCore *) pCore, (int) max);
2054 }
2055
2056 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAddServerAndMirror(JNIEnv *env,jobject thiz,jlong pCore,
2057                 jstring jHost, jint port, jint mirror, jint delay) {
2058         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2059         if (!tunnel) return;
2060         const char* cHost=env->GetStringUTFChars(jHost, NULL);
2061         linphone_tunnel_add_server_and_mirror(tunnel, cHost, port, mirror, delay);
2062         env->ReleaseStringUTFChars(jHost, cHost);
2063 }
2064
2065 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelSetHttpProxy(JNIEnv *env,jobject thiz,jlong pCore,
2066                 jstring jHost, jint port, jstring username, jstring password) {
2067
2068         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel;
2069         if (!tunnel) return;
2070         const char* cHost=(jHost!=NULL) ? env->GetStringUTFChars(jHost, NULL) : NULL;
2071         const char* cUsername= (username!=NULL) ? env->GetStringUTFChars(username, NULL) : NULL;
2072         const char* cPassword= (password!=NULL) ? env->GetStringUTFChars(password, NULL) : NULL;
2073         linphone_tunnel_set_http_proxy(tunnel,cHost, port,cUsername,cPassword);
2074         if (cHost) env->ReleaseStringUTFChars(jHost, cHost);
2075         if (cUsername) env->ReleaseStringUTFChars(username, cUsername);
2076         if (cPassword) env->ReleaseStringUTFChars(password, cPassword);
2077 }
2078
2079
2080 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelAutoDetect(JNIEnv *env,jobject thiz,jlong pCore) {
2081         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2082         linphone_tunnel_auto_detect(tunnel);
2083
2084 }
2085
2086 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelCleanServers(JNIEnv *env,jobject thiz,jlong pCore) {
2087         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2088         linphone_tunnel_clean_servers(tunnel);
2089 }
2090
2091 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_tunnelEnable(JNIEnv *env,jobject thiz,jlong pCore, jboolean enable) {
2092         LinphoneTunnel *tunnel=((LinphoneCore *) pCore)->tunnel; if (!tunnel) return;
2093         linphone_tunnel_enable(tunnel, enable);
2094 }
2095
2096
2097 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setUserAgent(JNIEnv *env,jobject thiz,jlong pCore, jstring name, jstring version){
2098         const char* cname=env->GetStringUTFChars(name, NULL);
2099         const char* cversion=env->GetStringUTFChars(version, NULL);
2100         linphone_core_set_user_agent(cname,cversion);
2101         env->ReleaseStringUTFChars(name, cname);
2102         env->ReleaseStringUTFChars(version, cversion);
2103 }
2104
2105 extern "C" jboolean Java_org_linphone_core_LinphoneCoreImpl_isTunnelAvailable(JNIEnv *env,jobject thiz){
2106         return (jboolean)linphone_core_tunnel_available();
2107 }
2108
2109 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPolicy(JNIEnv *env, jobject thiz, jlong lc, jboolean autoInitiate, jboolean autoAccept){
2110         LinphoneVideoPolicy vpol;
2111         vpol.automatically_initiate = autoInitiate;
2112         vpol.automatically_accept = autoAccept;
2113         linphone_core_set_video_policy((LinphoneCore *)lc, &vpol);
2114 }
2115
2116 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setCpuCountNative(JNIEnv *env, jobject thiz, jint count) {
2117         ms_set_cpu_count(count);
2118 }
2119
2120 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2121         linphone_core_set_audio_port((LinphoneCore *)lc, port);
2122 }
2123
2124 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPort(JNIEnv *env, jobject thiz, jlong lc, jint port) {
2125         linphone_core_set_video_port((LinphoneCore *)lc, port);
2126 }
2127
2128 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setAudioPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2129         linphone_core_set_audio_port_range((LinphoneCore *)lc, min_port, max_port);
2130 }
2131
2132 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setVideoPortRange(JNIEnv *env, jobject thiz, jlong lc, jint min_port, jint max_port) {
2133         linphone_core_set_video_port_range((LinphoneCore *)lc, min_port, max_port);
2134 }
2135
2136 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setIncomingTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2137         linphone_core_set_inc_timeout((LinphoneCore *)lc, timeout);
2138 }
2139
2140 extern "C" void Java_org_linphone_core_LinphoneCoreImpl_setInCallTimeout(JNIEnv *env, jobject thiz, jlong lc, jint timeout) {
2141         linphone_core_set_in_call_timeout((LinphoneCore *)lc, timeout);
2142 }
2143
2144 extern "C" jstring Java_org_linphone_core_LinphoneCoreImpl_getVersion(JNIEnv*  env,jobject  thiz,jlong ptr) {
2145         jstring jvalue =env->NewStringUTF(linphone_core_get_version());
2146         return jvalue;
2147 }