From 5bc72cf4d2eb3ac427f6350e253b455a201acc0a Mon Sep 17 00:00:00 2001 From: Boris Grozev <boris@jitsi.org> Date: Tue, 15 Apr 2014 14:49:27 +0200 Subject: [PATCH] Adds an rtpCname field to MediaService. --- src/org/jitsi/impl/neomedia/MediaServiceImpl.java | 14 ++++++++++++++ src/org/jitsi/service/neomedia/MediaService.java | 10 ++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/org/jitsi/impl/neomedia/MediaServiceImpl.java b/src/org/jitsi/impl/neomedia/MediaServiceImpl.java index 0da2349b..a1418888 100755 --- a/src/org/jitsi/impl/neomedia/MediaServiceImpl.java +++ b/src/org/jitsi/impl/neomedia/MediaServiceImpl.java @@ -134,6 +134,12 @@ public class MediaServiceImpl private static final String ENCODING_CONFIG_PROP_PREFIX = "net.java.sip.communicator.impl.neomedia.codec.EncodingConfiguration"; + /** + * The value which will be used for the canonical end-point identifier + * (CNAME) in RTCP packets sent by this running instance of libjitsi. + */ + private static final String rtpCname = UUID.randomUUID().toString(); + /** * The <tt>CaptureDevice</tt> user choices such as the default audio and * video capture devices. @@ -1635,6 +1641,14 @@ public static boolean isMediaTypeSupportEnabled(MediaType mediaType) && !Boolean.getBoolean(propertyName); } + /** + * {@inheritDoc} + */ + public String getRtpCname() + { + return rtpCname; + } + /** * The listener which will be notified for changes in the video container. * Whether the container is displayable or not we will stop the player diff --git a/src/org/jitsi/service/neomedia/MediaService.java b/src/org/jitsi/service/neomedia/MediaService.java index e44b3071..8426661f 100644 --- a/src/org/jitsi/service/neomedia/MediaService.java +++ b/src/org/jitsi/service/neomedia/MediaService.java @@ -380,4 +380,14 @@ public Object getVideoPreviewComponent( * list of listeners interested in notifications from <tt>Recorder</tt>s */ public void removeRecorderListener(Recorder.Listener listener); + + /** + * Returns the value which will be used for the canonical end-point + * identifier (CNAME) in RTCP packets sent by this running instance of + * libjitsi. + * @return the value which will be used for the canonical end-point + * identifier (CNAME) in RTCP packets sent by this running instance of + * libjitsi. + */ + public String getRtpCname(); } -- GitLab