From 846970855763538c41a0f7fb45ad6504580639eb Mon Sep 17 00:00:00 2001
From: Boris Grozev <boris@jitsi.org>
Date: Wed, 14 Jan 2015 17:07:30 +0200
Subject: [PATCH] Formatting (move statics to the top).

---
 .../jitsi/service/neomedia/RTPExtension.java  | 30 ++++++++++---------
 1 file changed, 16 insertions(+), 14 deletions(-)

diff --git a/src/org/jitsi/service/neomedia/RTPExtension.java b/src/org/jitsi/service/neomedia/RTPExtension.java
index eabe841d..7aa2fac7 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
-- 
GitLab