]> git.sesse.net Git - vlc/commitdiff
- b_rtpts should really b a boolean (!)
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 19 Feb 2007 16:50:32 +0000 (16:50 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 19 Feb 2007 16:50:32 +0000 (16:50 +0000)
- optimize ..._sys_t layout a little

modules/access_output/udp.c

index 4da7d122851094e6b0c8145a6470b31139a4775a..f93ea26b2cec1135904a7be78672f96d967116e7 100644 (file)
@@ -173,17 +173,17 @@ typedef struct sout_access_thread_t
 
 struct sout_access_out_sys_t
 {
-    int                 b_rtpts;  // 1 if add rtp/ts header
+    int                 i_mtu;
+
+    vlc_bool_t          b_rtpts;  // 1 if add rtp/ts header
+    vlc_bool_t          b_mtu_warning;
     uint16_t            i_sequence_number;
     uint32_t            i_ssrc;
 
-    int                 i_mtu;
-
     block_t             *p_buffer;
 
     sout_access_thread_t *p_thread;
 
-    vlc_bool_t          b_mtu_warning;
 };
 
 #define DEFAULT_PORT 1234