avfilter/af_anlmdn: log used parameters

This commit is contained in:
Paul B Mahol 2019-01-11 11:14:35 +01:00
parent 395e8a53fa
commit 0c0fc8896c
1 changed files with 2 additions and 0 deletions

View 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);