mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 06:08:07 +00:00
ZRTP on old arm devices.
This commit is contained in:
parent
69f71d9bc8
commit
748ad2f385
3 changed files with 9 additions and 2 deletions
|
|
@ -63,6 +63,8 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
|
|||
|
||||
//Main library
|
||||
System.loadLibrary("linphone");
|
||||
|
||||
Version.dumpCapabilities();
|
||||
}
|
||||
@Override
|
||||
public LinphoneAuthInfo createAuthInfo(String username, String password,
|
||||
|
|
|
|||
|
|
@ -73,4 +73,11 @@ public class Version {
|
|||
public static boolean hasZrtp(){
|
||||
return nativeHasZrtp();
|
||||
}
|
||||
|
||||
public static void dumpCapabilities(){
|
||||
StringBuilder sb = new StringBuilder(" ==== Capabilities dump ====\n");
|
||||
sb.append("Has neon: ").append(Boolean.toString(hasNeon())).append("\n");
|
||||
sb.append("Has ZRTP: ").append(Boolean.toString(hasZrtp())).append("\n");
|
||||
Log.i(sb.toString());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,8 +27,6 @@ class AndroidCameraConf5 implements AndroidCameraConf {
|
|||
public AndroidCameras getFoundCameras() {return foundCameras;}
|
||||
|
||||
public AndroidCameraConf5() {
|
||||
Log.i("Detecting cameras");
|
||||
|
||||
// Defaults
|
||||
foundCameras = new AndroidCameras();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue