]> git.sesse.net Git - vlc/commitdiff
* ./modules/access/dvdplay/demux.c: fixed a minor warning.
authorSam Hocevar <sam@videolan.org>
Fri, 7 Feb 2003 00:26:23 +0000 (00:26 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 7 Feb 2003 00:26:23 +0000 (00:26 +0000)
include/interface.h
modules/access/dvdplay/demux.c

index dd5f70d5f47ad73d80eb7cf710027b54238b659b..25d9c9eeb4454ba733d3dd62dbda9f5a8cafeca6 100644 (file)
@@ -4,7 +4,7 @@
  * interface, such as message output.
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: interface.h,v 1.38 2003/02/06 23:59:40 sam Exp $
+ * $Id: interface.h,v 1.39 2003/02/07 00:26:23 sam Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -12,7 +12,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -39,7 +39,7 @@ struct intf_thread_t
     /* Specific interfaces */
     intf_console_t *    p_console;                                /* console */
     intf_sys_t *        p_sys;                           /* system interface */
-    
+
     /* Interface module */
     module_t *   p_module;
     void      ( *pf_run )    ( intf_thread_t * );
index d14c6793509935d7d529a702738d7ae24058abfb..8463cd5dcb446d80f5a4e6e1b20b585efd59bd0f 100644 (file)
@@ -2,7 +2,7 @@
  * demux.c: demux functions for dvdplay.
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: demux.c,v 1.4 2003/02/06 23:59:40 sam Exp $
+ * $Id: demux.c,v 1.5 2003/02/07 00:26:23 sam Exp $
  *
  * Author: Stéphane Borel <stef@via.ecp.fr>
  *
@@ -10,7 +10,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@@ -30,6 +30,7 @@
 
 #include <vlc/vlc.h>
 #include <vlc/input.h>
+#include <vlc/intf.h>
 
 #include "../../demux/mpeg/system.h"
 
@@ -147,7 +148,7 @@ static int Demux( input_thread_t * p_input )
     int                     i_data_nb = 0;
 
     p_dvd = p_input->p_demux_data->p_dvd;
-   
+
     /* Read headers to compute payload length */
     do
     {
@@ -161,14 +162,14 @@ static int Demux( input_thread_t * p_input )
         i_remains = p_input->p_last_data - p_input->p_current_data;
 
         p_input->p_demux_data->mpeg.pf_demux_ps( p_input, p_data );
-        
+
 
         ++i_data_nb;
     }
     while( i_remains );
-    
 
-    
+
+
 //    if( p_dvd->b_still && p_dvd->b_end_of_cell && p_dvd->p_intf != NULL )
     if( p_dvd->i_still_time && p_dvd->b_end_of_cell && p_dvd->p_intf != NULL )
     {
@@ -179,14 +180,14 @@ static int Demux( input_thread_t * p_input )
 
         dvdIntfStillTime( p_dvd->p_intf, p_dvd->i_still_time );
         p_dvd->i_still_time = 0;
-        
+
         vlc_mutex_lock( &p_input->stream.stream_lock );
-        
+
         p_pgrm = p_input->stream.p_selected_program;
         p_pgrm->i_synchro_state = SYNCHRO_REINIT;
-        
+
         vlc_mutex_unlock( &p_input->stream.stream_lock );
-        
+
         input_ClockManageControl( p_input, p_pgrm, 0 );
     }