Commit 67162554 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_afftfilt: fix memory leaks

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent e2bbb95d
......@@ -371,6 +371,9 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->real);
av_freep(&s->imag);
av_frame_free(&s->buffer);
av_freep(&s->window_func_lut);
av_audio_fifo_free(s->fifo);
}
static const AVFilterPad inputs[] = {
......
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