mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
Jni bindings for LinphoneCallParams
This commit is contained in:
parent
41c5eaa945
commit
684c6fa545
2 changed files with 7 additions and 1 deletions
|
|
@ -28,4 +28,10 @@ package org.linphone.core;
|
|||
public interface LinphoneCallParams {
|
||||
void setVideoEnabled(boolean b);
|
||||
boolean getVideoEnabled();
|
||||
|
||||
/**
|
||||
* @param value 0 to disable limitation
|
||||
*/
|
||||
void setAudioBandwidth(int value);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public final class VideoSize {
|
|||
public void setHeight(int height) {this.height = height;}
|
||||
|
||||
public VideoSize() {}
|
||||
private VideoSize(int width, int height) {
|
||||
public VideoSize(int width, int height) {
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue