Browse Source

avfilter/vf_pad: Fix segfault if reconfiguration fails

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3
Michael Niedermayer 8 years ago
parent
commit
3d8a8fd27e
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      libavfilter/vf_pad.c

+ 8
- 4
libavfilter/vf_pad.c View File

@@ -210,12 +210,16 @@ static int config_output(AVFilterLink *outlink)
static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
{
PadContext *s = inlink->dst->priv;

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));
AVFrame *frame;
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)
return NULL;



Loading…
Cancel
Save