mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
vf_frei0r: prevent a segfault when filter parameters are not set
This commit is contained in:
parent
8accddeb58
commit
4e0be9c86f
@ -459,6 +459,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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user