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
0e949ba4
Commit
0e949ba4
authored
Aug 05, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_filter/blend.c: do not compare signed and unsigned.
parent
c7ceea8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/video_filter/blend.c
modules/video_filter/blend.c
+4
-4
No files found.
modules/video_filter/blend.c
View file @
0e949ba4
...
...
@@ -119,11 +119,11 @@ static void Blend( filter_t *p_filter, picture_t *p_dst,
{
int
i_width
,
i_height
;
i_width
=
__MIN
(
p_filter
->
fmt_out
.
video
.
i_visible_width
-
i_x_offset
,
p_filter
->
fmt_in
.
video
.
i_visible_width
);
i_width
=
__MIN
(
(
int
)
p_filter
->
fmt_out
.
video
.
i_visible_width
-
i_x_offset
,
(
int
)
p_filter
->
fmt_in
.
video
.
i_visible_width
);
i_height
=
__MIN
(
p_filter
->
fmt_out
.
video
.
i_visible_height
-
i_y_offset
,
p_filter
->
fmt_in
.
video
.
i_visible_height
);
i_height
=
__MIN
(
(
int
)
p_filter
->
fmt_out
.
video
.
i_visible_height
-
i_y_offset
,
(
int
)
p_filter
->
fmt_in
.
video
.
i_visible_height
);
if
(
i_width
<=
0
||
i_height
<=
0
)
return
;
...
...
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