Commit a4ebcf66 authored by Laurent Aimar's avatar Laurent Aimar

Removed one vlc_object_find(VOUT, CHILD) in mkv.

parent 097ab852
...@@ -536,8 +536,7 @@ void * demux_sys_t::EventThread( vlc_object_t *p_this ) ...@@ -536,8 +536,7 @@ void * demux_sys_t::EventThread( vlc_object_t *p_this )
else if( p_vout == NULL ) else if( p_vout == NULL )
{ {
p_vout = (vlc_object_t*) vlc_object_find( p_sys->p_input, VLC_OBJECT_VOUT, p_vout = (vlc_object_t*) input_GetVout(p_sys->p_input);
FIND_CHILD );
if( p_vout) if( p_vout)
{ {
var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev ); var_AddCallback( p_vout, "mouse-moved", EventMouse, p_ev );
......
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