Commit 2dfd048e authored by Rémi Duraffort's avatar Rémi Duraffort

gestures: cleaning.

parent 8285136c
...@@ -385,13 +385,16 @@ static void RunIntf( intf_thread_t *p_intf ) ...@@ -385,13 +385,16 @@ static void RunIntf( intf_thread_t *p_intf )
vlc_object_release( p_input ); vlc_object_release( p_input );
} }
break; break;
case GESTURE(UP,LEFT,NONE,NONE): case GESTURE(UP,LEFT,NONE,NONE):
if (p_intf->p_sys->p_vout ) if (p_intf->p_sys->p_vout )
{ {
((vout_thread_t *)p_intf->p_sys->p_vout)->i_changes |= var_Get( p_intf->p_sys->p_vout, "fullscreen", &val );
VOUT_FULLSCREEN_CHANGE; val.b_bool = !val.b_bool;
var_Set( p_intf->p_sys->p_vout, "fullscreen", val );
} }
break; break;
case GESTURE(DOWN,LEFT,NONE,NONE): case GESTURE(DOWN,LEFT,NONE,NONE):
/* FIXME: Should close the vout!"*/ /* FIXME: Should close the vout!"*/
libvlc_Quit( p_intf->p_libvlc ); libvlc_Quit( p_intf->p_libvlc );
...@@ -423,8 +426,14 @@ static void RunIntf( intf_thread_t *p_intf ) ...@@ -423,8 +426,14 @@ static void RunIntf( intf_thread_t *p_intf )
if( p_intf->p_sys->p_vout == NULL ) if( p_intf->p_sys->p_vout == NULL )
{ {
p_intf->p_sys->p_vout = vlc_object_find( p_intf, p_playlist = pl_Hold( p_intf );
VLC_OBJECT_VOUT, FIND_ANYWHERE ); p_input = playlist_CurrentInput( p_playlist );
pl_Release( p_intf );
if( p_input )
{
p_intf->p_sys->p_vout = input_GetVout( p_input );
vlc_object_release( p_input );
}
if( p_intf->p_sys->p_vout ) if( p_intf->p_sys->p_vout )
{ {
var_AddCallback( p_intf->p_sys->p_vout, "mouse-moved", var_AddCallback( p_intf->p_sys->p_vout, "mouse-moved",
......
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