diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-10 19:02:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-10 19:03:30 +0200 |
commit | b8a1f8b4e28b4ff85aae8fdedf586d60f0514118 (patch) | |
tree | 89fc3770280b24c4da5575b28716e8402e0a4bcc /doc/filters.texi | |
parent | 0c3d706bdb2276d39cb4e07784ce58664dbc5485 (diff) | |
parent | a39c154049a2d0c4fb02a5c74f58d6986ec21cec (diff) | |
download | ffmpeg-b8a1f8b4e28b4ff85aae8fdedf586d60f0514118.tar.gz |
Merge commit 'a39c154049a2d0c4fb02a5c74f58d6986ec21cec'
* commit 'a39c154049a2d0c4fb02a5c74f58d6986ec21cec':
vf_fieldorder: switch to an AVOptions-based system.
Conflicts:
doc/filters.texi
libavfilter/vf_fieldorder.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 4d85f6400f..0e4bf445e7 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -3128,16 +3128,13 @@ field=type=bottom Transform the field order of the input video. -This filter accepts the named option @option{order} which -specifies the required field order that the input interlaced video -will be transformed to. The option name can be omitted. +This filter accepts the following options: -The option @option{order} can assume one of the following values: -@table @samp -@item bff -output bottom field first -@item tff -output top field first +@table @option + +@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 @samp{tff}. |