1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avfilter/vf_xpsnr: Fix leaks

This filter uses the AVBuffer API to allocate buffers that are never
shared at all and frees them via av_freep() (actually, it passes
pointers to AVBufferRefs to av_freep, so that only the AVBuffer
structures are freed at all (because AVBufferRef has a AVBuffer* as its
first member), not the AVBufferRef and not the underlying buffers;
and due to a wrong check the AVBuffers corresponding
to buf_org[c] with c>0 were never freed at all). This is a violation
of the AVBuffer API and causes a memleak. Fix this by avoiding the
AVBuffer API altogether.
(The FATE tests don't catch this, because they use piping to awk,
so that the error code from ffmpeg is ignored.)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-01-09 16:50:39 +01:00
parent 7ab7d9c3c0
commit 7822beed85

View File

@ -60,10 +60,10 @@ typedef struct XPSNRContext {
/* XPSNR specific variables */
double *sse_luma;
double *weights;
AVBufferRef *buf_org [3];
AVBufferRef *buf_org_m1[3];
AVBufferRef *buf_org_m2[3];
AVBufferRef *buf_rec [3];
int16_t *buf_org [3];
int16_t *buf_org_m1[3];
int16_t *buf_org_m2[3];
int16_t *buf_rec [3];
uint64_t max_error_64;
double sum_wdist [3];
double sum_xpsnr [3];
@ -432,12 +432,12 @@ static int do_xpsnr(FFFrameSync *fs)
const int stride_org_bpp = (s->bpp == 1 ? s->plane_width[c] : s->line_sizes[c] / s->bpp);
if (!s->buf_org_m1[c])
s->buf_org_m1[c] = av_buffer_allocz(stride_org_bpp * s->plane_height[c] * sizeof(int16_t));
s->buf_org_m1[c] = av_calloc(s->plane_height[c], stride_org_bpp * sizeof(int16_t));
if (!s->buf_org_m2[c])
s->buf_org_m2[c] = av_buffer_allocz(stride_org_bpp * s->plane_height[c] * sizeof(int16_t));
s->buf_org_m2[c] = av_calloc(s->plane_height[c], stride_org_bpp * sizeof(int16_t));
porg_m1[c] = (int16_t *) s->buf_org_m1[c]->data;
porg_m2[c] = (int16_t *) s->buf_org_m2[c]->data;
porg_m1[c] = s->buf_org_m1[c];
porg_m2[c] = s->buf_org_m2[c];
}
}
@ -448,12 +448,12 @@ static int do_xpsnr(FFFrameSync *fs)
const int o = s->plane_width[c]; /* XPSNR stride */
if (!s->buf_org[c])
s->buf_org[c] = av_buffer_allocz(s->plane_width[c] * s->plane_height[c] * sizeof(int16_t));
s->buf_org[c] = av_calloc(s->plane_width[c], s->plane_height[c] * sizeof(int16_t));
if (!s->buf_rec[c])
s->buf_rec[c] = av_buffer_allocz(s->plane_width[c] * s->plane_height[c] * sizeof(int16_t));
s->buf_rec[c] = av_calloc(s->plane_width[c], s->plane_height[c] * sizeof(int16_t));
porg[c] = (int16_t *) s->buf_org[c]->data;
prec[c] = (int16_t *) s->buf_rec[c]->data;
porg[c] = s->buf_org[c];
prec[c] = s->buf_rec[c];
for (int y = 0; y < s->plane_height[c]; y++) {
for (int x = 0; x < s->plane_width[c]; x++) {
@ -692,19 +692,11 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->sse_luma);
av_freep(&s->weights );
for (c = 0; c < s->num_comps; c++) { /* free extra temporal org buf memory */
if(s->buf_org_m1[c])
av_freep(s->buf_org_m1[c]);
if(s->buf_org_m2[c])
av_freep(s->buf_org_m2[c]);
}
if (s->bpp == 1) { /* 8 bit */
for (c = 0; c < s->num_comps; c++) { /* and org/rec picture buf memory */
if(s->buf_org_m2[c])
av_freep(s->buf_org[c]);
if(s->buf_rec[c])
av_freep(s->buf_rec[c]);
}
for (c = 0; c < s->num_comps; c++) {
av_freep(&s->buf_org_m1[c]);
av_freep(&s->buf_org_m2[c]);
av_freep(&s->buf_org[c]);
av_freep(&s->buf_rec[c]);
}
}