]> git.sesse.net Git - vlc/commitdiff
input: Removes unused variable
authorRafaël Carré <funman@videolan.org>
Fri, 28 Sep 2007 09:36:40 +0000 (09:36 +0000)
committerRafaël Carré <funman@videolan.org>
Fri, 28 Sep 2007 09:36:40 +0000 (09:36 +0000)
src/input/var.c

index 96c9d72f93aa3b962d5130b450185e88414bf7dd..2cff5be1386c27ec97f1c45c8ea6fe8a55eea4c7 100644 (file)
@@ -448,10 +448,6 @@ void input_ConfigVarInit ( input_thread_t *p_input )
                     VLC_VAR_INTEGER | VLC_VAR_DOINHERIT);
     }
 
-    var_Create( p_input, "demuxed-id3", VLC_VAR_BOOL ); /* FIXME beurk */
-    val.b_bool = VLC_FALSE;
-    var_Change( p_input, "demuxed-id3", VLC_VAR_SETVALUE, &val, NULL );
-
     var_Create( p_input, "seekable", VLC_VAR_BOOL );
     val.b_bool = VLC_TRUE; /* Fixed later*/
     var_Change( p_input, "seekable", VLC_VAR_SETVALUE, &val, NULL );