summaryrefslogtreecommitdiff
path: root/libavfilter/split.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-04-09 22:09:20 +0200
committerAnton Khirnov <anton@khirnov.net>2013-04-30 11:16:16 +0200
commit1012155722fc6ad1c232deaf99192d54bce6a106 (patch)
tree79c2d5ac189c7cbb3b98aadb1a1deb3809867d6e /libavfilter/split.c
parente036bb7899d0faca9159206be9bf5552e76e7633 (diff)
vf_split: fix description
It now allows an arbitrary number of inputs, not just two.
Diffstat (limited to 'libavfilter/split.c')
-rw-r--r--libavfilter/split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/split.c b/libavfilter/split.c
index 8c03de5b17..16d0bb3862 100644
--- a/libavfilter/split.c
+++ b/libavfilter/split.c
@@ -119,7 +119,7 @@ static const AVFilterPad avfilter_vf_split_inputs[] = {
AVFilter avfilter_vf_split = {
.name = "split",
- .description = NULL_IF_CONFIG_SMALL("Pass on the input to two outputs."),
+ .description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
.priv_size = sizeof(SplitContext),
.priv_class = &split_class,