summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-04-02 12:23:05 +0200
committerAnton Khirnov <anton@khirnov.net>2024-04-09 10:34:18 +0200
commit114cbaa316d7d71d942229cd665e76a0a5e3c24b (patch)
treec73ffe439cad260e946434f67dd9afcd229fc427
parentda80e0b077552d1fbd591805705e47931427ea8f (diff)
fftools/ffmpeg_filter: drop a redundant check
fg_finalise_bindings() already checks that all filtergraph outputs are connected.
-rw-r--r--fftools/ffmpeg_filter.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index ceab58da19..41d96267bc 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -1472,11 +1472,6 @@ fail:
static int configure_output_filter(FilterGraph *fg, AVFilterGraph *graph,
OutputFilter *ofilter, AVFilterInOut *out)
{
- if (!ofilter->ost) {
- av_log(fg, AV_LOG_FATAL, "Filter %s has an unconnected output\n", ofilter->name);
- return AVERROR(EINVAL);
- }
-
switch (avfilter_pad_get_type(out->filter_ctx->output_pads, out->pad_idx)) {
case AVMEDIA_TYPE_VIDEO: return configure_output_video_filter(fg, graph, ofilter, out);
case AVMEDIA_TYPE_AUDIO: return configure_output_audio_filter(fg, graph, ofilter, out);