mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
echo cancellation improvemnents:
- use echo limiter always on !armv7 - enable echo cancellation by default - toggle speaker mode on during video calls
This commit is contained in:
parent
878f0238f7
commit
954beb9c3d
1 changed files with 5 additions and 0 deletions
|
|
@ -103,6 +103,7 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
private native void setUploadPtime(long nativePtr, int ptime);
|
||||
private native void setDownloadPtime(long nativePtr, int ptime);
|
||||
private native void setZrtpSecretsCache(long nativePtr, String file);
|
||||
private native void enableEchoLimiter(long nativePtr2, boolean val);
|
||||
|
||||
LinphoneCoreImpl(LinphoneCoreListener listener, File userConfig,File factoryConfig,Object userdata) throws IOException {
|
||||
mListener=listener;
|
||||
|
|
@ -503,4 +504,8 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public synchronized void setZrtpSecretsCache(String file) {
|
||||
setZrtpSecretsCache(nativePtr,file);
|
||||
}
|
||||
public void enableEchoLimiter(boolean val) {
|
||||
enableEchoLimiter(nativePtr,val);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue