fix unimplemented method
This commit is contained in:
parent
9ea5e89458
commit
6def7d6ac3
3 changed files with 10 additions and 0 deletions
|
@ -61,6 +61,9 @@ class LinphoneCallImpl implements LinphoneCall {
|
||||||
public LinphoneCallParams getCurrentParamsReadOnly() {
|
public LinphoneCallParams getCurrentParamsReadOnly() {
|
||||||
throw new RuntimeException("Not Implemenetd yet");
|
throw new RuntimeException("Not Implemenetd yet");
|
||||||
}
|
}
|
||||||
|
public void enableCamera(boolean enabled) {
|
||||||
|
throw new RuntimeException("Not Implemenetd yet");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -359,6 +359,9 @@ class LinphoneCoreImpl implements LinphoneCore {
|
||||||
public VideoSize getPreferredVideoSize() {
|
public VideoSize getPreferredVideoSize() {
|
||||||
throw new RuntimeException("Not Implemenetd yet");
|
throw new RuntimeException("Not Implemenetd yet");
|
||||||
}
|
}
|
||||||
|
public PayloadType[] listVideoCodecs() {
|
||||||
|
throw new RuntimeException("Not Implemenetd yet");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,4 +31,8 @@ class PayloadTypeImpl implements PayloadType {
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return toString(nativePtr);
|
return toString(nativePtr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getMime() {
|
||||||
|
throw new RuntimeException("Not Implemenetd yet");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue