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_lavcac3enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/filter/af_lavcac3enc.c') diff --git a/audio/filter/af_lavcac3enc.c b/audio/filter/af_lavcac3enc.c index 6df3820e75..34de6adb74 100644 --- a/audio/filter/af_lavcac3enc.c +++ b/audio/filter/af_lavcac3enc.c @@ -187,7 +187,7 @@ static int filter(struct af_instance* af, struct mp_audio* audio, int flags) AVFrame *frame = avcodec_alloc_frame(); if (!frame) { - MP_FATAL(af, "[libaf] Could not allocate memory \n"); + MP_FATAL(af, "Could not allocate memory \n"); return -1; } frame->nb_samples = s->in_samples; @@ -201,7 +201,7 @@ static int filter(struct af_instance* af, struct mp_audio* audio, int flags) int ok; ret = avcodec_encode_audio2(s->lavc_actx, &s->pkt, frame, &ok); if (ret < 0 || !ok) { - MP_FATAL(af, "[lavac3enc] Encode failed.\n"); + MP_FATAL(af, "Encode failed.\n"); return -1; } -- cgit v1.2.3