Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c0da24fe
Commit
c0da24fe
authored
Aug 08, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use parenthesis to make it more readible.`
parent
cbbe174a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/video_filter/blend.c
modules/video_filter/blend.c
+2
-2
No files found.
modules/video_filter/blend.c
View file @
c0da24fe
...
...
@@ -1472,7 +1472,7 @@ static void BlendPalI420( filter_t *p_filter, picture_t *p_dst,
/* Completely opaque. Completely overwrite underlying pixel */
p_dst_y
[
i_x
]
=
p_pal
[
p_src2
[
i_x
]][
0
];
if
(
b_even_scanline
&&
i_x
%
2
==
0
)
if
(
b_even_scanline
&&
((
i_x
%
2
)
==
0
)
)
{
p_dst_u
[
i_x
/
2
]
=
p_pal
[
p_src2
[
i_x
]][
1
];
p_dst_v
[
i_x
/
2
]
=
p_pal
[
p_src2
[
i_x
]][
2
];
...
...
@@ -1485,7 +1485,7 @@ static void BlendPalI420( filter_t *p_filter, picture_t *p_dst,
(
uint16_t
)
p_src1_y
[
i_x
]
*
(
MAX_TRANS
-
i_trans
)
)
>>
TRANS_BITS
;
if
(
b_even_scanline
&&
i_x
%
2
==
0
)
if
(
b_even_scanline
&&
((
i_x
%
2
)
==
0
)
)
{
p_dst_u
[
i_x
/
2
]
=
(
(
uint16_t
)
p_pal
[
p_src2
[
i_x
]][
1
]
*
i_trans
+
(
uint16_t
)
p_src1_u
[
i_x
/
2
]
*
(
MAX_TRANS
-
i_trans
)
)
...
...
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