Commit 35e63f35 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '416847d1' into release/2.2

* commit '416847d1':
  vf_frei0r: prevent a segfault when filter parameters are not set
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 3bfb7a25 416847d1
......@@ -479,6 +479,10 @@ static int source_config_props(AVFilterLink *outlink)
av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance\n");
return AVERROR(EINVAL);
}
if (!s->params) {
av_log(ctx, AV_LOG_ERROR, "frei0r filter parameters not set.\n");
return AVERROR(EINVAL);
}
return set_params(ctx, s->params);
}
......
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