]> sjero.net Git - linphone/commitdiff
fix unimplemented method
authorJehan Monnier <jehan.monnier@linphone.org>
Mon, 6 Dec 2010 11:16:23 +0000 (12:16 +0100)
committerJehan Monnier <jehan.monnier@linphone.org>
Mon, 6 Dec 2010 11:16:23 +0000 (12:16 +0100)
LinphoneCallImpl.java
LinphoneCoreImpl.java
PayloadTypeImpl.java

index ed8f0070854a4d82d1d1f582e1701d7719baad0e..ca9d9d55f1b9851fbb491f259a46cac372c4f661 100644 (file)
@@ -61,6 +61,9 @@ class LinphoneCallImpl implements LinphoneCall {
        public LinphoneCallParams getCurrentParamsReadOnly() {
                throw new RuntimeException("Not Implemenetd yet");
        }
+       public void enableCamera(boolean enabled) {
+               throw new RuntimeException("Not Implemenetd yet");
+       }
        
        
 }
index 5aa6a1ce0091f48f134a2c0df245d048f75784ad..83df6de867a203685a0ab3a984ee1b856aa83076 100644 (file)
@@ -359,6 +359,9 @@ class LinphoneCoreImpl implements LinphoneCore {
        public VideoSize getPreferredVideoSize() {
                throw new RuntimeException("Not Implemenetd yet");
        }
+       public PayloadType[] listVideoCodecs() {
+               throw new RuntimeException("Not Implemenetd yet");
+       }
        
 
 }
index 28c206786e1735aefcb48b109d5b0135daf40a69..821e1a09121631b06aafbc8ee1751038f0675847 100644 (file)
@@ -31,4 +31,8 @@ class PayloadTypeImpl implements PayloadType {
        public String toString() {
                return toString(nativePtr);
        }
+
+       public String getMime() {
+               throw new RuntimeException("Not Implemenetd yet");
+       }
 }