From: Anton Khirnov Date: Tue, 9 Apr 2013 20:09:20 +0000 (+0200) Subject: vf_split: fix description X-Git-Tag: v10_alpha1~1698 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1012155722fc6ad1c232deaf99192d54bce6a106;p=platform%2Fupstream%2Flibav.git vf_split: fix description It now allows an arbitrary number of inputs, not just two. --- diff --git a/libavfilter/split.c b/libavfilter/split.c index 8c03de5..16d0bb3 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,