Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
631ebd4e
Commit
631ebd4e
authored
May 30, 2010
by
Laurent Aimar
Browse files
Set vout_display_info_t::has_event_thread for msw and xcb vouts.
parent
6c73ecd0
Changes
6
Hide whitespace changes
Inline
Side-by-side
modules/video_output/msw/direct3d.c
View file @
631ebd4e
...
...
@@ -167,6 +167,7 @@ static int Open(vlc_object_t *object)
info
.
has_double_click
=
true
;
info
.
has_hide_mouse
=
true
;
info
.
has_pictures_invalid
=
true
;
info
.
has_event_thread
=
true
;
/* Interaction */
vlc_mutex_init
(
&
sys
->
lock
);
...
...
modules/video_output/msw/directx.c
View file @
631ebd4e
...
...
@@ -222,6 +222,7 @@ static int Open(vlc_object_t *object)
info
.
has_double_click
=
true
;
info
.
has_hide_mouse
=
true
;
info
.
has_pictures_invalid
=
true
;
info
.
has_event_thread
=
true
;
/* Interaction TODO support starting with wallpaper mode */
vlc_mutex_init
(
&
sys
->
lock
);
...
...
modules/video_output/msw/glwin32.c
View file @
631ebd4e
...
...
@@ -135,6 +135,7 @@ static int Open(vlc_object_t *object)
info
.
has_double_click
=
true
;
info
.
has_hide_mouse
=
true
;
info
.
has_pictures_invalid
=
true
;
info
.
has_event_thread
=
true
;
/* Setup vout_display now that everything is fine */
vd
->
fmt
=
fmt
;
...
...
modules/video_output/xcb/glx.c
View file @
631ebd4e
...
...
@@ -377,6 +377,7 @@ static int Open (vlc_object_t *obj)
/* */
vout_display_info_t
info
=
vd
->
info
;
info
.
has_pictures_invalid
=
false
;
info
.
has_event_thread
=
true
;
/* Setup vout_display_t once everything is fine */
vd
->
info
=
info
;
...
...
modules/video_output/xcb/x11.c
View file @
631ebd4e
...
...
@@ -283,6 +283,7 @@ static int Open (vlc_object_t *obj)
/* */
vout_display_info_t
info
=
vd
->
info
;
info
.
has_pictures_invalid
=
true
;
info
.
has_event_thread
=
true
;
/* Setup vout_display_t once everything is fine */
vd
->
fmt
=
fmt_pic
;
...
...
modules/video_output/xcb/xvideo.c
View file @
631ebd4e
...
...
@@ -520,6 +520,7 @@ static int Open (vlc_object_t *obj)
/* */
vout_display_info_t
info
=
vd
->
info
;
info
.
has_pictures_invalid
=
false
;
info
.
has_event_thread
=
true
;
/* Setup vout_display_t once everything is fine */
vd
->
fmt
=
fmt
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment