]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/af_anlmdn: log used parameters
authorPaul B Mahol <onemda@gmail.com>
Fri, 11 Jan 2019 10:14:35 +0000 (11:14 +0100)
committerPaul B Mahol <onemda@gmail.com>
Fri, 11 Jan 2019 10:14:35 +0000 (11:14 +0100)
libavfilter/af_anlmdn.c

index 6d9e89f44c015b6a22b13c093ca19e2e9c1d8c1a..cc7765702ba8abaea701262e37aa513904fd76fa 100644 (file)
@@ -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);