summaryrefslogtreecommitdiffstats
path: root/audio/filter/af_lavcac3enc.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_lavcac3enc.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_lavcac3enc.c')
-rw-r--r--audio/filter/af_lavcac3enc.c4
1 files changed, 2 insertions, 2 deletions
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;
}