mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
avfilter/vf_dctdnoiz: use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
eb055295bd
commit
6de2f027cd
1 changed files with 5 additions and 5 deletions
|
|
@ -732,14 +732,14 @@ static av_cold void uninit(AVFilterContext *ctx)
|
|||
int i;
|
||||
DCTdnoizContext *s = ctx->priv;
|
||||
|
||||
av_free(s->weights);
|
||||
av_freep(&s->weights);
|
||||
for (i = 0; i < 2; i++) {
|
||||
av_free(s->cbuf[i][0]);
|
||||
av_free(s->cbuf[i][1]);
|
||||
av_free(s->cbuf[i][2]);
|
||||
av_freep(&s->cbuf[i][0]);
|
||||
av_freep(&s->cbuf[i][1]);
|
||||
av_freep(&s->cbuf[i][2]);
|
||||
}
|
||||
for (i = 0; i < s->nb_threads; i++) {
|
||||
av_free(s->slices[i]);
|
||||
av_freep(&s->slices[i]);
|
||||
av_expr_free(s->expr[i]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue