diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 14:30:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 14:30:34 +0200 |
commit | 16fc24b240cafc37cd1ea402e9ab2b4cd5ba6269 (patch) | |
tree | 52a05d82a06726683e0c993f78d9774ec1d3a83a /libavfilter/split.c | |
parent | 46de9ba5981531dcbfe05943448bebc5569fb3df (diff) | |
parent | 7cdd737ba81b5c2c9521c4509edf0ac315fabc65 (diff) | |
download | ffmpeg-16fc24b240cafc37cd1ea402e9ab2b4cd5ba6269.tar.gz |
Merge commit '7cdd737ba81b5c2c9521c4509edf0ac315fabc65'
* commit '7cdd737ba81b5c2c9521c4509edf0ac315fabc65':
lavfi: mark filters with dynamic number of inputs or outputs with special flags
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/split.c')
-rw-r--r-- | libavfilter/split.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/split.c b/libavfilter/split.c index 39d2da41b5..7268ec107e 100644 --- a/libavfilter/split.c +++ b/libavfilter/split.c @@ -133,6 +133,8 @@ AVFilter avfilter_vf_split = { .inputs = avfilter_vf_split_inputs, .outputs = NULL, + + .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS, }; static const AVFilterPad avfilter_af_asplit_inputs[] = { @@ -157,4 +159,6 @@ AVFilter avfilter_af_asplit = { .inputs = avfilter_af_asplit_inputs, .outputs = NULL, + + .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS, }; |