mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
avfilter/af_sofalizer: reset FFT pointers back to NULL
This commit is contained in:
parent
0c3481b43a
commit
d360a79c0a
@ -858,6 +858,10 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||||||
av_fft_end(s->ifft[1]);
|
av_fft_end(s->ifft[1]);
|
||||||
av_fft_end(s->fft[0]);
|
av_fft_end(s->fft[0]);
|
||||||
av_fft_end(s->fft[1]);
|
av_fft_end(s->fft[1]);
|
||||||
|
s->ifft[0] = NULL;
|
||||||
|
s->ifft[1] = NULL;
|
||||||
|
s->fft[0] = NULL;
|
||||||
|
s->fft[1] = NULL;
|
||||||
av_freep(&s->delay[0]);
|
av_freep(&s->delay[0]);
|
||||||
av_freep(&s->delay[1]);
|
av_freep(&s->delay[1]);
|
||||||
av_freep(&s->data_ir[0]);
|
av_freep(&s->data_ir[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user