[FFmpeg-cvslog] vf_yadif: correct documentation on the parity parameter

Stefano Sabatini git at videolan.org
Wed Sep 21 21:34:03 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Thu Aug  4 00:25:35 2011 +0200| [4703a7b50b098a53ec2f806bd41a00fd87ea9d8c] | committer: Anton Khirnov

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 at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4703a7b50b098a53ec2f806bd41a00fd87ea9d8c
---

 doc/filters.texi       |    4 ++--
 libavfilter/vf_yadif.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index f0a4381..2967db1 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
- at item 1
 assume top field first
+ at item 1
+assume bottom field first
 @item -1
 enable automatic detection
 @end table
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index 2ba1739..7a5b98e 100644
--- a/libavfilter/vf_yadif.c
+++ b/libavfilter/vf_yadif.c
@@ -38,8 +38,8 @@ typedef struct {
     int mode;
 
     /**
-     *  0: bottom field first
-     *  1: top field first
+     *  0: top field first
+     *  1: bottom field first
      * -1: auto-detection
      */
     int parity;



More information about the ffmpeg-cvslog mailing list