[vlc-devel] [PATCH 2/5] vout: do not call vout_IntfReinit from vout_IntfInit

Felix Abecassis felix.abecassis at gmail.com
Wed Jan 29 16:37:42 CET 2014


vout_IntfReinit triggers variable callbacks that will queue control
events discarding the initial configuration of the vout display (set
by VoutGetDisplayCfg). See #9931.
---
 src/video_output/vout_intf.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index 20e262a..2363aba 100644
--- a/src/video_output/vout_intf.c
+++ b/src/video_output/vout_intf.c
@@ -323,8 +323,6 @@ void vout_IntfInit( vout_thread_t *p_vout )
     var_Create( p_vout, "mouse-moved", VLC_VAR_COORDS );
     var_Create( p_vout, "mouse-clicked", VLC_VAR_COORDS );
     var_Create( p_vout, "mouse-object", VLC_VAR_BOOL );
-
-    vout_IntfReinit( p_vout );
 }
 
 void vout_IntfReinit( vout_thread_t *p_vout )
-- 
1.8.3.2




More information about the vlc-devel mailing list