Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libjitsi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZRTP
libjitsi
Commits
ba5a33be
Commit
ba5a33be
authored
10 years ago
by
Boris Grozev
Browse files
Options
Downloads
Patches
Plain Diff
Make MediaStream generate an initial local SSRC
before being started.
parent
1caa5c05
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/org/jitsi/impl/neomedia/MediaStreamImpl.java
+2
-2
2 additions, 2 deletions
src/org/jitsi/impl/neomedia/MediaStreamImpl.java
src/org/jitsi/impl/neomedia/SSRCFactoryImpl.java
+59
-0
59 additions, 0 deletions
src/org/jitsi/impl/neomedia/SSRCFactoryImpl.java
with
61 additions
and
2 deletions
src/org/jitsi/impl/neomedia/MediaStreamImpl.java
+
2
−
2
View file @
ba5a33be
...
@@ -173,7 +173,7 @@ else if (MediaDeviceSession.SSRC_LIST.equals(propertyName))
...
@@ -173,7 +173,7 @@ else if (MediaDeviceSession.SSRC_LIST.equals(propertyName))
/**
/**
* Our own SSRC identifier.
* Our own SSRC identifier.
*/
*/
private
long
localSourceID
=
-
1
;
private
long
localSourceID
=
new
Random
().
nextInt
()
;
/**
/**
* The list of CSRC IDs contributing to the media that this
* The list of CSRC IDs contributing to the media that this
...
@@ -250,7 +250,7 @@ else if (MediaDeviceSession.SSRC_LIST.equals(propertyName))
...
@@ -250,7 +250,7 @@ else if (MediaDeviceSession.SSRC_LIST.equals(propertyName))
* instance will employ internal logic to generate new synchronization
* instance will employ internal logic to generate new synchronization
* source (SSRC) identifiers.
* source (SSRC) identifiers.
*/
*/
private
SSRCFactory
ssrcFactory
;
private
SSRCFactory
ssrcFactory
=
new
SSRCFactoryImpl
(
localSourceID
)
;
/**
/**
* Initializes a new <tt>MediaStreamImpl</tt> instance which will use the
* Initializes a new <tt>MediaStreamImpl</tt> instance which will use the
...
...
This diff is collapsed.
Click to expand it.
src/org/jitsi/impl/neomedia/SSRCFactoryImpl.java
0 → 100644
+
59
−
0
View file @
ba5a33be
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package
org.jitsi.impl.neomedia
;
import
net.sf.fmj.media.rtp.*
;
import
org.jitsi.service.neomedia.*
;
import
java.util.*
;
/**
* An <tt>SSRCFactory</tt> implementation which allows the first generated
* SSRC to be set by the user.
*
* @author Lyubomir Marinov
* @author Boris Grozev
*/
class
SSRCFactoryImpl
implements
SSRCFactory
{
private
int
i
=
0
;
private
long
initialLocalSSRC
=
-
1
;
/**
* The <tt>Random</tt> instance used by this <tt>SSRCFactory</tt> to
* generate new synchronization source (SSRC) identifiers.
*/
private
final
Random
random
=
new
Random
();
public
SSRCFactoryImpl
(
long
initialLocalSSRC
)
{
this
.
initialLocalSSRC
=
initialLocalSSRC
;
}
private
int
doGenerateSSRC
()
{
return
random
.
nextInt
();
}
/**
* {@inheritDoc}
*/
@Override
public
long
generateSSRC
(
String
cause
)
{
if
(
initialLocalSSRC
!=
-
1
)
{
if
(
i
++
==
0
)
return
(
int
)
initialLocalSSRC
;
else
if
(
cause
.
equals
(
GenerateSSRCCause
.
REMOVE_SEND_STREAM
.
name
()))
return
Long
.
MAX_VALUE
;
}
return
doGenerateSSRC
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment