mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_pad: Fix segfault if reconfiguration fails
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
28307ef7e6
commit
3d8a8fd27e
|
@ -210,12 +210,16 @@ static int config_output(AVFilterLink *outlink)
|
||||||
static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
|
static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
|
||||||
{
|
{
|
||||||
PadContext *s = inlink->dst->priv;
|
PadContext *s = inlink->dst->priv;
|
||||||
|
AVFrame *frame;
|
||||||
AVFrame *frame = ff_get_video_buffer(inlink->dst->outputs[0],
|
|
||||||
w + (s->w - s->in_w),
|
|
||||||
h + (s->h - s->in_h) + (s->x > 0));
|
|
||||||
int plane;
|
int plane;
|
||||||
|
|
||||||
|
if (s->inlink_w <= 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
frame = ff_get_video_buffer(inlink->dst->outputs[0],
|
||||||
|
w + (s->w - s->in_w),
|
||||||
|
h + (s->h - s->in_h) + (s->x > 0));
|
||||||
|
|
||||||
if (!frame)
|
if (!frame)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue