Commit 1e9a050b authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '16a645ad'

* commit '16a645ad':
  vf_pixdesctest: make config_props work properly when called multiple times.
  vf_hqdn3d: make config_props work properly when called multiple times.
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 71fcb607 16a645ad
...@@ -252,6 +252,8 @@ static int config_input(AVFilterLink *inlink) ...@@ -252,6 +252,8 @@ static int config_input(AVFilterLink *inlink)
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format); const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
int i; int i;
uninit(inlink->dst);
s->hsub = desc->log2_chroma_w; s->hsub = desc->log2_chroma_w;
s->vsub = desc->log2_chroma_h; s->vsub = desc->log2_chroma_h;
s->depth = desc->comp[0].depth_minus1+1; s->depth = desc->comp[0].depth_minus1+1;
......
...@@ -46,6 +46,7 @@ static int config_props(AVFilterLink *inlink) ...@@ -46,6 +46,7 @@ static int config_props(AVFilterLink *inlink)
priv->pix_desc = av_pix_fmt_desc_get(inlink->format); priv->pix_desc = av_pix_fmt_desc_get(inlink->format);
av_freep(&priv->line);
if (!(priv->line = av_malloc(sizeof(*priv->line) * inlink->w))) if (!(priv->line = av_malloc(sizeof(*priv->line) * inlink->w)))
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment