Jni bindings for LinphoneCallParams

This commit is contained in:
Guillaume Beraudo 2010-12-09 09:12:22 +01:00
parent 41c5eaa945
commit 684c6fa545
2 changed files with 7 additions and 1 deletions

View file

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

View file

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