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
c31fa1d7
Commit
c31fa1d7
authored
Jan 05, 2016
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/avf_showspectrum: use av_clip/lrintf
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
0d3b31ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
avf_showspectrum.c
libavfilter/avf_showspectrum.c
+3
-3
No files found.
libavfilter/avf_showspectrum.c
View file @
c31fa1d7
...
...
@@ -595,7 +595,7 @@ static int plot_spectrum_column(AVFilterLink *inlink, AVFrame *insamples)
a
=
pow
(
a
,
0
.
20
);
break
;
case
LOG
:
a
=
1
+
log10
(
FFMAX
(
FFMIN
(
1
,
a
*
w
),
1e-6
))
/
6
;
// zero = -120dBFS
a
=
1
+
log10
(
av_clipd
(
a
*
w
,
1e-6
,
1
))
/
6
;
// zero = -120dBFS
break
;
default:
av_assert0
(
0
);
...
...
@@ -632,7 +632,7 @@ static int plot_spectrum_column(AVFilterLink *inlink, AVFrame *insamples)
(
outlink
->
h
-
1
)
*
outpicref
->
linesize
[
plane
]
+
s
->
xpos
;
for
(
y
=
0
;
y
<
outlink
->
h
;
y
++
)
{
*
p
=
lrint
(
FFMAX
(
0
,
FFMIN
(
s
->
combine_buffer
[
3
*
y
+
plane
],
255
)
));
*
p
=
lrint
f
(
av_clipf
(
s
->
combine_buffer
[
3
*
y
+
plane
],
0
,
255
));
p
-=
outpicref
->
linesize
[
plane
];
}
}
...
...
@@ -660,7 +660,7 @@ static int plot_spectrum_column(AVFilterLink *inlink, AVFrame *insamples)
uint8_t
*
p
=
outpicref
->
data
[
plane
]
+
s
->
xpos
*
outpicref
->
linesize
[
plane
];
for
(
x
=
0
;
x
<
outlink
->
w
;
x
++
)
{
*
p
=
lrint
(
FFMAX
(
0
,
FFMIN
(
s
->
combine_buffer
[
3
*
x
+
plane
],
255
)
));
*
p
=
lrint
f
(
av_clipf
(
s
->
combine_buffer
[
3
*
x
+
plane
],
0
,
255
));
p
++
;
}
}
...
...
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