diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:50:56 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:53:53 +0200 |
commit | 77add967a5e5dae8f322578580c440cb990624ab (patch) | |
tree | 3094278fb083366f9b62a88eb9c998cf48513c61 /doc/filters.texi | |
parent | 73c1a00e73fbfcf27ce6fb474e3080ac0b1b445b (diff) | |
download | ffmpeg-77add967a5e5dae8f322578580c440cb990624ab.tar.gz |
lavfi/setfield: switch to an AVOptions-based system.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 94518d1514..af4bccbe5e 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -5057,9 +5057,12 @@ output frames. It does not change the input frame, but only sets the corresponding property, which affects how the frame is treated by following filters (e.g. @code{fieldorder} or @code{yadif}). -This filter accepts a single option @option{mode}, which can be -specified either by setting @code{mode=VALUE} or setting the value -alone. Available values are: +The filter accepts the following options: + +@table @option + +@item mode +Available values are: @table @samp @item auto @@ -5074,6 +5077,7 @@ Mark the frame as top-field-first. @item prog Mark the frame as progressive. @end table +@end table @section showinfo |