From e20530add7bcc82c86727bf68edb30956c8db470 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 15 Jun 2012 16:49:09 +0200 Subject: [PATCH] lavfi/split: give a more accurate description to split The filter now supports a configurable number of outputs. --- libavfilter/split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,