]> sjero.net Git - linphone/blob - LinphoneCoreFactoryImpl.java
fix for silk 24khz on Galaxy S
[linphone] / LinphoneCoreFactoryImpl.java
1 /*
2 LinphoneCoreFactoryImpl.java
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 package org.linphone.core;
20
21 import java.io.File;
22 import java.io.IOException;
23
24 import org.linphone.mediastream.Version;
25
26 public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
27
28         private static void loadOptionalLibrary(String s) {
29                 try {
30                         System.loadLibrary(s);
31                 } catch (Throwable e) {
32                         Log.w("Unable to load optional library lib", s);
33                 }
34         }
35
36         static {
37                 // FFMPEG (audio/video)
38                 loadOptionalLibrary("avutil");
39                 loadOptionalLibrary("swscale");
40                 loadOptionalLibrary("avcore");
41                 loadOptionalLibrary("avcodec");
42  
43                 // OPENSSL (cryptography)
44                 // lin prefix avoids collision with libs in /system/lib
45                 loadOptionalLibrary("lincrypto");
46                 loadOptionalLibrary("linssl");
47
48                 // Secure RTP and key negotiation
49                 loadOptionalLibrary("srtp");
50                 loadOptionalLibrary("zrtpcpp"); // GPLv3+
51
52                 //Main library
53                 System.loadLibrary("linphone");
54
55                 Version.dumpCapabilities();
56         }
57         @Override
58         public LinphoneAuthInfo createAuthInfo(String username, String password,
59                         String realm) {
60                 return new LinphoneAuthInfoImpl(username,password,realm);
61         }
62
63         @Override
64         public LinphoneAddress createLinphoneAddress(String username,
65                         String domain, String displayName) {
66                 return new LinphoneAddressImpl(username,domain,displayName);
67         }
68
69         @Override
70         public LinphoneAddress createLinphoneAddress(String identity) {
71                 return new LinphoneAddressImpl(identity);
72         }
73
74         @Override
75         public LinphoneCore createLinphoneCore(LinphoneCoreListener listener,
76                         String userConfig, String factoryConfig, Object userdata)
77                         throws LinphoneCoreException {
78                 try {
79                         return new LinphoneCoreImpl(listener,new File(userConfig),new File(factoryConfig),userdata);
80                 } catch (IOException e) {
81                         throw new LinphoneCoreException("Cannot create LinphoneCore",e);
82                 }
83         }
84
85         @Override
86         public LinphoneCore createLinphoneCore(LinphoneCoreListener listener) throws LinphoneCoreException {
87                 try {
88                         return new LinphoneCoreImpl(listener);
89                 } catch (IOException e) {
90                         throw new LinphoneCoreException("Cannot create LinphoneCore",e);
91                 }
92         }
93
94         @Override
95         public LinphoneProxyConfig createProxyConfig(String identity, String proxy,
96                         String route, boolean enableRegister) throws LinphoneCoreException {
97                 return new LinphoneProxyConfigImpl(identity,proxy,route,enableRegister);
98         }
99
100         @Override
101         public native void setDebugMode(boolean enable);
102
103         @Override
104         public void setLogHandler(LinphoneLogHandler handler) {
105                 //not implemented on Android
106                 
107         }
108
109         @Override
110         public LinphoneFriend createLinphoneFriend(String friendUri) {
111                 return new LinphoneFriendImpl(friendUri);
112         }
113
114         @Override
115         public LinphoneFriend createLinphoneFriend() {
116                 return createLinphoneFriend(null);
117         }
118 }