Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jean-Baptiste Kempf
VLC
Commits
1f8cb7bb
Commit
1f8cb7bb
authored
May 25, 2004
by
gbazin
Browse files
* modules/video_output/directx/events.c: fixed deadlock when switching deinterlacing mode.
parent
4b13c40d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/directx/events.c
View file @
1f8cb7bb
...
@@ -455,8 +455,11 @@ static int DirectXCreateWindow( vout_thread_t *p_vout )
...
@@ -455,8 +455,11 @@ static int DirectXCreateWindow( vout_thread_t *p_vout )
/* We don't want the window owner to overwrite our client area */
/* We don't want the window owner to overwrite our client area */
i_style
=
GetWindowLong
(
p_vout
->
p_sys
->
hparent
,
GWL_STYLE
);
i_style
=
GetWindowLong
(
p_vout
->
p_sys
->
hparent
,
GWL_STYLE
);
SetWindowLong
(
p_vout
->
p_sys
->
hparent
,
GWL_STYLE
,
i_style
|
WS_CLIPCHILDREN
);
if
(
!
(
i_style
&
WS_CLIPCHILDREN
)
)
/* Hmmm, apparently this is a blocking call... */
SetWindowLong
(
p_vout
->
p_sys
->
hparent
,
GWL_STYLE
,
i_style
|
WS_CLIPCHILDREN
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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