diff --git a/src/org/jitsi/service/neomedia/RTPExtension.java b/src/org/jitsi/service/neomedia/RTPExtension.java
index eabe841d20558b451e0009cd0efe30da9ea4a9d0..7aa2fac7009c693a08960f25c346d87a76b09407 100644
--- a/src/org/jitsi/service/neomedia/RTPExtension.java
+++ b/src/org/jitsi/service/neomedia/RTPExtension.java
@@ -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