]> git.sesse.net Git - vlc/commitdiff
Fixed compilation warnings.
authorLaurent Aimar <fenrir@videolan.org>
Sun, 27 May 2007 16:50:56 +0000 (16:50 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 27 May 2007 16:50:56 +0000 (16:50 +0000)
modules/access/dvdnav.c
modules/access/v4l2.c
modules/audio_filter/equalizer.c

index 129939c4ef1e5e8248fa5f7fc0c3d6eb0b7b8d01..1e6fcc45234df3ebc62b89234194b621b1f2c6c6 100644 (file)
@@ -159,7 +159,7 @@ static void ButtonUpdate( demux_t *, vlc_bool_t );
 static void ESNew( demux_t *, int );
 static int ProbeDVD( demux_t *, char * );
 
-static char *DemuxGetLanguageCode( demux_t *p_demux, char *psz_var );
+static char *DemuxGetLanguageCode( demux_t *p_demux, const char *psz_var );
 
 /*****************************************************************************
  * DemuxOpen:
@@ -815,7 +815,7 @@ static int Demux( demux_t *p_demux )
 /* Get a 2 char code
  * FIXME: partiallyy duplicated from src/input/es_out.c
  */
-static char *DemuxGetLanguageCode( demux_t *p_demux, char *psz_var )
+static char *DemuxGetLanguageCode( demux_t *p_demux, const char *psz_var )
 {
     const iso639_lang_t *pl;
     char *psz_lang;
index 4af83d4d85d71bb4b3119c62ddc1abf39fdda504..585f9b18427fe094dcb5ad3b7ab8accd91c87c27 100644 (file)
@@ -87,8 +87,6 @@ static int Control( demux_t *, int, va_list );
 static int ProbeDev( demux_t * );
 static int OpenVideoDev( demux_t * );
 
-static block_t *GrabVideo( demux_t * );
-
 struct demux_sys_t
 {
     char *psz_device;
@@ -123,7 +121,6 @@ static int Open( vlc_object_t *p_this )
 {
     demux_t     *p_demux = (demux_t*)p_this;
     demux_sys_t *p_sys;
-    demux_sys_t sys;
 
     /* Only when selected */
     if( *p_demux->psz_access == '\0' )
@@ -171,6 +168,7 @@ static void Close( vlc_object_t *p_this )
  *****************************************************************************/
 static int Control( demux_t *p_demux, int i_query, va_list args )
 {
+    return VLC_EGENERIC;
 }
 
 /*****************************************************************************
@@ -178,6 +176,8 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
  *****************************************************************************/
 static int DemuxMMAP( demux_t *p_demux )
 {
+    msleep( 40000 );
+    return 1;
 }
 
 
@@ -196,9 +196,9 @@ int OpenVideoDev( demux_t *p_demux )
     }
 
     p_sys->i_fd_video = i_fd;
+    p_sys->i_selected_input = var_CreateGetInteger( p_demux, "v4l2-input" );
 
-    if( p_sys->i_selected_input = var_CreateGetInteger( p_demux, "v4l2-input" )
-        > p_sys->i_input )
+    if( p_sys->i_selected_input > p_sys->i_input )
     {
         msg_Warn( p_demux, "invalid input. Using the default one" );
         p_sys->i_selected_input = 0;
@@ -355,8 +355,9 @@ int ProbeDev( demux_t *p_demux )
 
     if( p_sys->dev_cap.capabilities & V4L2_CAP_TUNER )
     {
-        struct v4l2_tuner tuner = {};
+        struct v4l2_tuner tuner;
 
+        memset( &tuner, 0, sizeof(tuner) );
         while( ioctl( i_fd, VIDIOC_S_TUNER, &tuner ) >= 0 )
         {
             p_sys->i_tuner++;
@@ -398,9 +399,10 @@ int ProbeDev( demux_t *p_demux )
     /* Probe for available chromas */
     if( p_sys->dev_cap.capabilities & V4L2_CAP_VIDEO_CAPTURE )
     {
-        struct v4l2_fmtdesc codec = {};
+        struct v4l2_fmtdesc codec;
 
         i_index = 0;
+        memset( &codec, 0, sizeof(codec) );
         codec.index = i_index;
         codec.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
 
index 15f24fb2c804eff065cc899e478bbb608159d674..f1dbc08f817c6826a2fd2ac2ad5bdf4545c49a03 100644 (file)
@@ -492,7 +492,7 @@ static int PresetCallback( vlc_object_t *p_this, char const *psz_cmd,
                     div = lldiv( eqz_preset_10b[i]->f_amp[j] * 10000000,
                                  10000000 );
                     sprintf( psz_newbands, "%s "I64Fd".%07u", psz_newbands,
-                                      div.quot, (unsigned int) div.rem );
+                                      (int64_t)div.quot, (unsigned int) div.rem );
                 }
                 if( p_sys->b_first == VLC_FALSE )
                 {