mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
fix crash on simulator
This commit is contained in:
parent
299b7c95c3
commit
b7886ab9a7
1 changed files with 10 additions and 2 deletions
|
|
@ -292,14 +292,22 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
public LinphoneChatRoom createChatRoom(String to) {
|
||||
return new LinphoneChatRoomImpl(createChatRoom(nativePtr,to));
|
||||
}
|
||||
public void setPreviewWindow(VideoWindow w) {
|
||||
public void setPreviewWindow(Object w) {
|
||||
throw new RuntimeException("not implemented yet");
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
public void setVideoWindow(VideoWindow w) {
|
||||
public void setVideoWindow(Object w) {
|
||||
throw new RuntimeException("not implemented yet");
|
||||
// TODO Auto-generated method stub
|
||||
}
|
||||
public void enableVideo(boolean vcap_enabled, boolean display_enabled) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
public boolean isVideoEnabled() {
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue