summaryrefslogtreecommitdiff
path: root/libavfilter/split.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-15 16:49:09 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-16 00:46:58 +0200
commite20530add7bcc82c86727bf68edb30956c8db470 (patch)
tree9fc41cd2717520ac55dfb3d55bf4b0b6ce3e3d4c /libavfilter/split.c
parenta1411eec210d65a88ab9e00da7eeb402c47cb082 (diff)
lavfi/split: give a more accurate description to split
The filter now supports a configurable number of outputs.
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 899fe3ea7b..13669c1fd1 100644
--- a/libavfilter/split.c
+++ b/libavfilter/split.c
@@ -95,7 +95,7 @@ static void end_frame(AVFilterLink *inlink)
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 video to N outputs."),
.init = split_init,
.uninit = split_uninit,