Skip to content
Snippets Groups Projects
Commit 84697085 authored by Boris Grozev's avatar Boris Grozev
Browse files

Formatting (move statics to the top).

parent 6e7f8548
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment