Browse Source

avfilter/vf_convolve: reset fft/ifft pointers after free

tags/n4.3
Paul B Mahol 6 years ago
parent
commit
7e08a92370
1 changed files with 2 additions and 0 deletions
  1. +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;
}
}



Loading…
Cancel
Save