This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_convolve: reset fft/ifft pointers after free
tags/n4.3
Paul B Mahol
6 years ago
parent
ad65a15328
commit
7e08a92370
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
libavfilter/vf_convolve.c
+ 2
- 0
libavfilter/vf_convolve.c
View File
@@ -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;
}
}
Write
Preview
Loading…
Cancel
Save