diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-04 00:25:35 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-21 08:59:58 +0200 |
commit | 4703a7b50b098a53ec2f806bd41a00fd87ea9d8c (patch) | |
tree | a182b83c31313f4a401ed3e86719388bda4396dc /doc | |
parent | 5feb67f8a1a17a4dd3cec0aa80ef0dc543fc7673 (diff) | |
download | ffmpeg-4703a7b50b098a53ec2f806bd41a00fd87ea9d8c.tar.gz |
vf_yadif: correct documentation on the parity parameter
0 is top-field-first, 1 is bottom-field-first, not the other way
around.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index f0a43813b6..2967db14d2 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1527,9 +1527,9 @@ interlaced video, accepts one of the following values: @table @option @item 0 -assume bottom field first -@item 1 assume top field first +@item 1 +assume bottom field first @item -1 enable automatic detection @end table |