mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 04:58:14 +00:00
Merge branch 'video' of git.linphone.org:linphone-android-private into video
Conflicts: src/org/linphone/core/AndroidCameraRecord.java
This commit is contained in:
commit
d6402dcbc6
2 changed files with 7 additions and 7 deletions
|
|
@ -80,3 +80,4 @@ public class AndroidVideoWindowImpl {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
throw new RuntimeException("object already destroyed");
|
||||
}
|
||||
}
|
||||
public void setNetworkStateReachable(boolean isReachable) {
|
||||
public void setNetworkReachable(boolean isReachable) {
|
||||
setNetworkStateReachable(nativePtr,isReachable);
|
||||
}
|
||||
public void setPlaybackGain(float gain) {
|
||||
|
|
@ -385,9 +385,6 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
|
||||
return updateCall(nativePtr, ptrCall, ptrParams);
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
|
||||
|
||||
public void setUploadBandwidth(int bw) {
|
||||
setUploadBandwidth(nativePtr, bw);
|
||||
}
|
||||
|
|
@ -406,14 +403,16 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
VideoSize vSize = new VideoSize();
|
||||
vSize.setWidth(nativeSize[0]);
|
||||
vSize.setHeight(nativeSize[1]);
|
||||
|
||||
return vSize;
|
||||
=======
|
||||
}
|
||||
public void setRing(String path) {
|
||||
setRing(nativePtr, path);
|
||||
}
|
||||
public String getRing() {
|
||||
return getRing(nativePtr);
|
||||
>>>>>>> c95431295dc09c5558d38c6de49fa071c957d926
|
||||
}
|
||||
public boolean isNetworkReachable() {
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue