Commit 9e26639a authored by Laurent Aimar's avatar Laurent Aimar

Fixed b_desktop initialization (msw).

It does not change anything because it was already at the right
value.
parent b28b9388
...@@ -186,6 +186,8 @@ static int OpenVideo( vlc_object_t *p_this ) ...@@ -186,6 +186,8 @@ static int OpenVideo( vlc_object_t *p_this )
return VLC_EGENERIC; return VLC_EGENERIC;
} }
p_vout->p_sys->b_desktop = false;
/* Initialisations */ /* Initialisations */
p_vout->pf_init = Init; p_vout->pf_init = Init;
p_vout->pf_end = End; p_vout->pf_end = End;
...@@ -197,7 +199,6 @@ static int OpenVideo( vlc_object_t *p_this ) ...@@ -197,7 +199,6 @@ static int OpenVideo( vlc_object_t *p_this )
if( CommonInit( p_vout ) ) if( CommonInit( p_vout ) )
goto error; goto error;
p_vout->p_sys->b_desktop = false;
var_Create( p_vout, "directx-hw-yuv", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Create( p_vout, "directx-hw-yuv", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
var_Create( p_vout, "directx-device", VLC_VAR_STRING | VLC_VAR_DOINHERIT ); var_Create( p_vout, "directx-device", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
......
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