From 39b40e1ffb1e3fcf81ec4a4afe88c974adb2efcd Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 24 Jan 2014 21:30:15 +0100 Subject: audio/filter: remove redundant log message prefixes These are now appended automatically, so you'd get them twice before this commit. --- audio/filter/af_lavrresample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/filter/af_lavrresample.c') diff --git a/audio/filter/af_lavrresample.c b/audio/filter/af_lavrresample.c index 4bd95459c0..f6537f1db0 100644 --- a/audio/filter/af_lavrresample.c +++ b/audio/filter/af_lavrresample.c @@ -221,7 +221,7 @@ static int configure_lavrr(struct af_instance *af, struct mp_audio *in, if (avresample_open(s->avrctx) < 0 || avresample_open(s->avrctx_out) < 0) { - MP_ERR(af, "[lavrresample] Cannot open " + MP_ERR(af, "Cannot open " "Libavresample Context. \n"); return AF_ERROR; } @@ -397,7 +397,7 @@ static int af_open(struct af_instance *af) if (s->avrctx && s->avrctx_out) { return AF_OK; } else { - MP_ERR(af, "[lavrresample] Cannot initialize " + MP_ERR(af, "Cannot initialize " "Libavresample Context. \n"); uninit(af); return AF_ERROR; -- cgit v1.2.3