vf_split: fix description

It now allows an arbitrary number of inputs, not just two.
This commit is contained in:
Anton Khirnov 2013-04-09 22:09:20 +02:00
parent e036bb7899
commit 1012155722
1 changed files with 1 additions and 1 deletions

View File

@ -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,