[FFmpeg-cvslog] avfilter/af_anlmdn: log used parameters

Paul B Mahol git at videolan.org
Fri Jan 11 12:56:19 EET 2019


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Jan 11 11:14:35 2019 +0100| [0c0fc8896cdda530ec0989ee45a905d5d48db1a1] | committer: Paul B Mahol

avfilter/af_anlmdn: log used parameters

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c0fc8896cdda530ec0989ee45a905d5d48db1a1
---

 libavfilter/af_anlmdn.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/af_anlmdn.c b/libavfilter/af_anlmdn.c
index 6d9e89f44c..cc7765702b 100644
--- a/libavfilter/af_anlmdn.c
+++ b/libavfilter/af_anlmdn.c
@@ -143,6 +143,8 @@ static int config_output(AVFilterLink *outlink)
     s->H = s->K * 2 + 1;
     s->N = s->H + (s->K + s->S) * 2;
 
+    av_log(ctx, AV_LOG_DEBUG, "K:%d S:%d H:%d N:%d\n", s->K, s->S, s->H, s->N);
+
     av_frame_free(&s->in);
     av_frame_free(&s->cache);
     s->in = ff_get_audio_buffer(outlink, s->N);



More information about the ffmpeg-cvslog mailing list