diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-14 23:21:11 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-15 23:35:49 +0200 |
commit | 3453b0196fa46df21f4d42c9ed7b4412e0feb38d (patch) | |
tree | 16b2870ad4af27502038b90416769e58d9012442 /libavfilter/split.c | |
parent | de656ea91e53fd5866dfc41822facc37a0805140 (diff) | |
download | ffmpeg-3453b0196fa46df21f4d42c9ed7b4412e0feb38d.tar.gz |
lavfi/split: fix minor documentation issues
Use verbal form to describe "outputs" options, and mention it in the
manual.
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 7268ec107e..6a5207397a 100644 --- a/libavfilter/split.c +++ b/libavfilter/split.c @@ -93,7 +93,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) #define OFFSET(x) offsetof(SplitContext, x) #define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM static const AVOption options[] = { - { "outputs", "Number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS }, + { "outputs", "set number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS }, { NULL }, }; |