You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
fftools/ffmpeg_filter: reject filtergraphs with zero outputs
Nothing useful can be done with them currently.
This commit is contained in:
@@ -845,6 +845,12 @@ FilterGraph *fg_create(char *graph_desc)
|
||||
ofilter->name = describe_filter_link(fg, cur, 0);
|
||||
}
|
||||
|
||||
if (!fg->nb_outputs) {
|
||||
av_log(fg, AV_LOG_FATAL, "A filtergraph has zero outputs, this is not supported\n");
|
||||
ret = AVERROR(ENOSYS);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
fail:
|
||||
avfilter_inout_free(&inputs);
|
||||
avfilter_inout_free(&outputs);
|
||||
|
Reference in New Issue
Block a user