Commit 0c0fc889 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_anlmdn: log used parameters

parent 395e8a53
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment