mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 12:08:11 +00:00
Linphone submodule updated + mjpeg encoder build added
This commit is contained in:
parent
93d8702c4a
commit
cff354ab3c
2 changed files with 15 additions and 0 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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -724,4 +724,9 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
String username, String password) {
|
||||
tunnelSetHttpProxy(nativePtr, proxy_host, port, username, password);
|
||||
}
|
||||
|
||||
private native void refreshRegisters(long nativePtr);
|
||||
public void refreshRegisters() {
|
||||
refreshRegisters(nativePtr);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue