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
4d87d619
Commit
4d87d619
authored
Aug 20, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Screen-win32: Kill warnings
"signed and unsigned type in conditional expression"
parent
2dc5dff3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/access/screen/win32.c
modules/access/screen/win32.c
+3
-3
No files found.
modules/access/screen/win32.c
View file @
4d87d619
...
...
@@ -187,9 +187,9 @@ static block_t *CaptureBlockNew( demux_t *p_demux )
p_data
->
bmi
.
bmiHeader
.
biClrImportant
=
0
;
i_val
=
var_CreateGetInteger
(
p_demux
,
"screen-fragment-size"
);
p_data
->
i_fragment_size
=
i_val
>
0
?
i_val
:
p_sys
->
fmt
.
video
.
i_height
;
p_data
->
i_fragment_size
=
i_val
>
p_sys
->
fmt
.
video
.
i_height
?
p_sys
->
fmt
.
video
.
i_height
:
p_data
->
i_fragment_size
=
i_val
>
0
?
i_val
:
(
int
)
p_sys
->
fmt
.
video
.
i_height
;
p_data
->
i_fragment_size
=
i_val
>
(
int
)
p_sys
->
fmt
.
video
.
i_height
?
(
int
)
p_sys
->
fmt
.
video
.
i_height
:
p_data
->
i_fragment_size
;
p_sys
->
f_fps
*=
(
p_sys
->
fmt
.
video
.
i_height
/
p_data
->
i_fragment_size
);
p_sys
->
i_incr
=
1000000
/
p_sys
->
f_fps
;
...
...
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