avfilter/af_anlmdn: log used parameters

pull/306/head
Paul B Mahol 6 years ago
parent 395e8a53fa
commit 0c0fc8896c
  1. 2
      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);

Loading…
Cancel
Save