Commit d30bcae9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unused variables

parent b32bc648
......@@ -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;
......
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment