summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/filters.texi4
-rw-r--r--libavfilter/vf_yadif.c4
2 files changed, 4 insertions, 4 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
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index 2ba173970c..7a5b98e483 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;