]> git.sesse.net Git - ffmpeg/commitdiff
vf_split: fix description
authorAnton Khirnov <anton@khirnov.net>
Tue, 9 Apr 2013 20:09:20 +0000 (22:09 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 30 Apr 2013 09:16:16 +0000 (11:16 +0200)
It now allows an arbitrary number of inputs, not just two.

libavfilter/split.c

index 8c03de5b171c2349b4014dda8538c1e61ce2b529..16d0bb3862c953eec3b3faf9a9995eabec67a6c0 100644 (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,