forked from FFmpeg/FFmpeg
avfilter/vf_convolve: reset fft/ifft pointers after free
This commit is contained in:
parent
ad65a15328
commit
7e08a92370
1 changed files with 2 additions and 0 deletions
|
@ -590,7 +590,9 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||
|
||||
for (j = 0; j < MAX_THREADS; j++) {
|
||||
av_fft_end(s->fft[i][j]);
|
||||
s->fft[i][j] = NULL;
|
||||
av_fft_end(s->ifft[i][j]);
|
||||
s->ifft[i][j] = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue