improved incoming activity + back to conference button.

This commit is contained in:
Guillaume Beraudo 2011-09-29 16:36:40 +02:00
parent b44d51a5b1
commit 8a89467629

View file

@ -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);