summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_sinesuppress.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-01-24 21:30:15 +0100
committerwm4 <wm4@nowhere>2014-01-24 21:30:15 +0100
commit39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd (patch)
tree006930f584e55ca721e587199b359c9be548ac04 /audio/filter/af_sinesuppress.c
parentf46e188ec5952693c08d0572558a13f9a92504f8 (diff)
downloadmpv-39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd.tar.bz2
mpv-39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd.tar.xz
audio/filter: remove redundant log message prefixes
These are now appended automatically, so you'd get them twice before this commit.
Diffstat (limited to 'audio/filter/af_sinesuppress.c')
-rw-r--r--audio/filter/af_sinesuppress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/filter/af_sinesuppress.c b/audio/filter/af_sinesuppress.c
index 37952ab0be..9719d46828 100644
--- a/audio/filter/af_sinesuppress.c
+++ b/audio/filter/af_sinesuppress.c
@@ -99,7 +99,7 @@ static int play_s16(struct af_instance* af, struct mp_audio* data, int f)
s->pos += 2 * M_PI * s->freq / data->rate;
}
- MP_VERBOSE(af, "[sinesuppress] f:%8.2f: amp:%8.2f\n", s->freq, sqrt(s->real*s->real + s->imag*s->imag) / s->ref);
+ MP_VERBOSE(af, "f:%8.2f: amp:%8.2f\n", s->freq, sqrt(s->real*s->real + s->imag*s->imag) / s->ref);
return 0;
}