]> git.sesse.net Git - ffmpeg/commitdiff
vf_yadif: correct documentation on the parity parameter
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 3 Aug 2011 22:25:35 +0000 (00:25 +0200)
committerAnton Khirnov <anton@khirnov.net>
Wed, 21 Sep 2011 06:59:58 +0000 (08:59 +0200)
0 is top-field-first, 1 is bottom-field-first, not the other way
around.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
doc/filters.texi
libavfilter/vf_yadif.c

index f0a43813b6ec49df3dc5dc0a8449babca5f0e481..2967db14d21e114747361f872cc6f6796518c03a 100644 (file)
@@ -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
index 2ba173970cb2e99a4e5837ce3c5a35540a6478cc..7a5b98e483e59eae30755a77cc23a4c58c62f388 100644 (file)
@@ -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;