Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
7fd52159
Commit
7fd52159
authored
10 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
compressor: really use single precision
parent
1ba32fb7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/audio_filter/compressor.c
+6
-6
6 additions, 6 deletions
modules/audio_filter/compressor.c
with
6 additions
and
6 deletions
modules/audio_filter/compressor.c
+
6
−
6
View file @
7fd52159
...
...
@@ -549,8 +549,8 @@ static void RoundToZero( float *pf_x )
static
float
Max
(
float
f_x
,
float
f_a
)
{
f_x
-=
f_a
;
f_x
+=
fabs
(
f_x
);
f_x
*=
0
.
5
;
f_x
+=
fabs
f
(
f_x
);
f_x
*=
0
.
5
f
;
f_x
+=
f_a
;
return
f_x
;
...
...
@@ -558,12 +558,12 @@ static float Max( float f_x, float f_a )
static
float
Clamp
(
float
f_x
,
float
f_a
,
float
f_b
)
{
const
float
f_x1
=
fabs
(
f_x
-
f_a
);
const
float
f_x2
=
fabs
(
f_x
-
f_b
);
const
float
f_x1
=
fabs
f
(
f_x
-
f_a
);
const
float
f_x2
=
fabs
f
(
f_x
-
f_b
);
f_x
=
f_x1
+
f_a
+
f_b
;
f_x
-=
f_x2
;
f_x
*=
0
.
5
;
f_x
*=
0
.
5
f
;
return
f_x
;
}
...
...
@@ -589,7 +589,7 @@ static float RmsEnvProcess( rms_env * p_r, const float f_x )
p_r
->
f_sum
+=
f_x
;
/* If the sum is small enough, make it zero */
if
(
p_r
->
f_sum
<
1.0e-6
)
if
(
p_r
->
f_sum
<
1.0e-6
f
)
{
p_r
->
f_sum
=
0
.
0
f
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment