Show who is talking in conf view

This commit is contained in:
Sylvain Berfini 2011-12-30 17:00:28 +01:00
parent b8e9569e5d
commit 7e81d189d0

View file

@ -147,4 +147,9 @@ class LinphoneCallImpl implements LinphoneCall {
public String toString() {
return "Call " + nativePtr;
}
private native float getPlayVolume(long nativePtr);
public float getPlayVolume() {
return getPlayVolume(nativePtr);
}
}