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
c49307e7
Commit
c49307e7
authored
Dec 21, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_sofalizer: use fabsf() instead of fabs()
parent
555f332e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
af_sofalizer.c
libavfilter/af_sofalizer.c
+3
-3
No files found.
libavfilter/af_sofalizer.c
View file @
c49307e7
...
@@ -351,8 +351,8 @@ static int sofalizer_convolute(AVFilterContext *ctx, void *arg, int jobnr, int n
...
@@ -351,8 +351,8 @@ static int sofalizer_convolute(AVFilterContext *ctx, void *arg, int jobnr, int n
}
}
/* clippings counter */
/* clippings counter */
if
(
fabs
(
dst
[
0
])
>
1
)
if
(
fabs
f
(
dst
[
0
])
>
1
)
*
n_clippings
+=
1
;
n_clippings
[
0
]
++
;
/* move output buffer pointer by +2 to get to next sample of processed channel: */
/* move output buffer pointer by +2 to get to next sample of processed channel: */
dst
+=
2
;
dst
+=
2
;
...
@@ -469,7 +469,7 @@ static int sofalizer_fast_convolute(AVFilterContext *ctx, void *arg, int jobnr,
...
@@ -469,7 +469,7 @@ static int sofalizer_fast_convolute(AVFilterContext *ctx, void *arg, int jobnr,
/* go through all samples of current output buffer: count clippings */
/* go through all samples of current output buffer: count clippings */
for
(
i
=
0
;
i
<
out
->
nb_samples
;
i
++
)
{
for
(
i
=
0
;
i
<
out
->
nb_samples
;
i
++
)
{
/* clippings counter */
/* clippings counter */
if
(
fabs
(
*
dst
)
>
1
)
{
/* if current output sample > 1 */
if
(
fabs
f
(
dst
[
0
]
)
>
1
)
{
/* if current output sample > 1 */
n_clippings
[
0
]
++
;
n_clippings
[
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