summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_bs2b.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_bs2b.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_bs2b.c')
-rw-r--r--audio/filter/af_bs2b.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/filter/af_bs2b.c b/audio/filter/af_bs2b.c
index 1ea31b260a..08d037bf4e 100644
--- a/audio/filter/af_bs2b.c
+++ b/audio/filter/af_bs2b.c
@@ -142,12 +142,12 @@ static int control(struct af_instance *af, int cmd, void *arg)
// bs2b have srate limits, try to resample if needed
if (af->data->rate > BS2B_MAXSRATE || af->data->rate < BS2B_MINSRATE) {
af->data->rate = BS2B_DEFAULT_SRATE;
- MP_WARN(af, "[bs2b] Requested sample rate %d Hz is out of bounds [%d..%d] Hz.\n"
- "[bs2b] Trying to resample to %d Hz.\n",
+ MP_WARN(af, "Requested sample rate %d Hz is out of bounds [%d..%d] Hz.\n"
+ "Trying to resample to %d Hz.\n",
af->data->rate, BS2B_MINSRATE, BS2B_MAXSRATE, BS2B_DEFAULT_SRATE);
}
bs2b_set_srate(s->filter, (long)af->data->rate);
- MP_VERBOSE(af, "[bs2b] using format %s\n",
+ MP_VERBOSE(af, "using format %s\n",
af_fmt_to_str(af->data->format));
return af_test_output(af,(struct mp_audio*)arg);