]> git.sesse.net Git - vlc/commitdiff
Cosmetics.
authorAntoine Cellerier <dionoea@videolan.org>
Mon, 9 Jun 2008 07:55:22 +0000 (09:55 +0200)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 18 Jun 2008 10:13:37 +0000 (12:13 +0200)
modules/demux/ps.c
src/input/input_internal.h

index f7ffc3e8251732962e7f5e0fce5363b418f2d611..fbd01a0a48a03cd04cc9293f28b04fe6dbdf8156 100644 (file)
@@ -388,7 +388,7 @@ static int Demux( demux_t *p_demux )
 #endif
                 !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) )
             {
-                if( !b_new && !p_sys->b_have_pack && 
+                if( !b_new && !p_sys->b_have_pack &&
                     (tk->fmt.i_cat == AUDIO_ES) &&
                     (p_pkt->i_pts > 0) )
                 {
index fb271ac34b0a1d94566f6a2c92443ec360e1d96c..42f06de6150ce95e45509cc3140a20722b18ff2b 100644 (file)
@@ -47,7 +47,7 @@ typedef struct
     demux_t  *p_demux;
 
     /* Title infos for that input */
-    bool   b_title_demux; /* Titles/Seekpoints provided by demux */
+    bool         b_title_demux; /* Titles/Seekpoints provided by demux */
     int          i_title;
     input_title_t **title;
 
@@ -65,7 +65,7 @@ typedef struct
     bool b_can_rate_control;
     bool b_rescale_ts;
 
-    bool b_eof;   /* eof of demuxer */
+    bool       b_eof;   /* eof of demuxer */
     double     f_fps;
 
     /* Clock average variation */
@@ -80,8 +80,8 @@ struct input_thread_private_t
     vlc_event_manager_t event_manager;
 
     /* Global properties */
-    bool  b_can_pause;
-    bool  b_can_rate_control;
+    bool        b_can_pause;
+    bool        b_can_rate_control;
 
     int         i_rate;
     /* */
@@ -105,9 +105,9 @@ struct input_thread_private_t
     input_attachment_t **attachment;
 
     /* Output */
-    es_out_t    *p_es_out;
+    es_out_t        *p_es_out;
     sout_instance_t *p_sout;            /* XXX Move it to es_out ? */
-    bool      b_out_pace_control; /*     idem ? */
+    bool            b_out_pace_control; /*     idem ? */
 
     /* Main input properties */
     input_source_t input;
@@ -363,7 +363,7 @@ typedef struct
     mtime_t                 last_update;
     int                     i_synchro_state;
 
-    bool              b_master;
+    bool                    b_master;
 
     int                     i_rate;
 
@@ -466,7 +466,7 @@ struct stream_t
     /* UTF-16 and UTF-32 file reading */
     vlc_iconv_t     conv;
     int             i_char_width;
-    bool      b_little_endian;
+    bool            b_little_endian;
 };
 
 #include <libvlc.h>