diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-01-11 11:14:35 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-01-11 11:14:35 +0100 |
commit | 0c0fc8896cdda530ec0989ee45a905d5d48db1a1 (patch) | |
tree | d71da48a1906e1aff027bfcf1fcf207358dfe14a /libavfilter/af_anlmdn.c | |
parent | 395e8a53fa0266f26581f3e9752b0dbc93998a90 (diff) | |
download | ffmpeg-0c0fc8896cdda530ec0989ee45a905d5d48db1a1.tar.gz |
avfilter/af_anlmdn: log used parameters
Diffstat (limited to 'libavfilter/af_anlmdn.c')
-rw-r--r-- | libavfilter/af_anlmdn.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |