From 797277a233eb779627a497ea98c756fa69ab5120 Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Wed, 17 Jun 2015 22:23:08 +0200 Subject: Various spelling fixes Signed-off-by: wm4 --- audio/filter/af_drc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'audio/filter/af_drc.c') 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 -- cgit v1.2.3