add option to enable echo limiter, and fallback to it when echo limiter failed

This commit is contained in:
Simon Morlat 2011-11-09 17:28:51 +01:00
parent 6fe2f65ab0
commit 453e6a5319

View file

@ -605,4 +605,9 @@ class LinphoneCoreImpl implements LinphoneCore {
public void setMaxCalls(int max) {
setMaxCalls(nativePtr, max);
}
private native boolean isEchoLimiterEnabled(long nativePtr);
@Override
public boolean isEchoLimiterEnabled() {
return isEchoLimiterEnabled(nativePtr);
}
}