mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_amix: Free inpads' names generically
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
414c1b9b62
commit
0e936381ff
|
@ -553,11 +553,9 @@ static av_cold int init(AVFilterContext *ctx)
|
||||||
if (!pad.name)
|
if (!pad.name)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
if ((ret = ff_append_inpad(ctx, &pad)) < 0) {
|
if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0)
|
||||||
av_freep(&pad.name);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
s->fdsp = avpriv_float_dsp_alloc(0);
|
s->fdsp = avpriv_float_dsp_alloc(0);
|
||||||
if (!s->fdsp)
|
if (!s->fdsp)
|
||||||
|
@ -589,9 +587,6 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||||
av_freep(&s->scale_norm);
|
av_freep(&s->scale_norm);
|
||||||
av_freep(&s->weights);
|
av_freep(&s->weights);
|
||||||
av_freep(&s->fdsp);
|
av_freep(&s->fdsp);
|
||||||
|
|
||||||
for (i = 0; i < ctx->nb_inputs; i++)
|
|
||||||
av_freep(&ctx->input_pads[i].name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int query_formats(AVFilterContext *ctx)
|
static int query_formats(AVFilterContext *ctx)
|
||||||
|
|
Loading…
Reference in New Issue