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
Steve Lhomme
VLC
Commits
198c5782
Commit
198c5782
authored
May 22, 2007
by
damienf
Browse files
- win32 vouts: fiex potential crash (SIGFPE) if the output window geometry is empty
parent
9a1b826c
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/video_output/msw/direct3d.c
View file @
198c5782
...
...
@@ -334,7 +334,7 @@ static int Init( vout_thread_t *p_vout )
E_
(
UpdateRects
)(
p_vout
,
VLC_TRUE
);
/* create picture pool */
p_vout
->
fmt_o
ut
.
i_chroma
=
0
;
p_vout
->
outp
ut
.
i_chroma
=
0
;
i_ret
=
Direct3DVoutCreatePictures
(
p_vout
,
1
);
if
(
VLC_SUCCESS
!=
i_ret
)
{
...
...
modules/video_output/msw/events.c
View file @
198c5782
...
...
@@ -688,6 +688,13 @@ void E_(UpdateRects)( vout_thread_t *p_vout, vlc_bool_t b_force )
rect_dest_clipped.right, rect_dest_clipped.bottom );
#endif
#else
/* MODULE_NAME_IS_vout_directx */
/* AFAIK, there are no clipping constraints in Direct3D, OpenGL and GDI */
rect_dest_clipped
=
rect_dest
;
#endif
/* the 2 following lines are to fix a bug when clicking on the desktop */
if
(
(
rect_dest_clipped
.
right
-
rect_dest_clipped
.
left
)
==
0
||
(
rect_dest_clipped
.
bottom
-
rect_dest_clipped
.
top
)
==
0
)
...
...
@@ -695,12 +702,6 @@ void E_(UpdateRects)( vout_thread_t *p_vout, vlc_bool_t b_force )
SetRectEmpty
(
&
rect_src_clipped
);
return
;
}
#else
/* MODULE_NAME_IS_vout_directx */
/* AFAIK, there are no clipping constraints in Direct3D, OpenGL and GDI */
rect_dest_clipped
=
rect_dest
;
#endif
/* src image dimensions */
rect_src
.
left
=
0
;
...
...
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