diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-04-04 11:35:26 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-04-09 10:34:18 +0200 |
commit | d74cbcb9635f1c94f990dae4988a060ec6494f34 (patch) | |
tree | 316a7f36b61a6dbfe98c869d103583b853613844 /fftools/ffmpeg_mux_init.c | |
parent | f2c919252da460f89f7281c769d3005e35d95b85 (diff) | |
download | ffmpeg-d74cbcb9635f1c94f990dae4988a060ec6494f34.tar.gz |
fftools/ffmpeg_filter: drop OutputFilter.ost
All remaining code accessing it only needs to know whether this
filtergraph output has been bound or not.
Diffstat (limited to 'fftools/ffmpeg_mux_init.c')
-rw-r--r-- | fftools/ffmpeg_mux_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg_mux_init.c b/fftools/ffmpeg_mux_init.c index 10421ae1b0..6d8bd5bcdf 100644 --- a/fftools/ffmpeg_mux_init.c +++ b/fftools/ffmpeg_mux_init.c @@ -1827,7 +1827,7 @@ static int create_streams(Muxer *mux, const OptionsContext *o) for (int j = 0; j < fg->nb_outputs; j++) { OutputFilter *ofilter = fg->outputs[j]; - if (ofilter->linklabel || ofilter->ost) + if (ofilter->linklabel || ofilter->bound) continue; auto_disable |= 1 << ofilter->type; |