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
84697085
Commit
84697085
authored
10 years ago
by
Boris Grozev
Browse files
Options
Downloads
Patches
Plain Diff
Formatting (move statics to the top).
parent
6e7f8548
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/org/jitsi/service/neomedia/RTPExtension.java
+16
-14
16 additions, 14 deletions
src/org/jitsi/service/neomedia/RTPExtension.java
with
16 additions
and
14 deletions
src/org/jitsi/service/neomedia/RTPExtension.java
+
16
−
14
View file @
84697085
...
...
@@ -19,33 +19,35 @@
public
class
RTPExtension
{
/**
* The direction that this extension will be transmitted in.
* The URN identifying the RTP extension that allows mixers to send to
* conference participants the audio levels of all contributing sources.
* Defined in RFC6465.
*/
private
MediaDirection
direction
=
MediaDirection
.
SENDRECV
;
public
static
final
String
CSRC_AUDIO_LEVEL_URN
=
"urn:ietf:params:rtp-hdrext:csrc-audio-level"
;
/**
* The <tt>URI</tt> identifier of this extension.
* The URN identifying the RTP extension that allows clients to send to
* conference mixers the audio level of their packet payload. Defined in
* RFC6464.
*/
private
final
URI
extensionURI
;
public
static
final
String
SSRC_AUDIO_LEVEL_URN
=
"urn:ietf:params:rtp-hdrext:ssrc-audio-level"
;
/**
*
Extension specific attributes
.
*
The direction that this extension will be transmitted in
.
*/
private
String
extensionAttributes
=
null
;
private
MediaDirection
direction
=
MediaDirection
.
SENDRECV
;
/**
* The URN identifying the RTP extension that allows mixers to send to
* conference participants the audio levels of all contributing sources.
* The <tt>URI</tt> identifier of this extension.
*/
public
static
final
String
CSRC_AUDIO_LEVEL_URN
=
"urn:ietf:params:rtp-hdrext:csrc-audio-level"
;
private
final
URI
extensionURI
;
/**
* The URN identifying the RTP extension that allows clients to send to
* conference mixers the audio level of their packet payload.
* Extension specific attributes.
*/
public
static
final
String
SSRC_AUDIO_LEVEL_URN
=
"urn:ietf:params:rtp-hdrext:ssrc-audio-level"
;
private
String
extensionAttributes
=
null
;
/**
* Creates an <tt>RTPExtension</tt> instance for the specified
...
...
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