mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 12:38:09 +00:00
allow auto replacement of calls and update ffmpeg commit id due to forced update
This commit is contained in:
parent
ddfd680240
commit
05c6be619e
1 changed files with 10 additions and 1 deletions
|
|
@ -34,7 +34,8 @@ class LinphoneCallImpl implements LinphoneCall {
|
|||
private native void enableEchoCancellation(long nativePtr,boolean enable);
|
||||
private native boolean isEchoCancellationEnabled(long nativePtr) ;
|
||||
private native void enableEchoLimiter(long nativePtr,boolean enable);
|
||||
private native boolean isEchoLimiterEnabled(long nativePtr) ;
|
||||
private native boolean isEchoLimiterEnabled(long nativePtr);
|
||||
private native long getReplacedCall(long nativePtr);
|
||||
|
||||
protected LinphoneCallImpl(long aNativePtr) {
|
||||
nativePtr = aNativePtr;
|
||||
|
|
@ -88,4 +89,12 @@ class LinphoneCallImpl implements LinphoneCall {
|
|||
public boolean isEchoLimiterEnabled() {
|
||||
return isEchoLimiterEnabled(nativePtr);
|
||||
}
|
||||
public LinphoneCall getReplacedCall(){
|
||||
long callptr=getReplacedCall(nativePtr);
|
||||
if (callptr!=0){
|
||||
return new LinphoneCallImpl(callptr);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue