summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-25 21:21:29 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:03:56 +0200
commita39c154049a2d0c4fb02a5c74f58d6986ec21cec (patch)
treebb07b51fc2b6a7681c73a4bd5f781f38e975161c /doc
parentb9dfee9fa259dfc885508179a359dccc9e7840bd (diff)
vf_fieldorder: switch to an AVOptions-based system.
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi14
1 files changed, 6 insertions, 8 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 0cbbe6b6f3..69496213d7 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1037,15 +1037,13 @@ fade=type=in:start_frame=5:nb_frames=20
Transform the field order of the input video.
-It accepts one parameter which specifies the required field order that
-the input interlaced video will be transformed to. The parameter can
-assume one of the following values:
+This filter accepts the following options:
@table @option
-@item 0 or bff
-output bottom field first
-@item 1 or tff
-output top field first
+
+@item order
+Output field order. Valid values are @var{tff} for top field first or @var{bff}
+for bottom field first.
@end table
Default value is "tff".
@@ -1063,7 +1061,7 @@ which is bottom field first.
For example:
@example
-./avconv -i in.vob -vf "fieldorder=bff" out.dv
+./avconv -i in.vob -vf "fieldorder=order=bff" out.dv
@end example
@section fifo