]> git.sesse.net Git - vlc/commitdiff
Remove of excess whitespace
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 22 Feb 2007 20:10:59 +0000 (20:10 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 22 Feb 2007 20:10:59 +0000 (20:10 +0000)
modules/audio_output/alsa.c
modules/demux/avi/avi.c
modules/stream_out/rtp.c

index d69ad62137dc5725e30edf9a2ab274ac3043198e..f0b981707fbb0e69ed578f6b2970f9a744b22d2b 100644 (file)
@@ -982,7 +982,6 @@ static void GetDevicesForCard(module_config_t *p_item, int i_card)
         p_item->i_list++;
         p_item->ppsz_list[ p_item->i_list ] = NULL;
         p_item->ppsz_list_text[ p_item->i_list ] = NULL;
-                
     }
 
     snd_ctl_close( p_ctl );
index 2e8c6957759c242d42e19d1f560c0e552eb3d6d5..d479e34f4a09f2567a255cc9547d151458afceba 100644 (file)
@@ -1077,7 +1077,7 @@ static int Demux_UnSeekable( demux_t *p_demux )
         msg_Err( p_demux, "Can not yet process muxed avi substreams without seeking" );
         return VLC_EGENERIC;
     }
-   
+
     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time + 1 );
 
     /* *** find master stream for data packet skipping algo *** */
@@ -1318,8 +1318,6 @@ static int Seek( demux_t *p_demux, mtime_t i_date, int i_percent )
 
 /*****************************************************************************
  * Control:
- *****************************************************************************
- *
  *****************************************************************************/
 static double ControlGetPosition( demux_t *p_demux )
 {
@@ -1354,7 +1352,7 @@ static double ControlGetPosition( demux_t *p_demux )
     return 0.0;
 }
 
-static int    Control( demux_t *p_demux, int i_query, va_list args )
+static int Control( demux_t *p_demux, int i_query, va_list args )
 {
     demux_sys_t *p_sys = p_demux->p_sys;
     int i;
index d97d10d9030b978939af2df798c554f05370c9c7..04dd2f07f0487fde605dd5fdcb556ffb20842d23 100644 (file)
@@ -1162,7 +1162,7 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
                 char    *p_64_sps = NULL;
                 char    *p_64_pps = NULL;
                 char    hexa[6];
-                
+
                 while( i_buffer > 4 && 
                     p_buffer[0] == 0 && p_buffer[1] == 0 &&
                     p_buffer[2] == 0 && p_buffer[3] == 1 )
@@ -1172,9 +1172,9 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
                     int i_size      = 0;
                     int i_startcode = 0;
                     int i_encoded   = 0;
-                    
+
                     msg_Dbg( p_stream, "we found a startcode for NAL with TYPE:%d", i_nal_type );
-                    
+
                     for( i_offset = 1; i_offset+3 < i_buffer ; i_offset++)
                     {
                         if( p_buffer[i_offset] == 0 && p_buffer[i_offset+1] == 0 && p_buffer[i_offset+2] == 0 && p_buffer[i_offset+3] == 1 )