Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a07e9d72
Commit
a07e9d72
authored
Oct 16, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yuvPlanartouyvy_c: fix sign extension
Fixes CID732281 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a3097260
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
rgb2rgb_template.c
libswscale/rgb2rgb_template.c
+2
-2
No files found.
libswscale/rgb2rgb_template.c
View file @
a07e9d72
...
...
@@ -417,9 +417,9 @@ static inline void yuvPlanartouyvy_c(const uint8_t *ysrc, const uint8_t *usrc,
const
uint8_t
*
yc
=
ysrc
,
*
uc
=
usrc
,
*
vc
=
vsrc
;
for
(
i
=
0
;
i
<
chromWidth
;
i
+=
2
)
{
uint64_t
k
=
uc
[
0
]
+
(
yc
[
0
]
<<
8
)
+
(
vc
[
0
]
<<
16
)
+
(
yc
[
1
]
<<
24
);
(
vc
[
0
]
<<
16
)
+
(
unsigned
)(
yc
[
1
]
<<
24
);
uint64_t
l
=
uc
[
1
]
+
(
yc
[
2
]
<<
8
)
+
(
vc
[
1
]
<<
16
)
+
(
yc
[
3
]
<<
24
);
(
vc
[
1
]
<<
16
)
+
(
unsigned
)(
yc
[
3
]
<<
24
);
*
ldst
++
=
k
+
(
l
<<
32
);
yc
+=
4
;
uc
+=
2
;
...
...
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