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
6b19dc64
Commit
6b19dc64
authored
Feb 13, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vout: fix signedness warnings
parent
4aef1ff0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
include/vlc_vout_wrapper.h
include/vlc_vout_wrapper.h
+1
-1
src/video_output/display.c
src/video_output/display.c
+3
-3
No files found.
include/vlc_vout_wrapper.h
View file @
6b19dc64
...
...
@@ -86,7 +86,7 @@ VLC_API bool vout_ManageDisplay(vout_display_t *, bool allow_reset_pictures);
VLC_API
void
vout_SetDisplayFullscreen
(
vout_display_t
*
,
bool
is_fullscreen
);
VLC_API
void
vout_SetDisplayFilled
(
vout_display_t
*
,
bool
is_filled
);
VLC_API
void
vout_SetDisplayZoom
(
vout_display_t
*
,
int
num
,
int
den
);
VLC_API
void
vout_SetDisplayZoom
(
vout_display_t
*
,
unsigned
num
,
unsigned
den
);
VLC_API
void
vout_SetWindowState
(
vout_display_t
*
,
unsigned
state
);
VLC_API
void
vout_SetDisplayAspect
(
vout_display_t
*
,
unsigned
dar_num
,
unsigned
dar_den
);
VLC_API
void
vout_SetDisplayCrop
(
vout_display_t
*
,
unsigned
crop_num
,
unsigned
crop_den
,
unsigned
left
,
unsigned
top
,
int
right
,
int
bottom
);
...
...
src/video_output/display.c
View file @
6b19dc64
...
...
@@ -301,8 +301,8 @@ struct vout_display_owner_sys_t {
bool
ch_zoom
;
struct
{
int
num
;
int
den
;
unsigned
num
;
unsigned
den
;
}
zoom
;
bool
ch_wm_state
;
...
...
@@ -1141,7 +1141,7 @@ void vout_SetDisplayFilled(vout_display_t *vd, bool is_filled)
}
}
void
vout_SetDisplayZoom
(
vout_display_t
*
vd
,
int
num
,
int
den
)
void
vout_SetDisplayZoom
(
vout_display_t
*
vd
,
unsigned
num
,
unsigned
den
)
{
vout_display_owner_sys_t
*
osys
=
vd
->
owner
.
sys
;
...
...
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