Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ec8576f8
Commit
ec8576f8
authored
May 16, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use correct datatype. It will shutup the compiler.
parent
a91eb393
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/video_output/image.c
modules/video_output/image.c
+4
-4
No files found.
modules/video_output/image.c
View file @
ec8576f8
...
...
@@ -116,8 +116,8 @@ struct vout_sys_t
char
*
psz_format
;
/* Format */
int
i_ratio
;
/* Image ratio */
int
i_width
;
/* Image width */
int
i_height
;
/* Image height */
unsigned
int
i_width
;
/* Image width */
unsigned
int
i_height
;
/* Image height */
int
i_current
;
/* Current image */
int
i_frames
;
/* Number of frames */
...
...
@@ -288,9 +288,9 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic )
fmt_in
.
i_width
=
p_vout
->
render
.
i_width
;
fmt_in
.
i_height
=
p_vout
->
render
.
i_height
;
fmt_out
.
i_width
=
p_vout
->
p_sys
->
i_width
>
0
?
p_vout
->
p_sys
->
i_width
:
fmt_out
.
i_width
=
(
p_vout
->
p_sys
->
i_width
>
0
)
?
p_vout
->
p_sys
->
i_width
:
p_vout
->
render
.
i_width
;
fmt_out
.
i_height
=
p_vout
->
p_sys
->
i_height
>
0
?
p_vout
->
p_sys
->
i_height
:
fmt_out
.
i_height
=
(
p_vout
->
p_sys
->
i_height
>
0
)
?
p_vout
->
p_sys
->
i_height
:
p_vout
->
render
.
i_height
;
if
(
p_vout
->
p_sys
->
b_time
)
...
...
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