summaryrefslogtreecommitdiff
path: root/libavfilter/af_join.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-03-28 08:51:36 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-11 20:42:41 +0200
commit7cdd737ba81b5c2c9521c4509edf0ac315fabc65 (patch)
treed8947361ed1e2ca37eeca1bd86836769a66fa82c /libavfilter/af_join.c
parent1ba95a9cca57b023b9b9de071a5671fc05b05e58 (diff)
lavfi: mark filters with dynamic number of inputs or outputs with special flags
This will be useful in avtools in the following commits. Any other caller might also want to know this information.
Diffstat (limited to 'libavfilter/af_join.c')
-rw-r--r--libavfilter/af_join.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c
index a06812ed32..02bc8c8f14 100644
--- a/libavfilter/af_join.c
+++ b/libavfilter/af_join.c
@@ -522,4 +522,6 @@ AVFilter avfilter_af_join = {
.inputs = NULL,
.outputs = avfilter_af_join_outputs,
+
+ .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
};