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
c8c2fb09
Commit
c8c2fb09
authored
May 03, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_convolution: unbreak roberts filter
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
3a96534e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
vf_convolution.c
libavfilter/vf_convolution.c
+4
-4
No files found.
libavfilter/vf_convolution.c
View file @
c8c2fb09
...
...
@@ -165,8 +165,8 @@ static void filter16_roberts(uint8_t *dstp, const uint8_t *src, int width,
int
x
;
for
(
x
=
0
;
x
<
width
;
x
++
)
{
int
suma
=
AV_RN16A
(
&
c
[
0
][
2
*
x
])
*
1
+
AV_RN16A
(
&
c
[
4
][
2
*
x
])
*
-
1
;
int
sumb
=
AV_RN16A
(
&
c
[
1
][
2
*
x
])
*
1
+
AV_RN16A
(
&
c
[
3
][
2
*
x
])
*
-
1
;
int
suma
=
AV_RN16A
(
&
c
[
0
][
2
*
x
])
*
1
+
AV_RN16A
(
&
c
[
1
][
2
*
x
])
*
-
1
;
int
sumb
=
AV_RN16A
(
&
c
[
4
][
2
*
x
])
*
1
+
AV_RN16A
(
&
c
[
3
][
2
*
x
])
*
-
1
;
dst
[
x
]
=
av_clip
(
sqrt
(
suma
*
suma
+
sumb
*
sumb
)
*
scale
+
delta
,
0
,
peak
);
}
...
...
@@ -215,8 +215,8 @@ static void filter_roberts(uint8_t *dst, const uint8_t *src, int width,
int
x
;
for
(
x
=
0
;
x
<
width
;
x
++
)
{
int
suma
=
c
[
0
][
x
-
1
]
*
1
+
c
[
4
][
x
]
*
-
1
;
int
sumb
=
c
[
1
][
x
]
*
1
+
c
[
3
][
x
-
1
]
*
-
1
;
int
suma
=
c
[
0
][
x
]
*
1
+
c
[
1
][
x
]
*
-
1
;
int
sumb
=
c
[
4
][
x
]
*
1
+
c
[
3
][
x
]
*
-
1
;
dst
[
x
]
=
av_clip_uint8
(
sqrt
(
suma
*
suma
+
sumb
*
sumb
)
*
scale
+
delta
);
}
...
...
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