Module: libav
Branch: release/0.7
Commit: 5c9ca599a70c0babdc4af301753e7067888611d6

Author:    Stefano Sabatini <[email protected]>
Committer: Reinhard Tartler <[email protected]>
Date:      Thu Aug  4 00:25:35 2011 +0200

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 <[email protected]>
(cherry picked from commit 4703a7b50b098a53ec2f806bd41a00fd87ea9d8c)

Signed-off-by: Anton Khirnov <[email protected]>
Signed-off-by: Reinhard Tartler <[email protected]>

---

 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 9666f58..c1cf008 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1353,9 +1353,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
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index c7fc439..e9f9bb6 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;

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to