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
57815cfa
Commit
57815cfa
authored
Nov 20, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_overlay: fix crash with negative y
parent
e3a96309
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vf_overlay.c
libavfilter/vf_overlay.c
+4
-4
No files found.
libavfilter/vf_overlay.c
View file @
57815cfa
...
...
@@ -473,12 +473,12 @@ static av_always_inline void blend_plane(AVFilterContext *ctx,
slice_start
=
(
jmax
*
jobnr
)
/
nb_jobs
;
slice_end
=
(
jmax
*
(
jobnr
+
1
))
/
nb_jobs
;
sp
=
src
->
data
[
i
]
+
slice_start
*
src
->
linesize
[
i
];
sp
=
src
->
data
[
i
]
+
(
j
+
slice_start
)
*
src
->
linesize
[
i
];
dp
=
dst
->
data
[
dst_plane
]
+
(
yp
+
slice_start
)
*
dst
->
linesize
[
dst_plane
]
+
(
yp
+
j
+
slice_start
)
*
dst
->
linesize
[
dst_plane
]
+
dst_offset
;
ap
=
src
->
data
[
3
]
+
(
slice_start
<<
vsub
)
*
src
->
linesize
[
3
];
dap
=
dst
->
data
[
3
]
+
((
yp
+
slice_start
)
<<
vsub
)
*
dst
->
linesize
[
3
];
ap
=
src
->
data
[
3
]
+
(
j
+
slice_start
<<
vsub
)
*
src
->
linesize
[
3
];
dap
=
dst
->
data
[
3
]
+
((
yp
+
j
+
slice_start
)
<<
vsub
)
*
dst
->
linesize
[
3
];
for
(
j
=
j
+
slice_start
;
j
<
slice_end
;
j
++
)
{
k
=
FFMAX
(
-
xp
,
0
);
...
...
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