diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 10:38:05 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 10:48:58 +0200 |
commit | b89ce54e740500715803c2731bf0008f6fd4bfa8 (patch) | |
tree | 01b6b341d19411922c3a87ecfeda7c5d07b9d56f /doc/filters.texi | |
parent | c7b0a84e1fe1ba4415d5d578ddb9532d379201cf (diff) | |
download | ffmpeg-b89ce54e740500715803c2731bf0008f6fd4bfa8.tar.gz |
lavfi: restore mixed short/long option support with the new system.
process_unnamed_options() is renamed to process_options() and its code
is heavily based on av_opt_set_from_string().
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index ffdc0db570..7fd1481161 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -137,7 +137,7 @@ The name of the filter class is optionally followed by a string "=@var{arguments}". @var{arguments} is a string which contains the parameters used to -initialize the filter instance. It may have one of the two allowed forms: +initialize the filter instance. It may have one of the following forms: @itemize @item @@ -151,6 +151,12 @@ declares three options in this order -- @option{type}, @option{start_frame} and @var{in} is assigned to the option @option{type}, @var{0} to @option{start_frame} and @var{30} to @option{nb_frames}. +@item +A ':'-separated list of mixed direct @var{value} and long @var{key=value} +pairs. The direct @var{value} must precede the @var{key=value} pairs, and +follow the same constraints order of the previous point. The following +@var{key=value} pairs can be set in any preferred order. + @end itemize If the option value itself is a list of items (e.g. the @code{format} filter |