mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
Merge commit 'ac84c1ce24a285f9cf16d4297bce73b1c4a6e435'
* commit 'ac84c1ce24a285f9cf16d4297bce73b1c4a6e435': avfilter: check filter link validity Conflicts: libavfilter/avfilter.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
1945db1f13
@ -227,6 +227,11 @@ int avfilter_config_links(AVFilterContext *filter)
|
|||||||
AVFilterLink *inlink;
|
AVFilterLink *inlink;
|
||||||
|
|
||||||
if (!link) continue;
|
if (!link) continue;
|
||||||
|
if (!link->src || !link->dst) {
|
||||||
|
av_log(filter, AV_LOG_ERROR,
|
||||||
|
"Not all input and output are properly linked (%d).\n", i);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
|
}
|
||||||
|
|
||||||
inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
|
inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
|
||||||
link->current_pts = AV_NOPTS_VALUE;
|
link->current_pts = AV_NOPTS_VALUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user