summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-10 19:33:36 +0100
committerwm4 <wm4@nowhere>2014-11-10 22:02:04 +0100
commit995a6af78734820007eb8a1ae3b543fd9d9636e1 (patch)
tree0bd5fd68819529fa468fa1db8d7a498366a2ad11
parent0b26d8c66639c1e12035448eb2feadcf067dc056 (diff)
downloadmpv-995a6af78734820007eb8a1ae3b543fd9d9636e1.tar.bz2
mpv-995a6af78734820007eb8a1ae3b543fd9d9636e1.tar.xz
af_format: remove redundant message prefixes
-rw-r--r--audio/filter/af_format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/filter/af_format.c b/audio/filter/af_format.c
index 9183259bd9..14b0d34d42 100644
--- a/audio/filter/af_format.c
+++ b/audio/filter/af_format.c
@@ -80,12 +80,12 @@ static int control(struct af_instance *af, int cmd, void *arg)
force_out_params(af, out);
if (in->nch != out->nch || in->bps != out->bps) {
- MP_ERR(af, "[af_format] Forced input/output formats are incompatible.\n");
+ MP_ERR(af, "Forced input/output formats are incompatible.\n");
return AF_ERROR;
}
if (priv->fail) {
- MP_ERR(af, "[af_format] Failing on purpose.\n");
+ MP_ERR(af, "Failing on purpose.\n");
return AF_ERROR;
}