diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-15 16:49:09 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-16 00:46:58 +0200 |
commit | e20530add7bcc82c86727bf68edb30956c8db470 (patch) | |
tree | 9fc41cd2717520ac55dfb3d55bf4b0b6ce3e3d4c /libavfilter/split.c | |
parent | a1411eec210d65a88ab9e00da7eeb402c47cb082 (diff) | |
download | ffmpeg-e20530add7bcc82c86727bf68edb30956c8db470.tar.gz |
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.c | 2 |
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, |