Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
46a07106
Commit
46a07106
authored
Aug 23, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MSW: signedness corrections
parent
6541e664
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
modules/video_output/msw/directx.c
modules/video_output/msw/directx.c
+1
-1
modules/video_output/msw/vout.h
modules/video_output/msw/vout.h
+2
-2
modules/video_output/msw/wingdi.c
modules/video_output/msw/wingdi.c
+1
-1
No files found.
modules/video_output/msw/directx.c
View file @
46a07106
...
...
@@ -1186,7 +1186,7 @@ int DirectDrawUpdateOverlay( vout_thread_t *p_vout )
if
(
p_vout
->
p_sys
->
b_wallpaper
)
{
int
i_x
,
i_y
,
i_width
,
i_height
;
unsigned
i_x
,
i_y
,
i_width
,
i_height
;
rect_src
.
left
=
p_vout
->
fmt_out
.
i_x_offset
;
rect_src
.
top
=
p_vout
->
fmt_out
.
i_y_offset
;
...
...
modules/video_output/msw/vout.h
View file @
46a07106
...
...
@@ -149,8 +149,8 @@ struct vout_sys_t
/* DDraw capabilities */
int
b_caps_overlay_clipping
;
int
i_rgb_colorkey
;
/* colorkey in RGB used by the overlay */
int
i_colorkey
;
/* colorkey used by the overlay */
unsigned
int
i_rgb_colorkey
;
/* colorkey in RGB used by the overlay */
unsigned
int
i_colorkey
;
/* colorkey used by the overlay */
COLORREF
color_bkg
;
COLORREF
color_bkgtxt
;
...
...
modules/video_output/msw/wingdi.c
View file @
46a07106
...
...
@@ -358,7 +358,7 @@ static int Manage( vout_thread_t *p_vout )
if
(
!
EqualRect
(
&
rect_parent
,
&
p_vout
->
p_sys
->
rect_parent
)
)
{
int
i_x
,
i_y
,
i_width
,
i_height
;
unsigned
int
i_x
,
i_y
,
i_width
,
i_height
;
p_vout
->
p_sys
->
rect_parent
=
rect_parent
;
/* This one is to force the update even if only
...
...
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