]> git.sesse.net Git - vlc/commitdiff
Unused variables
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 5 Jul 2008 18:29:47 +0000 (21:29 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 5 Jul 2008 18:29:47 +0000 (21:29 +0300)
modules/video_output/x11/xcommon.c
src/input/input.c

index bc185d9cc0a5b46c44c61e1966151e2fdddf6e00..9b70a2cd0f51ee590ae500e8938789a50441c924 100644 (file)
@@ -1291,8 +1291,6 @@ static int ManageVideo( vout_thread_t *p_vout )
             {
                 case Button1:
                     {
-                        playlist_t *p_playlist;
-
                         var_Get( p_vout, "mouse-button-down", &val );
                         val.i_int &= ~1;
                         var_Set( p_vout, "mouse-button-down", val );
@@ -1320,7 +1318,6 @@ static int ManageVideo( vout_thread_t *p_vout )
                 case Button3:
                     {
                         intf_thread_t *p_intf;
-                        playlist_t *p_playlist;
 
                         var_Get( p_vout, "mouse-button-down", &val );
                         val.i_int &= ~4;
index d0295b5e03739bdaf908e520e65707dc67c6526f..071bf48e3ca4cf04c908154decd52a03723ed0d4 100644 (file)
@@ -447,9 +447,6 @@ static void ObjectKillChildrens( vlc_object_t *p_obj )
 }
 void input_StopThread( input_thread_t *p_input )
 {
-    vlc_list_t *p_list;
-    int i;
-
     /* Set die for input and ALL of this childrens (even (grand-)grand-childrens)
      * It is needed here even if it is done in INPUT_CONTROL_SET_DIE handler to
      * unlock the control loop */