mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 12:38:09 +00:00
improved incoming activity + back to conference button.
This commit is contained in:
parent
b44d51a5b1
commit
8a89467629
1 changed files with 12 additions and 0 deletions
|
|
@ -84,9 +84,21 @@ class LinphoneCallImpl implements LinphoneCall {
|
|||
public boolean cameraEnabled() {
|
||||
return cameraEnabled(nativePtr);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object call) {
|
||||
if (this == call) return true;
|
||||
if (call == null) return false;
|
||||
if (!(call instanceof LinphoneCallImpl)) return false;
|
||||
return nativePtr == ((LinphoneCallImpl)call).nativePtr;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = 17;
|
||||
result = 31 * result + (int) (nativePtr ^ (nativePtr >>> 32));
|
||||
return result;
|
||||
}
|
||||
public void enableEchoCancellation(boolean enable) {
|
||||
enableEchoCancellation(nativePtr,enable);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue