linphone updated + takeSnapshot and zoomVideo implementation added
This commit is contained in:
parent
25823f62a2
commit
e7344cb11f
2 changed files with 11 additions and 1 deletions
|
@ -155,4 +155,14 @@ class LinphoneCallImpl implements LinphoneCall {
|
|||
public float getPlayVolume() {
|
||||
return getPlayVolume(nativePtr);
|
||||
}
|
||||
|
||||
private native void takeSnapshot(long nativePtr, String path);
|
||||
public void takeSnapshot(String path) {
|
||||
takeSnapshot(nativePtr, path);
|
||||
}
|
||||
|
||||
private native void zoomVideo(long nativePtr, float factor, float cx, float cy);
|
||||
public void zoomVideo(float factor, float cx, float cy) {
|
||||
zoomVideo(nativePtr, factor, cx, cy);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d93727e87c3d872951a74de1681b7475bcfb2614
|
||||
Subproject commit fb9d2bebd321c5fde40a0d4604bbaea1a6403978
|
Loading…
Reference in a new issue