mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_zoompan: Free out frame on error
Fixes: CID1398578 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c217027c11
commit
5036e214b0
@ -191,7 +191,7 @@ static int output_single_frame(AVFilterContext *ctx, AVFrame *in, double *var_va
|
||||
s->sws = sws_alloc_context();
|
||||
if (!s->sws) {
|
||||
ret = AVERROR(ENOMEM);
|
||||
return ret;
|
||||
goto error;
|
||||
}
|
||||
|
||||
for (k = 0; in->data[k]; k++)
|
||||
@ -206,7 +206,7 @@ static int output_single_frame(AVFilterContext *ctx, AVFrame *in, double *var_va
|
||||
av_opt_set_int(s->sws, "sws_flags", SWS_BICUBIC, 0);
|
||||
|
||||
if ((ret = sws_init_context(s->sws, NULL, NULL)) < 0)
|
||||
return ret;
|
||||
goto error;
|
||||
|
||||
sws_scale(s->sws, (const uint8_t *const *)&input, in->linesize, 0, h, out->data, out->linesize);
|
||||
|
||||
@ -218,6 +218,9 @@ static int output_single_frame(AVFilterContext *ctx, AVFrame *in, double *var_va
|
||||
s->sws = NULL;
|
||||
s->current_frame++;
|
||||
return ret;
|
||||
error:
|
||||
av_frame_free(&out);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
|
Loading…
Reference in New Issue
Block a user