diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/SessionProperties.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/SessionProperties.java index 44093f18..22bfbb21 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/SessionProperties.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/SessionProperties.java @@ -120,8 +120,9 @@ public class SessionProperties { * the specified codec and {@link #allowTranscoding(Boolean)} is * false and exception will occur. If forcedVideoCodec is set to * NONE, no codec will be forced.
- * If defined here, this parameter has prevalence over OPENVIDU_STREAMS_FORCED_VIDEO_CODEC. - * OPENVIDU_STREAMS_FORCED_VIDEO_CODEC default is {@link VideoCodec#VP8} + * If defined here, this parameter has prevalence over + * OPENVIDU_STREAMS_FORCED_VIDEO_CODEC. OPENVIDU_STREAMS_FORCED_VIDEO_CODEC + * default is {@link VideoCodec#VP8} */ public SessionProperties.Builder forcedVideoCodec(VideoCodec forcedVideoCodec) { this.forcedVideoCodec = forcedVideoCodec; @@ -132,8 +133,9 @@ public class SessionProperties { * Call this method to define if you want to allow transcoding in the media * server or not when {@link #forcedVideoCodec(VideoCodec)} is not compatible * with the browser/client.
- * If defined here, this parameter has prevalence over OPENVIDU_STREAMS_ALLOW_TRANSCODING. - * OPENVIDU_STREAMS_ALLOW_TRANSCODING default is 'false' + * If defined here, this parameter has prevalence over + * OPENVIDU_STREAMS_ALLOW_TRANSCODING. OPENVIDU_STREAMS_ALLOW_TRANSCODING + * default is 'false' */ public SessionProperties.Builder allowTranscoding(Boolean allowTranscoding) { this.allowTranscoding = allowTranscoding; diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/VideoCodec.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/VideoCodec.java index 3f088fa1..9db0e73c 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/VideoCodec.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/VideoCodec.java @@ -18,8 +18,9 @@ package io.openvidu.java.client; /** - * See {@link io.openvidu.java.client.SessionProperties.Builder#forcedVideoCodec(VideoCodec)} + * See + * {@link io.openvidu.java.client.SessionProperties.Builder#forcedVideoCodec(VideoCodec)} */ public enum VideoCodec { - VP8, VP9, H264, NONE + VP8, VP9, H264, NONE } \ No newline at end of file