summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_drc.c
diff options
context:
space:
mode:
authorMarcin Kurczewski <mkurczew@gmail.com>2015-06-17 22:23:08 +0200
committerwm4 <wm4@nowhere>2015-06-18 19:36:58 +0200
commit797277a233eb779627a497ea98c756fa69ab5120 (patch)
tree99f5d859e4ffa0c462f14e65c055d045515b870b /audio/filter/af_drc.c
parent0f0e88cbaa6b0bd2a579cb74bb04e05c3103b964 (diff)
downloadmpv-797277a233eb779627a497ea98c756fa69ab5120.tar.bz2
mpv-797277a233eb779627a497ea98c756fa69ab5120.tar.xz
Various spelling fixes
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'audio/filter/af_drc.c')
-rw-r--r--audio/filter/af_drc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/filter/af_drc.c b/audio/filter/af_drc.c
index 4344766349..472758c4c7 100644
--- a/audio/filter/af_drc.c
+++ b/audio/filter/af_drc.c
@@ -131,7 +131,7 @@ static void method1_int16(af_drc_t *s, struct mp_audio *c)
data[i] = tmp;
}
- // Evaulation of newavg (not 100% accurate because of values clamping)
+ // Evaluation of newavg (not 100% accurate because of values clamping)
newavg = s->mul * curavg;
// Stores computed values for future smoothing
@@ -168,7 +168,7 @@ static void method1_float(af_drc_t *s, struct mp_audio *c)
for (i = 0; i < len; i++)
data[i] *= s->mul;
- // Evaulation of newavg (not 100% accurate because of values clamping)
+ // Evaluation of newavg (not 100% accurate because of values clamping)
newavg = s->mul * curavg;
// Stores computed values for future smoothing
@@ -216,7 +216,7 @@ static void method2_int16(af_drc_t *s, struct mp_audio *c)
data[i] = tmp;
}
- // Evaulation of newavg (not 100% accurate because of values clamping)
+ // Evaluation of newavg (not 100% accurate because of values clamping)
newavg = s->mul * curavg;
// Stores computed values for future smoothing
@@ -262,7 +262,7 @@ static void method2_float(af_drc_t *s, struct mp_audio *c)
for (i = 0; i < len; i++)
data[i] *= s->mul;
- // Evaulation of newavg (not 100% accurate because of values clamping)
+ // Evaluation of newavg (not 100% accurate because of values clamping)
newavg = s->mul * curavg;
// Stores computed values for future smoothing